S
samotek via AccessMonster.com
is there any simple code to show some figure as sandwatch or something while
my main code is running?
my main code is running?
David C. Holley said:You can create a form that is displayed when the code starts executing
and
which is then hidden when its finished. At certain points throughout
the
code you can update your users by adding a label to the form whose
caption
you then update as in..
[Forms]![frmAdvisory]![lblAdvisoryText].Caption "Working on Step (2)
of
(5)..."
[Forms]![frmAdvisory].Repaint
Calling the .Repaint method of the form is neccessary to show the new
caption.