Hide Every Thing during UserForm Loads

S

Shazi

Hi,

I prepared one userform showing detail from worksheet. when it loads
then worksheet is displayed behind with all toolbars and menubars.

I want to display userform only without viewing worksheets and any
thing.
I used this command


ActiveWindow.WindowState = xlMinimized

but still active sheet is visible in the left corner of the bottom.
how to fix this problem

Regards.

Shahzad
 
F

FSt1

hi
you can hide excel and keep the form visible when you load your form.

application.visible = false

the form would appear in the middle of your desktop theme.
then when you close your form..

application.visible = true

this will make excel visible again.

regards
FSt1
 
S

Shazi

hi
you can hide excel and keep the form visible when you load your form.

application.visible = false

the form would appear in the middle of your desktop theme.
then when you close your form..

application.visible = true

this will make excel visible again.

regards
FSt1









- Show quoted text -

Hi,

Thanks for replying, but I dont want to hide Excel for the UserForm,
because when excel hide, then all the things on the desktop are
visible behind the UserForm. I want my userform will display with Blue
Background and nothing else. is it possible?

waiting for your reply.

Shahzad
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top