SirDarknight1200 Posted November 23, 2013 Posted November 23, 2013 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?
michaelslamet Posted November 23, 2013 Posted November 23, 2013 Hi, SirDarknight. 1. We use _Singleton to check if a script already (still) running. We might want to use this to prevent our script run more than one instance at a time. 2. If NOT FileExists(@DesktopDir & "\my_folder\") Then DirCreate (@DesktopDir & "\my_folder\") Endif 3. ShellExecute (@DesktopDir & "my_folder")
Moderators Solution Melba23 Posted November 23, 2013 Moderators Solution Posted November 23, 2013 (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 November 23, 2013 by Melba23 Typo 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: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
SirDarknight1200 Posted November 23, 2013 Author Posted November 23, 2013 Thank u for ur quick reply, I'll let u know if it works!
SirDarknight1200 Posted November 23, 2013 Author Posted November 23, 2013 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?
jchd Posted November 23, 2013 Posted November 23, 2013 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! 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 hereRegExp tutorial: enough to get startedPCRE 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)
michaelslamet Posted November 23, 2013 Posted November 23, 2013 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?
michaelslamet Posted November 23, 2013 Posted November 23, 2013 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! Agree!
Moderators Melba23 Posted November 23, 2013 Moderators Posted November 23, 2013 SirDarknight1200,Do you ever read the Help file or search the forum before posting? If not then please start doing so in future. M23P.S. You need to disable the pic control. 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: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now