Excel VBA screen not updating after Wait function

Michael36

New Member
Joined
Feb 17, 2023
Messages
3
Office Version
  1. 365
Platform
  1. Windows
I have a small program for training purposes. In the program I use a Wait function. Now my user form is not updating my label during the for next loop where the wait is inserted. How can I solve this?
If I run the program in debug mode the label is updated, but in the loop I don't see this. I only see the first message en de "Einde"message

VBA Code:
For Teller1 = 1 To 20
    strHandling = Selection.Offset(Teller1, 0).Value
        If strHandling = "" Then
        lblExecution.Caption = "Einde"
        Exit For
    End If
    If strTypeLeerling = "Starter" Then
        If Teller1 = 2 Then lblChallenge.Caption = strChallenge
        lblExecution.Caption = strHandling
        Application.Wait (Now + TimeValue("00:00:01"))
    ElseIf strTypeLeerling = "Leerling" Then
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
This can be solved with the following:
me.repaint
after the wait will do!
 
Upvote 0
Solution

Forum statistics

Threads
1,226,112
Messages
6,189,039
Members
453,520
Latest member
packrat68

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