Home > Language Reference > Classes > Application

NormalLaunch Event

Normal application launch.

Syntax

Protected Event NormalLaunch()

Remarks

This event signals a normal launch of your application. Typically, this occurs when the user clicks on your application icon in the Launcher application.

When this event is received, you should initialize your application and open its main form. The Samples contain numerous example of handlers for this event. A short procedure could be as follows:

Private Sub Application_NormalLaunch()
  Dim f as New frmMain
  f.Show hbFormModeless+hbFormGoto
End Sub

System requirements

SystemMinimal versionRemarks
Palm OSPalm OS 3.0N/A