I have a question for you (or anyone)
the code you suggested above - it works for me in other programs. But one that i am workin on now, none of the [On Error Goto ...] statments work. I keep getting errors that they are not defined, or are not the same name as the event and yet they are!
example:
Private Sub Form_Load ()
On Error GoTo Err_Form_Load
DoCmd.Maximize
Me.EditPage.Enabled = False
Me.TreeView1.Font.Name = "Verdana"
Me.TreeView1.Font.Size = "9"
Exit_Form_Load:
End Sub
Err_Form_Load:
MsgBox Err.Description
Resume Exit_Form_Load
End Sub
like i said this code works in other programs but will not work at all in this one!!! but nothing is different.
any help would be appreciated
- Topher