Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6
Default Hide worksheets on start

When the user opens the workbook a userform is displayed.
Is it possible to have the userform displayed without the
worksheets in the background? When the user hits the <OK
button, then the worksheets would be displayed as
appropriate. Thanks in advance...
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 42
Default Hide worksheets on start

You have to have at least one unhidden worksheet.
Richard Choate

"Derek" wrote in message
...
When the user opens the workbook a userform is displayed.
Is it possible to have the userform displayed without the
worksheets in the background? When the user hits the <OK
button, then the worksheets would be displayed as
appropriate. Thanks in advance...


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 620
Default Hide worksheets on start

Derek,

You can't hide all of the sheets as Excel insists on one being visible. You
could minimize the workbook though
ActiveWindow.WindowState = xlMinimized
and then show the userform. You would need to normalise it when you shut the
form down.

--
HTH

-------

Bob Phillips
... looking out across Poole Harbour to the Purbecks


"Derek" wrote in message
...
When the user opens the workbook a userform is displayed.
Is it possible to have the userform displayed without the
worksheets in the background? When the user hits the <OK
button, then the worksheets would be displayed as
appropriate. Thanks in advance...



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 102
Default Hide worksheets on start

Derek,

Tom Ogilvy posted this yesterday in response to a different question

Private Sub workbook_open()
ThisWorkbook.Windows(1).Visible = False
start_screen.Show
ThisWorkbook.Windows(1).Visible = True
End Sub

Dan E

"Derek" wrote in message
...
When the user opens the workbook a userform is displayed.
Is it possible to have the userform displayed without the
worksheets in the background? When the user hits the <OK
button, then the worksheets would be displayed as
appropriate. Thanks in advance...



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Hide/lock worksheets McChas Excel Worksheet Functions 4 January 7th 10 05:50 PM
Hide/Show some worksheets Tony S.[_2_] Excel Discussion (Misc queries) 8 January 18th 09 07:28 PM
Hide multiple worksheets Wanna Learn Excel Discussion (Misc queries) 4 March 13th 07 12:25 PM
How to hide worksheets Man Utd New Users to Excel 3 October 20th 05 03:25 PM
is it possible to Hide certain worksheets from certain users? Admin Excel Discussion (Misc queries) 2 May 4th 05 09:15 PM


All times are GMT +1. The time now is 11:53 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"