|
-
Jan 24th, 2005, 10:22 AM
#1
Thread Starter
Fanatic Member
a shell ? [RESOVED]
In my vb app, I use the following code:
VB Code:
'run setup exe to install control components
Unload frmCopyUtility
Shell App.Path & "\" & "setup.exe"
When my copy utility unloads, it launches the setup.exe file, I want the setup.exe to display in the monitor so useres can see it, instead it only shows up in the toolbar. The setup.exe is installing all of my DLL's and other controls I use in my application.
Is there away to force the setup window to diplay on the monitor? I hope I am making sense.
Last edited by Navarone; Jan 24th, 2005 at 10:49 AM.
He who never made a mistake never made a discovery?
-
Jan 24th, 2005, 10:26 AM
#2
Re: a shell ?
If I understand you then something like this should work.
VB Code:
Shell App.Path & "\" & "setup.exe", vbMaximizedFocus
This world is not my home. I'm just passing through.
-
Jan 24th, 2005, 10:29 AM
#3
Thread Starter
Fanatic Member
Re: a shell ?
Yes, that helped, but it over took the whole monitor. Is there a way to display in a smaller window? 
I got it, thanks. vbNormalFocus.
He who never made a mistake never made a discovery?
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
|