This commit is contained in:
2022-05-20 11:26:03 +02:00
parent 90e31c01b5
commit a0f99ba5a4
21 changed files with 432 additions and 228 deletions

View File

@@ -589,11 +589,11 @@ Public Class frmAdmin_Globix
Private Sub SimpleButton4_Click(sender As Object, e As EventArgs) Handles SimpleButton4.Click
Try
If Regex.IsMatch(REGEXTextBox.Text, txtDateinameTest.Text) Then
Dim oMsgBox As New Dialog1("The RegEx resulted in a proper match!", "", False)
Dim oMsgBox As New frmDialog("The RegEx resulted in a proper match!", "", False)
oMsgBox.ShowDialog()
Else
Dim oMsgBox As New Dialog1("No Match- There might be an error in the RegEx!", "", True)
Dim oMsgBox As New frmDialog("No Match- There might be an error in the RegEx!", "", True)
oMsgBox.ShowDialog()
End If