devxlogo

Use Refresh, not DoEvents

Use Refresh, not DoEvents

The DoEvent statement should be used only to give other portions of your program to be reactive to the end user’s actions. Instead, many VB developers use it to force a repaint of a form or some of its controls. This means adding a lot of overhead to your code, which you can avoid by using the Form’s Refresh method or (even better), the Refresh method of the only control that needs to be updated:

Dim i As IntegerFor i = 1 To 10000    ' do something here    '     ' Update a label with iteration count    lblStatus.Caption = "Iteration #" & i    ' refresh *only* the label    lblStatus.RefreshNext

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist