Soundsmith
Programmer
I'm generating a series of SQL UPDATE commands to locate records. The commands take the form of:
DoCmd.RunSQL "UPDATE qryPikNames SET ok = True"
Each time the command runs I get a MsgBox:
"You are about to update nnnn rows" and an "Are you sure" selection.
How can I avoid these? I need to simply run the SQL commands with no questions asked.
Also, it takes a relatively long time to run the command against 2600 records. Any ideas for speeding it up?
Thanks.
David 'Dasher' Kempton
The Soundsmith
DoCmd.RunSQL "UPDATE qryPikNames SET ok = True"
Each time the command runs I get a MsgBox:
"You are about to update nnnn rows" and an "Are you sure" selection.
How can I avoid these? I need to simply run the SQL commands with no questions asked.
Also, it takes a relatively long time to run the command against 2600 records. Any ideas for speeding it up?
Thanks.
David 'Dasher' Kempton
The Soundsmith