Rogue5099 Posted March 29, 2014 Share Posted March 29, 2014 I want to start a script with this: ShellExecute(Test.exe C:ExampleTest.txt) and have it save C:ExampleTest.txt to a variable if started with just Test.exe then $sFile = FileOpenDialog('Select File', @DesktopDir, 'Text File (*.txt)', 1) My projects: Inventory / Mp3 Inventory, Computer Stats Link to comment Share on other sites More sharing options...
Rogue5099 Posted March 29, 2014 Author Share Posted March 29, 2014 I figured it out: ShellExecute(@ScriptDir & "\Test.exe", "Test.txt") If $CmdLineRaw <> "" Then Local $sFile = $CmdLineRaw Else Local $sFile = FileOpenDialog('Select File', @DesktopDir, 'Text File (*.txt)', 1) EndIf of course shellexecute will be in another script opening up test.exe My projects: Inventory / Mp3 Inventory, Computer Stats Link to comment Share on other sites More sharing options...
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