In this example, threepagesexample three forms are shown
I would like to omit the titlebar in all of them but I can only do it on the main one by inserting the command in the MAIN module:
MainForm.SetFormStyle("TRANSPARENT") ' <====inserted
How can I do to obtain the same result in others?
I would like to omit the titlebar in all of them but I can only do it on the main one by inserting the command in the MAIN module:
MainForm.SetFormStyle("TRANSPARENT") ' <====inserted
How can I do to obtain the same result in others?
Main modificato:
Sub AppStart (Form1 As Form, Args() As String)
MainForm = Form1
MainForm.SetFormStyle("TRANSPARENT") ' <====inserted
MainForm.Show
Dim PagesManager As B4XPagesManager
PagesManager.Initialize(MainForm)
End Sub