防止在文本框中输入空格
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
处理 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
http://www.vbforums.com/showthread.php?t=447978
来自谷歌:D
http://www.vbforums.com/showthread.php?t=447978
From google :D
也许这将帮助您:
您可以允许/禁止KeyPress事件中的特定按钮
注意:此示例仅允许输入数字。您需要根据您的情况进行调整。
这是另一个页面,其中包含几乎相同的示例,但是英文的:LINK
Maybe this will help you:
You can allow/disallow specific buttons in the KeyPress-Event
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