Modal Forms

G

Guest

I created a form as modeless. frm_status.Show (False)

I have a label on the form to display to the user the record being
processed. When I run the program the form displays but the interior of the
form is white and does not display my label until the end of the macro. At
the end, the label shows with the end of process message I coded.

Is there a method to correct this?

Thanks,
Mike
 
G

Guest

MJRay,

after the code to change the caption

eg...
frm_status.labelname.caption = "Product # 25"
DoEvents

DoEvents cause the computer to process events in it's Queue. Including
drawing to modeless forms
 

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