From the help:
FullScreen2 method removes the menu bar and/or the title bar.
Syntax: FullScreen2 (RemoveMenu As Boolean, RemoveTitle As Boolean)
The first binary variable, if true, removes the menu bar.
The second binary variable, if true, removes the title line.
You should use:
Code:
Sub Form1_Show
flb.New1("Form1",B4PObject(1))
If CPPC Then
flb.FullScreen2(false,true)
End If
End Sub
Best regards