如何验证多个用户表单文本框?

时间:2021-03-25 15:32:06

标签: excel vba userform

我有一个包含用户表单的工作簿,可以写入多个数字和日期字段。我需要验证文本框控件的正确数字和日期。

与其复制每个文本框的验证,我想我会在每个文本框的 BeforeUpdae 事件中调用一个公共子过程。

我有两个问题。

  1. 如果我执行表单并使用 tbAmount 框中的文本进行测试,似乎没有调用 ContolValidate 过程。
    如果我在中断模式下运行它并在 Call ContolValidate(What, CurrentControl) 上设置断点,它将逐步执行该过程。

  2. 即使它逐步执行该过程,Cancel = True 似乎也不起作用。
    如果我将 ContolValidate 代码直接粘贴到 BeforeUpdate 中,Cancel = True 确实有效。

此代码都在用户表单上。

Private Sub tbAmount1_BeforeUpdate(ByVal Cancel As MSForms.ReturnBoolean)
    Dim What As String
    Dim CurrentControl As Control

    What = "NumericField"
    Set CurrentControl = Me.ActiveControl
    Call ContolValidate(What, CurrentControl)
End Sub

Private Sub ContolValidate(What, CurrentControl)
    If Not IsNumeric(CurrentControl.Value) Then
        ErrorLabel.Caption = "Please correct this entry to be numeric."
        Cancel = True
        CurrentControl.BackColor = rgbPink
        CurrentControl.SelStart = 0
        CurrentControl.SelLength = Len(CurrentControl.Value)
    Else
        If CurrentControl.Value < 0 Then
            ErrorLabel.Caption = "This number cannot be negative."
            Cancel = True
            CurrentControl.BackColor = rgbPink
            CurrentControl.SelStart = 0
            CurrentControl.SelLength = Len(CurrentControl.Value)
        End If
    End If
End Sub

Private Sub tbAmount1_AfterUpdate()
    ErrorLabel.Visible = False
    tbAmount1.BackColor = Me.BackColor
End Sub

1 个答案:

答案 0 :(得分:1)

(1) 当您的控件名为 tbAmount1 并且代码位于表单的代码隐藏模块中时,触发器应触发。

(2) 正如@shahkalpesh 在他的评论中提到的,Cancel 在您的验证例程中是未知的。将 Option Explicit 放在代码顶部会告诉你。
我建议将例程转换为函数。在下面的代码中,如果内容正常,我返回 True,否则返回 False(因此您需要在结果中添加 Not 以设置 Cancel 参数)

Private Sub tbAmount1_BeforeUpdate(ByVal Cancel As MSForms.ReturnBoolean)
    Cancel = Not ControlValidate("NumericField", Me.ActiveControl)
End Sub

Private Function ControlValidate(What, CurrentControl) As Boolean
    ControlValidate = False

    If Not IsNumeric(CurrentControl.Value) Then
        errorlabel.Caption = "Please correct this entry to be numeric."
    ElseIf CurrentControl.Value < 0 Then
        errorlabel.Caption = "This number cannot be negative."
    Else
        ControlValidate = True   ' Input is okay.
    End If
    
    If ControlValidate Then
        CurrentControl.BackColor = vbWhite
    Else
        CurrentControl.BackColor = rgbPink
        CurrentControl.SelStart = 0
        CurrentControl.SelLength = Len(CurrentControl.Value)
    End If
End Function

P.S.:我把名字改成了 ControlValidate - “contol”在我看来是错误的...