Z Zelo Registered User. Local time Today, 19:33 Joined Mar 9, 2007 Messages 35 Mar 18, 2007 #1 I have a little question is't possible, to made record Update without Promt "Your are about to update 1 row. Are you sure to update these records?"
I have a little question is't possible, to made record Update without Promt "Your are about to update 1 row. Are you sure to update these records?"
boblarson Smeghead Local time Today, 09:33 Joined Jan 12, 2001 Messages 32,040 Mar 18, 2007 #2 Yes, what is the code that gives you the prompt?
M Moniker VBA Pro Local time Today, 11:33 Joined Dec 21, 2006 Messages 1,567 Mar 19, 2007 #3 SetWarnings False <Query to update records> SetWarnings True Alternatively, since it's an action query: CurrentDb.Execute "Update_Query_Name"
SetWarnings False <Query to update records> SetWarnings True Alternatively, since it's an action query: CurrentDb.Execute "Update_Query_Name"
Z Zelo Registered User. Local time Today, 19:33 Joined Mar 9, 2007 Messages 35 Mar 19, 2007 #4 oh, thank you, thank you