Sub Process_Globals
Private fx As JFX
Private MainForm As Form
Dim jc As jCompiler ' include the library jCompiler (for java 8) not jCompiler7
End Sub
Sub AppStart (Form1 As Form, Args() As String)
MainForm = Form1
MainForm.SetFormStyle("UNIFIED")
'MainForm.RootPane.LoadLayout("Layout1") 'Load the layout file.
MainForm.Show
jc.loadTheClass("sock2air","classes/") ' this is a folder off of Objects folder eg, Objects/classes
Log(jc.listMethods("sock2air")) ' to prove class is loaded
'jc.run2("main",Array("params","For","routine")) ' example call
End Sub