文本框限制错误Excel VBA

时间:2016-02-10 04:49:13

标签: excel excel-vba vba

如果文本框为空,我按退格键会崩溃并突出显示行

  

TB1 =左(TB1,Len(TB1)-1)

我可以改变什么来阻止崩溃

Private Sub TB1_Change()
Dim strStrings As String, LastLetter As String
Application.EnableEvents = False
LastLetter = Right(TB1, 1)
strStrings = ","
If InStr(1, strStrings, LastLetter) > 0 Then
    MsgBox LastLetter & " not allowed"
    TB1 = Left(TB1, Len(TB1) - 1)
End If
Application.EnableEvents = True

End Sub

这是一个文本框,其中","是受限制的。

1 个答案:

答案 0 :(得分:6)

使用以下子目录。

seat_item_type