This commit is contained in:
2024-05-06 13:38:52 +02:00
parent 8a9bdc2fcd
commit ae4032ea59
39 changed files with 8034 additions and 9053 deletions

View File

@@ -20,9 +20,14 @@
Private Sub SimpleButton1_Click(sender As Object, e As EventArgs) Handles btnOK.Click
Try
Dim oSelectedNodeConfig As NodeConfig = cmbNodeConfig.EditValue
Id = oSelectedNodeConfig.Id
Title = TextEdit1.EditValue
DialogResult = DialogResult.OK
If Not IsNothing(oSelectedNodeConfig) Then
Id = oSelectedNodeConfig.Id
Title = TextEdit1.EditValue
DialogResult = DialogResult.OK
Else
End If
Catch ex As Exception
End Try
End Sub