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.
Private Sub Example()
Dim MyCtrl As Access.Control
For Each MyCtrl In Me.Controls
If MyCtrl.Name = "SomeTextbox" Then
'Format accordingly
ElseIf MyCtrl.Name Then
'Do something else
End If
Next MyCtrl
End Sub
Private Sub Example()
Dim MyCtrl As Access.Control
For lcounter = 1 To 6
For sCounter = 1 To 6
Set MyCtrl = Me.Controls("L" & lcounter & "S" & sCounter)
myctrl.left=A number
myctrl.Top=A number
Next lcounter
Next sCounter
End Sub