Save_InButtonOverride

MainHandling
This commit is contained in:
2020-12-18 09:05:51 +01:00
parent a81f6dba11
commit e326a7b660
3 changed files with 31 additions and 16 deletions

View File

@@ -86,11 +86,11 @@ Public Class ClassInit
CONNECTION_STRING_READ = CONNECTION_STRING
End If
If CONFIG.Config.AppServerConfig <> String.Empty Then
If CONFIG.Config.EDMIAppServer <> String.Empty Then
Try
Dim oSplit() = CONFIG.Config.AppServerConfig.ToString.Split(";")
Dim oSplit() = CONFIG.Config.EDMIAppServer.ToString.Split(";")
Dim oAppServer = oSplit(0)
Dim oAppServerPort = 9000
If oSplit.Length = 2 Then
@@ -99,7 +99,7 @@ Public Class ClassInit
_Client = New Client(LOGCONFIG, oAppServer, oAppServerPort)
If Not IsNothing(_Client) Then
If _Client.Connect() Then
APPSERVER_ACTIVE = True
EDMIAppServerActive = True
End If
End If