Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Hide the Excel screen

I need hide the excel screen, after start up the UserForm, I want show
only the UserForm.

How I do it.
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Hide the Excel screen

Hi

A quick solution is to paste the following code replacing Userform1
with the name of your form in ThisWorkSheet.

Private Sub Workbook_Open()

Application.WindowState = xlMinimized
Load UserForm1
UserForm1.Show False

End Sub

Its does the job but you will have to see Excel start up then minimise.
Disabling ScreenUpdating won't do.

There are other ways to completely hide the Excel screen but it quite
complex (unless someone knows another way?)

Tom
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7,247
Default Hide the Excel screen

You can use the Visible property to hide the main Excel window. E.g.,

Application.Visible = False


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
www.cpearson.com


"tetors_2002" wrote in message
...
I need hide the excel screen, after start up the UserForm, I want show
only the UserForm.

How I do it.



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Hide the Excel screen

Thanks guys.
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 screen movements when a macro is running STatAGL Excel Discussion (Misc queries) 4 April 3rd 23 06:54 PM
Hide function: "Cannot shift objects off screen"? JMG-Skater Excel Worksheet Functions 0 September 9th 08 09:00 PM
how do you hide the send email screen in Excel? Belfast Boy Excel Discussion (Misc queries) 2 January 30th 07 04:39 PM
How do I hide words on a printed document, but see on screen? piltricia Excel Discussion (Misc queries) 2 February 15th 06 01:37 AM
Hide the principal screen Bob Phillips[_5_] Excel Programming 0 September 4th 03 11:29 PM


All times are GMT +1. The time now is 09:54 AM.

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"