La classe parente de chaque formulaire d'un programme.
PUBLIC SUB btnOpenForm1_Click()
DIM newform AS Form
' Ici un formulaire existant, créé dans l’ IDE , est déplacé sur l’écran
Form1.Show ' Active et affiche Form1 la première fois
WAIT 1.5
Form1.X = 20
Form1.Y = 200 ' déplace Form1
WAIT 1.5
Form1.X = 90
Form1.Y = 150 ' Le déplace encore
' Là un nouveau formulaire est affiché
newform = NEW Form
newform.x = 180
newform.Y = 180
newform.Caption = "Un autre formulaire créé "
newform.Show
END