April 2006
Beginner
1114 pages
98h 16m
English
control.TabIndex [= setting]
Sets or returns the position of the control in the tab order. Must be a positive whole number. The following code makes TextBox1 the first control in the tab order and gives that control focus when the form is first displayed:
Private Sub UserForm_Initialize( )
TextBox1.TabIndex = 0
End SubRead now
Unlock full access