Hi all
Is there a way to show a form with the Excel Application Minimized, Or should I be using VB6?
Thanks
Darryl.
Hi all
Is there a way to show a form with the Excel Application Minimized, Or should I be using VB6?
Thanks
Darryl.

This month, every Windows Secrets subscriber can download a one-chapter excerpt of Windows 7: The Missing Manual.Windows 7: The Missing Manual provides valuable information to help you overcome these difficulties in learning a new operating system. Subscribe today to download your free excerpt.
There may be a trick using Windows API functions., but as far as I know it's not possible using Excel VBA only.
I don't think so, the userform would be minimized with Excel. You can do this though:
<pre> Application.Visible = False
UserForm1.Show
</pre>
Legare Coleman
Where would I insert that code?
Where you want to show the userform without Excel being visible. And someplace before the userform goes away, you better have:
<pre> Application.Visible = True
</pre>
Legare Coleman