Is there property setting or alternative way to stop the confirmation for an append?
I am parsing through thousands of records, building a string for each group, and inserting the info into a table.
I am running the following “insert into” in VBA:
strinsertsql = “INSERT INTO PubTable (MFBIndex, UFSiteString, SumUFSiteString, ” & _
“NumberUFSiteString ) ” & _
“values (” & strmfbidx & “, ” & “‘” & strpass & “‘” & “, ” & sumid & “, ” & count & “);”
DoCmd.RunSQL strinsertsql
I get a msgbox with each execution and don’t want to hit OK each time. Any better way to do this or just a property I can set. I can’t seem to find one on my own.
Additional question: the ” & xxxx & ” format for the values. Is this for all variables, ie string, date, number? Does anyone have a source for various permutations of acceptable Values syntax for variables in access