I have a bound data entry form which works fine in Access 2003 but won't render in Access 2007, and gives the error message that there is a problem with the OnLoad event. The OnLoad event simply sets the focus to the first data entry field:
Does anyone have a clue why this simple command wouldn't work in Access 2007?
Thanks, Ruth
Code:
Private Sub Form_Load()
Me!Contract_Type.SetFocus
End Sub
Does anyone have a clue why this simple command wouldn't work in Access 2007?
Thanks, Ruth