VBA Code

StefanSch

Registered User.
Local time
Today, 21:48
Joined
Jan 18, 2003
Messages
136
Is there a VBA code to make the blinking cursor disappear during the processing of a time-consuming code?
 
You could try

DoCmd.Hourglass True

and then at the end of your code

DoCmd.Hourglass False

This will just show your cursor as the "busy" hourglass.
 

Users who are viewing this thread

Back
Top Bottom