Guest Bombastic1982 Posted June 9, 2005 Share Posted June 9, 2005 Hi, I would Run a exe File about a Autoit-Script. I would also give at the run-process any parameters. example: Run("mailen.exe GUICtrRead($text)") I read GUICtrRead($text) with an Gui-input. But the run read GUICtrRead($text) as GUICtrRead($text) and not the value. Please Help. Thx Bmb Link to comment Share on other sites More sharing options...
sjorrel Posted June 9, 2005 Share Posted June 9, 2005 Run("mailen.exe " & GUICtrRead($text)) Link to comment Share on other sites More sharing options...
Guest Bombastic1982 Posted June 9, 2005 Share Posted June 9, 2005 @sjorrel it doesn't work. i can't execute "run" so. Link to comment Share on other sites More sharing options...
MHz Posted June 9, 2005 Share Posted June 9, 2005 (edited) I cannot see anything wrong with the example that sjorrel has given. Is mailen.exe in the script directory? Or does it require a working path? If it is not in the script directory, that command will fail. If it has other support files with it, it may require a working directory. Edit: try: Run('mailen.exe "' & GUICtrRead($text) & '"') Tou may have spaces in your parameter ? This should solve it. Edited June 9, 2005 by MHz Link to comment Share on other sites More sharing options...
Guest Bombastic1982 Posted June 9, 2005 Share Posted June 9, 2005 so...now it working thx MHZ 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