Hi
I try my first b4j program but i always get a message as attached image file.
this message tell me it couldn't found my controller "jinyistudio.controller".
My form just have one botton inside.
I try my first b4j program but i always get a message as attached image file.
this message tell me it couldn't found my controller "jinyistudio.controller".
My form just have one botton inside.
B4X:
#Region Project Attributes
#MainFormWidth: 600
#MainFormHeight: 400
#End Region
#AdditionalJar:j2mod-1.06
Sub Process_Globals
Private fx As JFX
Private MainForm As Form
Private button1 As Button
End Sub
Sub AppStart (Form1 As Form, Args() As String)
MainForm = Form1
MainForm.SetFormStyle("UNIFIED")
MainForm.RootPane.LoadLayout("test1") 'Load the layout file.
MainForm.Show
End Sub
Sub button1_Action
End Sub