VB6.0如何锁定键盘和鼠标在textbox的输入

2024-11-29 09:44:41
推荐回答(1个)
回答1:

直接设置Text1的Locked属性为True,或者使用下面代码:

Text1.Locked = True

想要恢复输入就

Text1.Locked = False