Pop up window at update

Freak81

Registered User.
Local time
Today, 19:42
Joined
Nov 30, 2005
Messages
14
Hi guys,

If I use an update query in my VBA code (for example, when I click a button), a pop up window is shown to the user.

Can you omit showing this pop up window? I don't want to bother my end user with that window.

Freek
 
Use the .execute method, you should be able to find examples posted here
 
You can also use:

Code:
DoCmd.SetWarnings False

'Your query executing goes here

DoCmd.SetWarnings True

Seth
 

Users who are viewing this thread

Back
Top Bottom