I've created a WinForms applicaiton with several forms. A couple of days
ago, some of the forms' load events stopped firing. Now, all of the load
events aren't firing. I've heard there is code that tells the event to
happen. Does anyone know what that code is supposed to be or where its
supposed to reside?
I've worked around the problem by moving the code to the form's Activated
event. I added a module-level boolean variable and then wrap the code in
the Actived event with
If mblnAlreadyRan = False then
'place code here
End If
mblnAlreadyRan = True
so it will only run once, but I think this is kinda cheesy and would like
to know if there is a fix for the Load event.
Thanks.