Jump to content

Understanding _Singleton and others


Go to solution Solved by Melba23,

Recommended Posts

Posted

I'm still a noob and now I am going to ask some more nooby questions :

1.Kindly explain the _Singleton, the help file isn't enough detailed(for me)

2.How can I make a script which will create a directory at a place(suppose desktop) in it's first run and everytime it is run it'll check if the directory exists and if it doesn't then it'll create the directory again.

3.How to open a folder using autoit?

  • Moderators
  • Solution
Posted (edited)

SirDarknight1200,

- 1. _Singleton effectively creates a flag within Windows each time the exe containing it is run. If you try to run the exe again, Windows notices that the flag is the same and refuses to run it.

- 2. Something along these lines (not tested):

; Define the folder
$sPath = Your+Folder+Path
; See if it exists
If Not FileExists($sPath) Then ; This function works on folders as well
    ; Create it if not
   DirCreate($sPath)
EndIf
; And you have your folder either already existing or newly created
- 3. To choose a folder, use FileSelectFolder[/]i; to display the contents use ShellExecute("Your_Folder_Path").

All clear? :)

M23

Edited by Melba23
Typo

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

  Reveal hidden contents

 

Posted

Is it even necessary to check for folder existence before creation? If the folder already exists, then the function will fail; just don't test the error return!

  Reveal hidden contents

This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.
Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe here
RegExp tutorial: enough to get started
PCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta.

SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.
SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.
An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.
SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)
A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!
SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)

Posted
  On 11/23/2013 at 1:49 PM, SirDarknight1200 said:

Another question :

1.If I put any bg image in my gui and put some controls in there, they won't work, how can i make them work?

 

Better you post your code and tell what is not running?

  • Moderators
Posted

SirDarknight1200,

Do you ever read the Help file or search the forum before posting? :huh:

If not then please start doing so in future. ;)

M23

P.S. You need to disable the pic control. ;)

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

  Reveal hidden contents

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...