Form_Load()
Posted by Geoff on June 26, 2000 5:02 AM
Using VBA in Excel 97, I haven't had much luck getting Form_Load() to run when a form is loaded. Here is an exact copy of my code (copy/pasted):
Private Sub Form_Load()
Flow = False
BackPress = False
Cancelled = False
Label3.Caption = "Known: , Calculate:"
End Sub
And it is not getting invoked when the form is loaded. I use the lines (copy/pasted):
Load frm3PASS_LIB
frm3PASS_LIB.Show
to load the form. Perhaps Form_Load() doesn't apply to VBA, only VB? If someone knows, please let me know. Thanks in advance.