View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Henry Stockbridge Henry Stockbridge is offline
external usenet poster
 
Posts: 19
Default Showing Userform Problem

Hi,

I have created an Excel template used as a small application. Users
start the application by first hyperlinking to the directory where the
..xlt resides, and then by opening the .xlt file.

The problem arises when the Users open the .xlt. The Userform shows,
but underneath the directory window. The Users then have to minimize
the directory window to access the Userform. How annoying. Is there a
way to have the Userform load and show on top?

Any help you can lend would be appreciated.

Here is my start up code:
'------------------------------------------
Private Sub Workbook_Open()
Application.Visible = False
frmWelcome.Show
End Sub
'------------------------------------------
Henry