Screen Flicker

J

JonWayn

How do I prevent the screen flickers I get when I open an Access database
programatically from Excel?

Thanx
 
G

Gord Dibben

Try

Sub openaccess()
Application.ScreenUpdating = False
''do your code stuff here
Application.ScreenUpdating = True
End Sub

Gord Dibben XL2002
 
Top