G
Guest
I am using access 2k and all of a sudden it won't promt me for any design
changes for anything, Forms, Macros or nothing. I found the following thread
and have followed it to the T. I can find know where in my database where
Warnings are set to true or false. I am lost.
Please help and thank you in advance.
Two possiblities:
One: you have deselected the "Confirm" checkboxes in Tools | Options |
Edit/Find. To fix, reselect these items.
Two: you have run VBA code that turned off the warnings and you didn't turn
them back on.
DoCmd.SetWarnings False
' do some code here
DoCmd.SetWarnings True
To fix "two", go to Immediate Window and type
DoCmd.SetWarnings True
and hit Enter.
To not have "two" return, search your code for places where the warnings are
turned off, and the "turn on" step can be bypassed (often occurs if you have
an error handler that sends the code to a place that doesn't include the
"turn on" step).
changes for anything, Forms, Macros or nothing. I found the following thread
and have followed it to the T. I can find know where in my database where
Warnings are set to true or false. I am lost.
Please help and thank you in advance.
Two possiblities:
One: you have deselected the "Confirm" checkboxes in Tools | Options |
Edit/Find. To fix, reselect these items.
Two: you have run VBA code that turned off the warnings and you didn't turn
them back on.
DoCmd.SetWarnings False
' do some code here
DoCmd.SetWarnings True
To fix "two", go to Immediate Window and type
DoCmd.SetWarnings True
and hit Enter.
To not have "two" return, search your code for places where the warnings are
turned off, and the "turn on" step can be bypassed (often occurs if you have
an error handler that sends the code to a place that doesn't include the
"turn on" step).