Added regex validation and help for issue #98

This commit is contained in:
MikeMaximus
2018-02-06 09:40:57 -06:00
parent 66d280df49
commit e7b3f809f1
6 changed files with 46 additions and 6 deletions
+1 -1
View File
@@ -245,7 +245,7 @@ Partial Class frmGameManager
'lblLimit
'
Me.lblLimit.AutoSize = True
Me.lblLimit.Location = New System.Drawing.Point(376, 160)
Me.lblLimit.Location = New System.Drawing.Point(376, 157)
Me.lblLimit.Name = "lblLimit"
Me.lblLimit.Size = New System.Drawing.Size(68, 13)
Me.lblLimit.TabIndex = 17
+9
View File
@@ -1311,6 +1311,15 @@ Public Class frmGameManager
End If
End If
If oApp.IsRegEx Then
If Not mgrCommon.IsRegExValid(oApp.ProcessName) Then
If mgrCommon.ShowMessage(frmGameManager_ErrorRegExFailure, MsgBoxStyle.Exclamation, MsgBoxStyle.YesNoCancel) = MsgBoxResult.Yes Then
Process.Start(mgrCommon.FormatString(AppURL_RegExr, oApp.ProcessName))
End If
Return False
End If
End If
Return True
End Function