VB-TabIndex、GotFocus、SetFocus

1、tabIndex

tabIndex是 设置 窗体中 对象 响应 tab 键 的顺序值

例如 :有3个 文本框
text1 的tabIndex 为 2
text2 的tabIndex 为 1
text3 的tabIndex 为 0,
运行程序,焦点首先落在 text3里,按 tab键 光标会跑到text2,再按一次才会跑到text1

2、GotFocus
是事件,当焦点进入文本框里触发该事件.

3、SetFocus
是方法,该方法把输入光标(焦点)移动指定的文本框中.

例子:
private sub command1_click()
if(text1.text=text2.text) then
text3.setfocus
end if
end sub

private sub text3_getfocus()
text3.text=””
end sub

你可能感兴趣的:(VB)