Netol Posted September 13 Share Posted September 13 My my friend, Just to ask a simple question. With this code: Local $iPID = ShellExecute($file, @SW_HIDE) I Cant execute the process HIDE! Exist other form to execute this command in background and dont display command windows Link to comment Share on other sites More sharing options...
Solution Dan_555 Posted September 13 Solution Share Posted September 13 The code for shell execute is: ShellExecute ( "filename" [, "parameters" [, "workingdir" [, "verb" [, showflag]]]] ) To use the showflag, you have to provide blank parameters ... ShellExecute ( "filename" , "" , "" , "" , @SW_HIDE ) Netol 1 Some of my script sourcecode Link to comment Share on other sites More sharing options...
Netol Posted September 14 Author Share Posted September 14 4 hours ago, Dan_555 said: The code for shell execute is: ShellExecute ( "filename" [, "parameters" [, "workingdir" [, "verb" [, showflag]]]] ) To use the showflag, you have to provide blank parameters ... ShellExecute ( "filename" , "" , "" , "" , @SW_HIDE ) Thanks a lot, your code working fine best regards 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