Medallyon Posted October 7, 2015 Posted October 7, 2015 (edited) Heya AutoIt Community,I'm sure this has been posted tons of times before, and I googled & forum'd it and found relevant topics, but none of these fixes apply to my particular code for some reason.What I have right now:ShellExecute("""" & $sProgramPath & """" & " !LoadLayout " & """" & $sLayout2 & """")What I want to happen:"C:\Program Files\Program\Program.exe" !LoadLayout "Working"What actually happens:Windows cannot find 'C:\Program Files\Program\Program.exe" !LoadLayout "Gaming'. Make sure you typed the name correctly, and then try again.Of course the path is wrong because it has the wrong quotation marks!I've used several methods trying to get normal quotes to appear in the programpath, like "", """" and even chr(34), but they all just return the above faulty @error message. How do I get it to look like what I want to happen?Many Thanks in Advance,~Admiral Medallyon Edited October 7, 2015 by Medallyon solved
JohnOne Posted October 7, 2015 Posted October 7, 2015 You should show all your code, I'm having trouble trying to figure out the word "Working" was transformed in to the word "Gaming".And where the single quotes magically appeared from. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
Medallyon Posted October 7, 2015 Author Posted October 7, 2015 You should show all your code, I'm having trouble trying to figure out the word "Working" was transformed in to the word "Gaming".$sLayout is an input from the user. It can be anything.And where the single quotes magically appeared from.That's why I posted this thread. I want to have it in the form"C:\Program Files\Program\Program.exe" !LoadLayout "Working"but it comes out as'C:\Program Files\Program\Program.exe" !LoadLayout "Gaming'because I cannot figure out the quotation. I was looking for help as to why my "s turned into 's.
kylomas Posted October 7, 2015 Posted October 7, 2015 Medallyon,Try this...ShellExecute('"' & $sProgramPath & '"', " !LoadLayout " & $sLayout2)Note: the 2ND parm of shellexecute is the parm(s).kylomas Forum Rules Procedure for posting code "I like pigs. Dogs look up to us. Cats look down on us. Pigs treat us as equals." - Sir Winston Churchill
Medallyon Posted October 7, 2015 Author Posted October 7, 2015 Medallyon,Try this...ShellExecute('"' & $sProgramPath & '"', " !LoadLayout " & $sLayout2)Note: the 2ND parm of shellexecute is the parm(s).kylomasThis works flawlessly. Thank you very much for the quick input.Regards,~Admiral Medallyon
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