Possible to have a UserForm close by itself?

mcomp72

Active Member
Joined
Aug 14, 2016
Messages
292
Office Version
  1. 365
  2. 2019
  3. 2016
  4. 2011
Platform
  1. Windows
  2. MacOS
For my workbook, I want a 'splash screen' to display immediately after the workbook has been opened. The workbook takes a 10-12 seconds to run a bunch of code when it is first opened, so I want to inform the user that the workbook is loading, so they don't think something is wrong. I created a UserForm, and placed code to open it in the Workbook_Open sub inside the ThisWorkbook module.

Code:
Private Sub Workbook_Open()

LoadingUserForm.Show

End Sub

The UserForm appears, though not as immediately as I would like. (That's actually a smaller issue at the moment, but if anyone has any thoughts as to why it might be taking a few seconds for the UserForm to appear, even though it is the ONLY thing inside the Workbook_Open sub, I'm all ears.)

I would like the UserForm to automatically unload (disappear) once all of the code inside its Initialize sub is finished running. I tried putting 'Unload Me' at the end of the Initialize sub, but it gave me a Run-time error 91.

I don't want the user to be able to close the UserForm on their own, so I have made it to nothing happens if they click the X in the top right.

I know it's possible to do this, because I've seen another workbook that does it, but the code to that workbook is password protected, so I can't see how they do it. I have searched online, but haven't had any luck finding an answer.
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
I would like the UserForm to automatically unload (disappear) once all of the code inside its Initialize sub is finished running. I tried putting 'Unload Me' at the end of the Initialize sub, but it gave me a Run-time error 91.
Assuming your UserForm is named "LoadingUserForm"), put this...

Unload LoadingUserForm

as the last executable line of code inside your Initialize event.
 
Upvote 0
Assuming your UserForm is named "LoadingUserForm"), put this...

Unload LoadingUserForm

as the last executable line of code inside your Initialize event.

Just tried it. It results in Run-time error 91: Object variable or With block variable not set, just like when I tried 'Unload Me'. (Just to clarify: the UserForm never shows up on the screen.)

If I remove that line, the UserForm does show up on the screen, but unfortunately doesn't ever go away.
 
Upvote 0
I do something similar. I use .hide to get rid of the userform. Always works for me.

ie. LoadingUserForm.Hide
 
Upvote 0
Just tried it. It results in Run-time error 91: Object variable or With block variable not set, just like when I tried 'Unload Me'. (Just to clarify: the UserForm never shows up on the screen.)
:confused: I'm confused. In Message #1 you said "The UserForm appears, though not as immediately as I would like" but now you are saying "Just to clarify: the UserForm never shows up on the screen". Please clarify.



If I remove that line, the UserForm does show up on the screen, but unfortunately doesn't ever go away.
Remove what line?
 
Last edited:
Upvote 0
After a lot more experimenting, I discovered that on the line of code that shows the UserForm, if I set it to Modeless, the unload command at the end of Initialize will work. I threw in a Repaint command because I was having an issue of the window showing up but nothing showing up inside.

Code:
LoadingUserForm.Show vbModeless
LoadingUserForm.Repaint

I do have another issue; I alluded to it in my original post. When the workbook opens, the little circle (what used to be the hourglass) spins for a few seconds BEFORE the UserForm is displayed. I don't understand what could be causing this, because the very first lines of my Workbook_Open sub are the ones above. Any idea what could be happening for a few seconds in Excel prior to the Workbook_Open sub being executed? My workbook does have a LOT of code and about 85 sheets, but I wouldn't think anything else would be happening BEFORE the Workbook_Open sub was executed. But I'm still fairly new to Excel VBA, so please enlighten me!
 
Last edited:
Upvote 0
:confused: I'm confused. In Message #1 you said "The UserForm appears, though not as immediately as I would like" but now you are saying "Just to clarify: the UserForm never shows up on the screen". Please clarify.

What I mean was, when I inserted the line of code you recommended, the UserForm would no longer appear. I received the Run-time 91 error without the UserForm ever appearing.
 
Upvote 0
After a lot more experimenting, I discovered that on the line of code that shows the UserForm, if I set it to Modeless, the unload command at the end of Initialize will work. I threw in a Repaint command because I was having an issue of the window showing up but nothing showing up inside.

I wouldn't run code from the userform initialize event. I would use the UserForm_Activate event.
If you do that then I think you won't need to repaint the userform, it will be faster in appearing and the hourglass issue may also be resolved..
 
Upvote 0
Actually, right now I have ALL the code inside the Workbook_Open event in the ThisWorkbook module.

Code:
Private Sub Workbook_Open()

LoadingUserForm.Show vbModeless
LoadingUserForm.Repaint

'a lot of code to start up the workbook

Unload LoadingUserForm

End Sub

There is currently no UserForm_Initialize event or UserForm_Activate event.

I was figuring this would be the fastest way for it all to happen. If I moved all the other code inside the Userform_Activate event, do you that will make the LoadingUserForm appear faster? I'm at a loss to understand why it isn't showing up immediately, since it is literally the first thing in the Workbook_Open event. What else could Excel be doing before showing it? Could the fact that my workbook has 85 sheets cause it to do any "thinking" prior to executing the Workbook_Open event?
 
Upvote 0
Actually, right now I have ALL the code inside the Workbook_Open event in the ThisWorkbook module.

Code:
Private Sub Workbook_Open()

LoadingUserForm.Show vbModeless
LoadingUserForm.Repaint

'a lot of code to start up the workbook

Unload LoadingUserForm

End Sub

There is currently no UserForm_Initialize event or UserForm_Activate event.

I was figuring this would be the fastest way for it all to happen. If I moved all the other code inside the Userform_Activate event, do you that will make the LoadingUserForm appear faster? I'm at a loss to understand why it isn't showing up immediately, since it is literally the first thing in the Workbook_Open event. What else could Excel be doing before showing it? Could the fact that my workbook has 85 sheets cause it to do any "thinking" prior to executing the Workbook_Open event?

I am not sure but the userform initialize event runs code before the userform is displayed as opposed to the Activate event.

Have you given the activate event a try and see the difference in speed ?

EDIT:

Now that you say you have all the code in the workbook open event - has speed improved ?

Also, are you running any long loops in the code that starts up the workbook ? Is the workbook hidden or visible while the userform splash screen is on display ? and is your code selecting ranges , worksheets etc ... ?

All the above can slow down the code considerably.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,173
Members
451,543
Latest member
cesymcox

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top