Hi, wondering if anyone can offer any help on why this error message is triggered by trying to run any VBA code with Access 2003 running on Windows 10:
This has started happening in the last few weeks with two users at my company. It doesn't appear linked to a particular database file - I can create a blank db, new form with one button and the following code, which causes the error:
I have around 20 usres on machines which all run on Windows 10 - this is so far affecting 2 of them. The same users can use the same file on different machines with no problem. Additionally, different users can log on to the affected machines and use them with no problem - seems only certain combinations of users and machines that get the error.
Already tried the following:
- Checked for broken references, nothing is missing
- Removed and reinstalled Office 2003
I should also point out the machines also have Office 2016 installed. I know it can be problematic to have two different versions installed, however to me it wouldn't explain why there were no errors previously, and why other users can use the same machine without problems.
Thanks for any help anyone is able to offer
The expression On Click you entered as the event property setting produced the following error: Object or class does not support the set of events
This has started happening in the last few weeks with two users at my company. It doesn't appear linked to a particular database file - I can create a blank db, new form with one button and the following code, which causes the error:
Code:
Private Sub Command0_Click()
MsgBox "test"
End Sub
I have around 20 usres on machines which all run on Windows 10 - this is so far affecting 2 of them. The same users can use the same file on different machines with no problem. Additionally, different users can log on to the affected machines and use them with no problem - seems only certain combinations of users and machines that get the error.
Already tried the following:
- Checked for broken references, nothing is missing
- Removed and reinstalled Office 2003
I should also point out the machines also have Office 2016 installed. I know it can be problematic to have two different versions installed, however to me it wouldn't explain why there were no errors previously, and why other users can use the same machine without problems.
Thanks for any help anyone is able to offer