-
What I want it to do is kinda like this...
IAMh = Shell("D:\call wav\IAMSETUP.EXE -run", 0)
'0 vbHide (ie. Window is hidden and focus is passed to the hidden window.)
BUT It's to work on a program already executed and running. How can I change that value on a program that is already running?!?
-
Use AppActivate to activate a program already running.
eg; AppActivate "Microsoft Word", True
Once you have done that you can use SendKeys to tell the program to minimize (if you want)
SendKeys "% N"
(eg ALT+SPACE, followed by MiNimize)
------------------
Mark "Buzby" Beeton
VB Developer
[email protected]