On MY PPC (ipaq 2490), I repeat Fullscreen(false) has no action
That is very strange because on my Axim X30 it behaves exactly as I said and as documented in the help. The code inside Formlib looks like this
Public Sub FullScreen(ByVal RemoveTitle As Boolean)
Me.frm.Menu = Nothing
If RemoveTitle Then
Me.frm.MaximizeBox = False
Me.frm.MinimizeBox = False
Me.frm.ControlBox = False
Me.frm.FormBorderStyle = FormBorderStyle.None
Me.frm.WindowState = FormWindowState.Maximized
End If
End Sub
I notice that your device is probably running WM 5.0 whereas mine runs 2003SE. It look as though removing the menu on WM 5.0 may also remove everything else as well whereas it doesn't on 2003SE. This code also explains why you can't get back from full screen. Once the menu reference is set to Nothing then a menu object would need to be rebuilt and the information isn't readily availabe in B4PPC to to this.