'Non-UI application (console / server application)
#Region Project Attributes
#CommandLineArgs:
#MergeLibraries: True
#End Region
Sub Process_Globals
Private xl As XLUtils
End Sub
Sub AppStart (Args() As String)
CreateWorkBook2
StartMessageLoop 'non-ui app
End Sub
Sub CreateWorkBook2 As ResumableSub
Dim wb As PoiWorkbook
If File.Exists(File.DirApp,"B4J Excel.xlsx") Then
wb.InitializeExisting(File.DirApp,"","B4J Excel.xlsx",False)
End If
StopMessageLoop 'non-ui
End Sub