vb中设置一段关于输入一段密码,按回车显示内容的代码,回车怎么表示?
4个回答
2013-09-25
展开全部
'''窗体需要一个textbox
Private Sub Text1_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then MsgBox Text1.Text '文本框是没value这个属性的,回车的ascii码为13
'这里也可以用If KeyAscii = vbKeyReturn Then 来判断
End Sub
Private Sub Text1_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then MsgBox Text1.Text '文本框是没value这个属性的,回车的ascii码为13
'这里也可以用If KeyAscii = vbKeyReturn Then 来判断
End Sub
2013-09-25
展开全部
Private Sub txtPWD_KeyDown(KeyCode As Integer, Shift As Integer)'KeyDown为键盘按下事件
If KeyCode = 13 Then'13为回车键
MsgBox txtPWS.Value
End If
End Sub
If KeyCode = 13 Then'13为回车键
MsgBox txtPWS.Value
End If
End Sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-09-25
展开全部
Private sub Form_load()
text1.passwordchar="*"
Private Sub Text1_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then text1.passwordchar=""
End Sub
text1.passwordchar="*"
Private Sub Text1_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then text1.passwordchar=""
End Sub
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-09-25
展开全部
CHR(13)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询