ShowModal = False but Textbox does not show on userform

G

Guest

I have a userform which is shown while a macro is running (Almost like a
status bar). I have set ShowModal property = False to do so. When I pull up
the form I do so with:

SummaryForm.Show

When I do so the textbox in the form does not show. Why is this? When
ShowModal = True it pulls the form up and shows the textbox, however it halts
my code which I don't want.



Thanks

EM
 
G

Gary Keramidas

right after the code that shows the form, add this :

DoEvents

see if that helps.
 

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