Version, 8 Spalten, Icon variabel

This commit is contained in:
2020-12-15 17:32:10 +01:00
parent 8b1d519992
commit 1c6d3f3e93
25 changed files with 631 additions and 501 deletions

View File

@@ -70,8 +70,16 @@ Public Class ClassInit
End If
If CONFIG.Config.AppServerConfig <> String.Empty Then
Try
_Client = New Client(LOGCONFIG, CONFIG.Config.AppServerConfig, 9000)
Dim oSplit() = CONFIG.Config.AppServerConfig.ToString.Split(";")
Dim oAppServer = oSplit(0)
Dim oAppServerPort = 9000
If oSplit.Length = 2 Then
oAppServerPort = oSplit(1)
End If
_Client = New Client(LOGCONFIG, oAppServer, oAppServerPort)
If Not IsNothing(_Client) Then
If _Client.Connect() Then
APPSERVER_ACTIVE = True