L
LA Lawyer
I am running code in a form similar to this:
Dim SQL As String
SQL = "UPDATE Employees " & _
"SET Employees.Title = 'Regional Sales Manager' " & _
"WHERE Employees.Title = 'Sales Manager'"
DoCmd.RunSQL SQL
The problem is that Access asks me to confirm the update. How do I avoid
the confirmation of the update? I want this just to run.
Dim SQL As String
SQL = "UPDATE Employees " & _
"SET Employees.Title = 'Regional Sales Manager' " & _
"WHERE Employees.Title = 'Sales Manager'"
DoCmd.RunSQL SQL
The problem is that Access asks me to confirm the update. How do I avoid
the confirmation of the update? I want this just to run.