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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top