J jlocke Registered User. Local time Today, 18:11 Joined Jul 23, 2002 Messages 31 Feb 27, 2004 #1 I'm looking to update a field in a record without using an update query, resaon being i need to make create a run time out of the data base and i don't want the program to prompt the user that a table is being updated. any suggestions?
I'm looking to update a field in a record without using an update query, resaon being i need to make create a run time out of the data base and i don't want the program to prompt the user that a table is being updated. any suggestions?
S scottfarcus Registered User. Local time Today, 23:11 Joined Oct 15, 2001 Messages 182 Feb 27, 2004 #2 Use DoCmd.SetWarnings(False) to turn off the warning message before you run the Update query. Use DoCmd.SetWarnings(True) to turn them back on after you run the query.
Use DoCmd.SetWarnings(False) to turn off the warning message before you run the Update query. Use DoCmd.SetWarnings(True) to turn them back on after you run the query.