Userform loading, but Content (Inside border) is BLANK?

  • Thread starter Thread starter JMay
  • Start date Start date
J

JMay

The below (Partial) code is working fine EXCEPT my UserForm1 (which is coming
up on the screen) IS BLANK Inside the border. Obviously, I'd like for the
content to SHOW; What do you see as being wrong here?

Sub ImportDailys()
'
Application.ScreenUpdating = False
Worksheets("Data").Activate
Range("B2:F30000").ClearContents
Worksheets("Start Here").Activate
Application.ScreenUpdating = True

res = InputBox("Enter Report Day of Month")
UserForm1.Show vbModeless

Application.ScreenUpdating = False

'To process 1 of 26
...................
End sub
 
Never mind,,, Got it Googling...
Added Line DoEvents

Problem Solved,,
 

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