|
-
Sep 18th, 2017, 04:41 PM
#1
Thread Starter
Lively Member
[help code]Minimize a external program
Hello everybody, I need your help so i would like to minimize a program as soon as it opens . I am beginner and i don't find hins.
example; the PROGRAM CALLs Mugen.exe here no problem i have the code to open it but i must add a code to minimize it as soon!
I would like a discret mode.
thank you in advance for your Help
Last edited by dday9; Sep 18th, 2017 at 04:43 PM.
Reason: Removed the Font Styles
-
Sep 18th, 2017, 04:45 PM
#2
Re: [help code]Minimize a external program
If you launch the executable as a process then you could set the WindowStyle to Minimized before starting the process:
Code:
Dim p As ProcessStartInfo = New ProcessStartInfo("Mugen.exe") With {.WindowStyle = ProcessWindowStyle.Minimized}
Process.Start(p)
-
Sep 18th, 2017, 05:31 PM
#3
Thread Starter
Lively Member
Re: [help code]Minimize a external program
THANK YOU for your answer!
I will try, i will post the result tomorrow!
Tags for this Thread
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|