Eljefegeneo
Still trying to learn
- Local time
- Yesterday, 21:35
- Joined
- Jan 10, 2011
- Messages
- 902
I have been bugged by the MS update Office 2010: Description of the security update for Office 2010: November 12, 2019 (KB4484127) as posted on https://support.office.com/en-us/ar...-corrupt-fad205a5-9fd4-49f1-be83-f21636caedec.
I am able to change some of the code that did not like this update and cannot wait until they fix it as they say (hopefully) by November 29th.
Unfortunately I also have some SQL code that is built in to various procedures. An example of this is:
My question is do I have to change this to first make a query from [tblRegularInvoices2] and then amend this SQL statement also? Or did the error only occur from a query not a SQL statement. It is hard for me to test this as the database is on a server and I am on a remote terminal and cannot directly access or test the DB.
I am able to change some of the code that did not like this update and cannot wait until they fix it as they say (hopefully) by November 29th.
Unfortunately I also have some SQL code that is built in to various procedures. An example of this is:
Code:
SQL = "UPDATE tblRegularInvoices2" & " " & _
"Set CheckNextMonth = True" & "," & " " & _
"SpecialBilling = True" & "," & " " & _
"Remove = True" & " " & _
"WHERE RecordID = " & DMinA