View Single Post
  #1 (permalink)  
Old 08-13-2008, 04:07 PM
Byak@'s Avatar
Byak@ Byak@ is offline
Senior Member
 
Join Date: Jul 2008
Posts: 139
Send a message via ICQ to Byak@
Unhappy formlib.fullscreen(false) doesn't work

Code:
Sub Globals
f=0
End Sub

Sub App_Start
flib.New1("form1",B4PObject(1))
 Form1.show
End Sub

Sub Button1_Click
If f=0 Then
flib.FullScreen(true)
f=1
Else
flib.FullScreen(false)
End If
End Sub
flib.FullScreen(false) doesn't return titles...why?
Reply With Quote