rakudave Posted August 12, 2005 Posted August 12, 2005 (edited) i'm scripting a sudoku-program, that also can save and load sudoku's. in windows, you can open a file by clicking on it and it will start the program AND open the file in it. q: is this possible with autoit, and if yes, who??? Edited August 12, 2005 by rakudave Pangaea Ruler new, UDF: _GUICtrlCreateContainer(), Pangaea Desktops, Pangaea Notepad, SuDoku, UDF: Table
MSLx Fanboy Posted August 12, 2005 Posted August 12, 2005 Compile to exe, and the first param sent to the exe would be the full path of the file that is being opened If $cmdline[0] > 0 Then Run(@COMSPEC & ' /c notepad.exe ' & $cmdline[1]) EndIf Compile that code, associate a text file to it, and it will auto-open those files in notepad... Writing AutoIt scripts since _DateAdd("d", -2, _NowCalcDate())
LxP Posted August 12, 2005 Posted August 12, 2005 Or even more simply: if ($cmdLine[0] > 0) then run('notepad.exe ' & $cmdLine[1]) endIf
rakudave Posted August 16, 2005 Author Posted August 16, 2005 thanX it worX now... Pangaea Ruler new, UDF: _GUICtrlCreateContainer(), Pangaea Desktops, Pangaea Notepad, SuDoku, UDF: Table
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