防止在文本框中输入空格

发布于 2024-09-30 07:28:16 字数 56 浏览 4 评论 0原文

在 VBA 中有一个文本框,并且不希望用户能够在其中键入空格,我可以阻止用户通过编程执行此操作吗?

Got a textbox in VBA and dont want the usser to be able to type spaces in it can i prevent the usser from doing this with programing?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

三人与歌 2024-10-07 07:28:16

处理 keypress/change 事件,检查" " 然后设置为 string.empty。

或者在输入数据后使用 string.replace(" ", string.empty)

Handle the keypress/change event, check for " " then set to string.empty.

Alternativly use string.replace(" ", string.empty) after the data has been entered

独夜无伴 2024-10-07 07:28:16
' Disable Space in TextBox
Private Sub Text1_KeyPress(KeyAscii As Integer)
    If KeyAscii = 32 Then
        KeyAscii = 0
    End If
End Sub 

http://www.vbforums.com/showthread.php?t=447978

来自谷歌:D

' Disable Space in TextBox
Private Sub Text1_KeyPress(KeyAscii As Integer)
    If KeyAscii = 32 Then
        KeyAscii = 0
    End If
End Sub 

http://www.vbforums.com/showthread.php?t=447978

From google :D

猥︴琐丶欲为 2024-10-07 07:28:16

也许将帮助您:

您可以允许/禁止KeyPress事件中的特定按钮

Private Sub TextBox1_KeyPress(KeyAscii As Integer)
  Select Case KeyAscii
    Case asc("0") To asc("9"), 8, 32, asc(",")
      'allow signs
    Case Else
       KeyAscii = 0 'forbid everything else
  End Select
End Sub

注意:此示例仅允许输入数字。您需要根据您的情况进行调整。

这是另一个页面,其中包含几乎相同的示例,但是英文的:LINK

Maybe this will help you:

You can allow/disallow specific buttons in the KeyPress-Event

Private Sub TextBox1_KeyPress(KeyAscii As Integer)
  Select Case KeyAscii
    Case asc("0") To asc("9"), 8, 32, asc(",")
      'allow signs
    Case Else
       KeyAscii = 0 'forbid everything else
  End Select
End Sub

NOTE: This example allows only numbers to be entered. You need to adapt it for your case.

Here is another page with nearly the same example but in english: LINK

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文