Full Screen Opt Compilation?

cdeane

Member
How do I get full screen in Optimized Compilation?
This is the Code I use now:

Sub App_Start
Form1.Show
flib.new1("form1",B4PObject(0))
flib.fullscreen(CPPC)
End Sub
 

cdeane

Member
It seems to have me stuck. It reverts me back to the editor, with no progress in the editor mode.
 

cdeane

Member
Sorry,
My Bad.
I guess it would help if I loaded the form Im using.
 

mamuen

Member
Licensed User
menu

Hi,

i want to hide the title but not the menu. I tried the following:

FormLib1.FullScreen2(true,true)
->menu removed
->title removed

FormLib1.FullScreen2(true,false)
->menu removed
->title not removed

FormLib1.FullScreen2(false,true)
->menu not removed
->title not removed ?????????

If this can explain to me somebody?
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
Full screen without a menu bar is only supported on .Net CF 2.0.
Once you compiled your application with the optimized compiler the title will disappear.
I've attached an example.
B4X:
Sub Globals

End Sub

Sub App_Start
 Form1.show
 f.New1("form1",B4PObject(1))
 f.FullScreen2(false,true)
End Sub

Sub Button1_Click
    AppClose
End Sub
 

Attachments

  • FormLib.zip
    14 KB · Views: 190
Top