Black out Background of Userform

  • Thread starter Thread starter Jeff
  • Start date Start date
J

Jeff

Hi,

When my spreadsheet is opened, a userform automatically pops up. My
question is is it possible to black out the background, so you can't see
excel.

I thought it would look better if there was Blue in the background.

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

application.visible = false

you can load a background picture...

ActiveSheet.SetBackgroundPicture ("C:\My Documents\My Pictures\mypic.jpg")

otherwise 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
 

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

Back
Top