Application.ScreenUpdating = False

Ammarhm

Beginner User
Local time
Yesterday, 19:56
Joined
Jul 3, 2008
Messages
80
Hi
I am trying to build a VBA modul, two lines with the command (Application.ScreenUpdating) are returning an error:

Application.ScreenUpdating = False
..
.
. Some code here
.
.
Application.ScreenUpdating = True

THe error is
Compile error, Method or data member not found
Anyone has a clue what the problem is? Maybe something in references?
Regards
 
It simply means that .ScreenUpdating is not a meathod of application. This could be due to a reference yes but I do not know which one would give you this ability.
 
ScreenUpdating is in Excel, but it isn't in Access. In Access you would use

Application.Echo False

Application.Echo True
 

Users who are viewing this thread

Back
Top Bottom