Startup Procedure

Hi All,

Here is how to use AppicationEvent.vb

[b]ApplicationEvents.vb[/b]
Namespace My 
    Class MyApplication 
        Public Variable As String 
    End Class 
End Namespace 

[b]FormMain.vb[/b] 
Public Class FormMain 
    Private Sub FormMain_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load 
          My.Application.Variable = "blabla" 
    End Sub 
End Class