Hi everyone, I'm trying the latest version of B4J. I created a form with a button. But when running the program there is only a blank form. I also make sure that I'm calling the correct layout... Am I missing something?
Thanks in advance,
microbox
B4X:
#Region Project Attributes
#MainFormWidth: 400
#MainFormHeight: 400
#End Region
Sub Process_Globals
Private fx As JFX
Private MainForm As Form
Private btnmsg As Button
End Sub
Sub AppStart (Form1 As Form, Args() As String)
MainForm = Form1
MainForm.SetFormStyle("UNIFIED")
MainForm.RootPane.LoadLayout("Layout1")
MainForm.Show
Thanks in advance,
microbox