Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim xTxt as Object
For Each xTxt in Me.Controls
If TypeOf xTxt is TextBox Then
If xTxt.TabIndex = xxx Then
Return xTxt
Exit For
End If
End If
Next
dim xTxt as textbox
for each xTxt in me.controls
If xTxt.TabIndex = xxx Then
Return xTxt
Exit For
End If
Next
too little beer along with too much sun this weekend
For Each xTxt in Me.Controls
[blue]If Not xTxt Is Nothing Then[/blue]
If TypeOf xTxt is TextBox Then
If xTxt.TabIndex = xxx Then
Return xTxt
Exit For
End If
End If
End If
Next
For Each xTxt as Control in Me.Controls
If TypeOf xTxt Is TextBox Then
If xTxt.TabIndex = xxx Then
Return xTxt
Exit For
End If
End If
End If