This commit is contained in:
2022-04-28 16:27:55 +02:00
parent abc4d664a0
commit b8a3325c2f
12 changed files with 635 additions and 111 deletions

View File

@@ -19,11 +19,13 @@ Public Class frmServiceConfig
txtServiceAddress.Text = oAddress.Item1
txtServicePort.Text = oAddress.Item2
End If
If My.Application.Service.Client.IsOnline Then
txtStatus.Text = STATUS_CONNECTED
If Not IsNothing(My.Application.Service.Client) Then
If My.Application.Service.Client.IsOnline Then
txtStatus.Text = STATUS_CONNECTED
End If
End If
txtServiceAddress.Focus()
End Sub