Ok this is driving me batty I have the following Form_Load():
Private Sub Form_Load()
On Error GoTo LoadError
DoCmd.Maximize
LoadError:
MsgBox "Error : " & Err.Number & vbCrLf & Err.Description
End Sub
and I keep getting Error : 0
Yet I can't find anything refering to an error # 0.....
Can anyone give me some insight to this???
Richard
Private Sub Form_Load()
On Error GoTo LoadError
DoCmd.Maximize
LoadError:
MsgBox "Error : " & Err.Number & vbCrLf & Err.Description
End Sub
and I keep getting Error : 0
Yet I can't find anything refering to an error # 0.....
Can anyone give me some insight to this???
Richard