the Application_OnStart Event doesnt fire for me.
Am I missing something obvious? :rolleyes:
tailz
Printable View
the Application_OnStart Event doesnt fire for me.
Am I missing something obvious? :rolleyes:
tailz
you can select that from the overides list, if you use OnEnter it wont return a messagebox , you need Protected Overrides Sub OnLoad.Code:Protected Overrides Sub OnLoad(ByVal e As System.EventArgs)
MessageBox.Show("i have just been loaded", Application.ProductName, MessageBoxButtons.OK, MessageBoxIcon.Information)
End Sub
thanks, but what about the application_onstart event in the global.asax file? :confused:
Does it not fire for good reason? Do I have to press an 'on' button? :D
tailz