Hi,
We just upgraded to Office 2003 and I’m trying to create a simple (well, not so simple, but the idea of it is basic) document with a single form. The following is the code that opens my form from a toolbar button:
Sub showMyForm()
Load frmUpdate
frmUpdate.Show
End Sub
For some odd reason, I periodically get runtime error 5825 (Object has been deleted). The de###### highlights the Load line. The form is there, though, hasn’t been moved since the second before when it opened properly. Usually saving and re-opening the template will get rid of the error, but this time it doesn’t seem to want to.
Has anyone seen this before? Is it new to 2003? How do I fix it?