Display a message

prao

Registered User.
Local time
Today, 04:06
Joined
Apr 16, 2001
Messages
32
I have a form with one button. When user hits the button, I am populating a table with some data's. I want to display a message at the bottom of the form about the status of the processing. The processing is happening in "For...Loop"

For ex: On opening the form the message will be "Ready..."
When it is processing the message will be "Processing..." with the month name.
I tried to have a label and changed the caption value. But I am seeing the "Ready..." message, but I dont see the "Processing...+MonthName" message. I even tried to have text box. But the 2nd message I am getting after the processing is over in the text box.

Can somebody help me in solving this problem.

Thanks
 
Try putting....

Me.Repaint

After each caption change.

HTH

Kevin M
 
KevinM, Thanks for the solution, it works.
 

Users who are viewing this thread

Back
Top Bottom