For the past 8 years I have succesfully used functions in event handlers. Programs that always worked allright are now causing problems when converted to Access 2002 on Windows XP.
Instead of [Event Procedure] the function is entered directly in the property field, for instance: On Got Focus . . . . =GeneralOnFocusHandler()
The function "GeneralOnFocusHandler" is contained in a reference to a mde-file.
I have done some work to solve this problem but the only solution (so far) is to create an [Event Procedure] sub for all used controls, like this
Private Sub MyControl_GotFocus()
GeneralOnFocusHandler()
End Function
Can somebody tell what was changed, what causes this behaviour ?
Please HELP !
Instead of [Event Procedure] the function is entered directly in the property field, for instance: On Got Focus . . . . =GeneralOnFocusHandler()
The function "GeneralOnFocusHandler" is contained in a reference to a mde-file.
I have done some work to solve this problem but the only solution (so far) is to create an [Event Procedure] sub for all used controls, like this
Private Sub MyControl_GotFocus()
GeneralOnFocusHandler()
End Function
Can somebody tell what was changed, what causes this behaviour ?
Please HELP !