NiceBoy1234 Posted August 3, 2016 Posted August 3, 2016 (edited) How can I run this command: Send( 'C:\xampp\htdocs\myApp\BuildDVD.exe ..\..\projects\dvdrom\' & $sFileName & '\project.xml ..\..\projects\' & $sFileName & '\video') in a Shell Execute? I can run ShellExecute('C:\xampp\htdocs\myApp\BuildDVD.exe') but how to I add the rest of the command? Edited August 3, 2016 by NiceBoy1234
SadBunny Posted August 3, 2016 Posted August 3, 2016 As per the helpfile: Quote ShellExecute ( "filename" [, "parameters" [, "workingdir" [, "verb" [, showflag]]]] ) So... ShellExecute(@ComSpec, " /k dir c:\tmp") Or through Run(): Run(@ComSpec & " /k dir c:\tmp") Roses are FF0000, violets are 0000FF... All my base are belong to you.
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