Private Sub Text1_KeyPress(KeyAscii As Integer) 什么意思

PrivateSubText1_KeyPress(KeyAsciiAsInteger)IfKeyAscii=13ThenCommand1_ClickEndIfEndSub... Private Sub Text1_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
Command1_Click
End If
End Sub
Private Sub dataCombo1_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
Command1_Click
End If
End Sub
Private Sub Text1_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
Command1_Click
End If
End Sub
Private Sub dataCombo1_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then
Command1_Click
End If
End Sub
这些代码是什么意思
展开
 我来答
lwy051215
推荐于2018-03-14 · TA获得超过754个赞
知道小有建树答主
回答量:508
采纳率:73%
帮助的人:162万
展开全部
Private Sub dataCombo1_KeyPress(KeyAscii As Integer)
.....Private Sub:一个私有的过程
.....dataCombo1_KeyPress:控件dataCombo1的KeyPress事件(按下键盘)
.....KeyAscii As Integer:按下那个键的Ascii码的值,返回值为整数
If KeyAscii = 13 Then
.....如果KeyAscii 的值为13(13是回车键的Ascii码)则(也就是如果按下的键是回车键)
Command1_Click
.....呼叫按钮控件Command1的Click(单击)事件
End If
.....条件结束
End Sub
.....过程结束
来自:求助得到的回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式