C
CLM
I have a form with the code of:
strQryName = "QApnd qspt 18th to tblData"
DoCmd.SetWarnings False
DoCmd.OpenQuery strQryName, acViewNormal
DoCmd.SetWarnings True
Is there a way to capture the number of records appended?
I know that the DoCmd.SetWarnings False turns off the
message box relaying number of records appended to the
user but is there a way to capture that info in the code
so that I can use it?
strQryName = "QApnd qspt 18th to tblData"
DoCmd.SetWarnings False
DoCmd.OpenQuery strQryName, acViewNormal
DoCmd.SetWarnings True
Is there a way to capture the number of records appended?
I know that the DoCmd.SetWarnings False turns off the
message box relaying number of records appended to the
user but is there a way to capture that info in the code
so that I can use it?