Netol Posted September 13, 2024 Posted September 13, 2024 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
Solution Dan_555 Posted September 13, 2024 Solution Posted September 13, 2024 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
Netol Posted September 14, 2024 Author Posted September 14, 2024 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
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