jd_boss_hogg
Registered User.
- Local time
- Today, 10:36
- Joined
- Aug 5, 2009
- Messages
- 88
Hi All - hoping some kind soul can help....
I have a split database. All on same network, everybody using 2003. I am a NOT a programmer, more of a cut and paster, so please excuse if i seem ignorant...
Frontend works on all computers except 2. On these 2, when you try to open the dbase you get the error message "The expression On Open you entered as the event property setting produced the following error: Object or class does not support the set of events"
I think the "on open" is referring to the switchboard that i use as a menu system which loads when the database is started. The on open code is:
This works on all PC's (6 in all) except 2 of them. If i rem out the code lines so nothing happens, then those 2 that will not open actually open, except that all PC's can then only access the first menu page and not any sub menus.
I dont know why this doesnt work on 2 systems but works on the others? Ive googled all other instances of this error code method that i can find, and cant come up with an answer?
I'd greatly appreciate any advice.
I have a split database. All on same network, everybody using 2003. I am a NOT a programmer, more of a cut and paster, so please excuse if i seem ignorant...
Frontend works on all computers except 2. On these 2, when you try to open the dbase you get the error message "The expression On Open you entered as the event property setting produced the following error: Object or class does not support the set of events"
I think the "on open" is referring to the switchboard that i use as a menu system which loads when the database is started. The on open code is:
Code:
Private Sub Form_Open(Cancel As Integer)
' Minimize the database window and initialize the form.
' Move to the switchboard page that is marked as the default.
Me.Filter = "[ItemNumber] = 0 AND [Argument] = 'Default' "
Me.FilterOn = True
End Sub
This works on all PC's (6 in all) except 2 of them. If i rem out the code lines so nothing happens, then those 2 that will not open actually open, except that all PC's can then only access the first menu page and not any sub menus.
I dont know why this doesnt work on 2 systems but works on the others? Ive googled all other instances of this error code method that i can find, and cant come up with an answer?
I'd greatly appreciate any advice.