User Messages

  • Thread starter Cipher via AccessMonster.com
  • Start date
C

Cipher via AccessMonster.com

I have a Form which loads many Tables. I would like to place a "Data Loading..
..Please Wait" message on the Form. I have a Message Box on the Form with a
Property of Visible=No. In the Command Button (PleaseWait) that loads the
Data I have:

PleaseWait.Visible=True
DoCmd.RunSavedImportExport "ImportSpecification"
 
D

Dale Fye

Try adding a

DoEvents or Me.Repaint

line between the two commands. That should force access to make the warning
visible.

--
HTH
Dale

email address is invalid
Please reply to newsgroup only.
 
C

Cipher via AccessMonster.com

Me.Repaint...worked perfect, thank you.

Dale said:
Try adding a

DoEvents or Me.Repaint

line between the two commands. That should force access to make the warning
visible.
I have a Form which loads many Tables. I would like to place a "Data Loading..
.Please Wait" message on the Form. I have a Message Box on the Form with a
[quoted text clipped - 3 lines]
PleaseWait.Visible=True
DoCmd.RunSavedImportExport "ImportSpecification"
 
Top