How to check the Application SetOption in Microsoft Access

  • Thread starter Thread starter Bobbak
  • Start date Start date
B

Bobbak

Hello All,
I have this form and Onload I want it to check to see if the
following is set to False:

Application.SetOption "Confirm Record changes"
Application.SetOption "Confirm Document deletions"
Application.SetOption "Confirm Action queries"

I tried to use the standard if statement but I get an error right
away. I want to know if there is a proper format for checking the
condition of those options.
 
Bobbak said:
Hello All,
I have this form and Onload I want it to check to see if the
following is set to False:

Application.SetOption "Confirm Record changes"
Application.SetOption "Confirm Document deletions"
Application.SetOption "Confirm Action queries"

Use Application.GetOption maybe?

Mike MacSween
 
Back
Top