The following problem has me stumped: I have a WinForms application which used to work just fine. On Windows7 however, my MainForm's "Load"-event handler is never invoked. I tried Googleing a bit and found suggestions for checking if the Event was correctly connected to the handler (it was), and secondly to try overriding the OnLoad method. The OnLoad override was called once (i think, have been debugging substantially) and then no further. Why is the OnLoad override not called? And what could i try in order to fix this?
Best regards!
OnLoadmethod, you can place a breakpoint there and it must trigger. Also, don't forget to callbase.OnLoad()in your overridden method. I know that you said app has been working until now, but are you sure that you are instantiating the correct form? – Groo Oct 27 '10 at 8:23