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.
[color blue]Private Sub cboName_AfterUpdate()
[color green]'Moves Record Selector to record in subform that corresponds to the 'selection in this combo box.[/color]
Dim varName As Integer
varName = Me.cboName.Column(0)
With Me.subformName.Form
.RecordsetClone.FindFirst "FieldName = " & varName
If Not .RecordsetClone.NoMatch Then
.Bookmark = .RecordsetClone.Bookmark
End If
End With
End Sub[/color]