View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
ste mac ste mac is offline
external usenet poster
 
Posts: 117
Default Splash Screen problem

Hi Glen, I don't know if this will help you, but its what I did...

Private Sub Workbook_BeforeClose(Cancel As Boolean)

Sheets("Splash").Activate

End Sub

Then it selects the splash sheet before it saves/closes and hopefully
when you open you app it will be the first sheet seen...

Hope this helps

ste