View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Bob Phillips[_6_] Bob Phillips[_6_] is offline
external usenet poster
 
Posts: 11,272
Default "Loading..." Splash Screen in Excel

Gary,

precede the macro call with

Me.Repaint

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"Gary Phillips" wrote in message
...
Okay, here's a stupid question. How do I load the form now? I tried to

just Label1.Show but it didn't work.

"Bob Phillips" wrote:

Try again.

Try this approach,

Create a userform with the 'splash' details
Instead of running the macro, load the form and have the form run the

macro
in it's Activate event.
When the macro completes, unload the form programmatically.

Something like

Private Sub UserForm_Activate()
myMacro
Unload Me
End Sub


--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"Gary Phillips" wrote in

message
...
Okay, I've been tasked with putting a "loading splash screen" on the

screen while a macro works in the background (this macro could take

30-45
seconds). So I created a simple dialog box and have it show itself while

the
macro is loading. Once it finishes I have it hide itself but it doesn't
work. (Box1.Hide) Instead, the user has to click the x button to close

the
dialog box.

How can I make the dialog box close itself?