Fattire Posted December 1, 2006 Posted December 1, 2006 Is there any reason when I type at a DOS prompt at the root of C "start k.xls" that the excel file opens up but when I run: RunWait(@ComSpec & " /c start K.xls") ...I get an error stating it can't find the file, or sometimes nothing happens? I've tried RunWait(@ComSpec & " /c " & "start " & "K.xls") as well other variations and it doesn't work - as well as typing "Run" rather then "RunWait" on everything....nothing...I'm 1 day into this language btw...
Developers Jos Posted December 1, 2006 Developers Posted December 1, 2006 Is there any reason when I type at a DOS prompt at the root of C "start k.xls" that the excel file opens up but when I run:RunWait(@ComSpec & " /c start K.xls") ...I get an error stating it can't find the file, or sometimes nothing happens?I've tried RunWait(@ComSpec & " /c " & "start " & "K.xls") as well other variations and it doesn't work - as well as typing "Run" rather then "RunWait" on everything....nothing...I'm 1 day into this language btw...where is your script located?try:RunWait(@ComSpec & " /c start c:\K.xls") SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
Valuater Posted December 1, 2006 Posted December 1, 2006 also in the beta release there is a new command ShellExecute() 8)
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