Pop Up questions

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a button in a form, that by clicking runs an update query. There shows
up two pop up windows. The first says that data will be changed and asks if
the user wants to proceed. There are also 3 buttons, Yes, No and Help
The second says that XX rows will be updated and there are 2 buttons, Yes
and No.

I think that the second pop up is enough, as the user has the possibility to
deny the update. Is there any way of getting rid of the first one with 3
buttons?

/ Rolf
 
I think it's an all-or-nothing proposition. To turn them off, you can use
DoCmd.SetWarnings False before running the query (make sure you set
DoCmd.SetWarnings True afterwards).
 
I understand what you mean and guess that there is no way to get in inbetween
those two pop ups to set it true to allow the last one.

/ Rolf
 
Back
Top