D
Darrin
Private Sub List25_Click()
' Find the record that matches the control.
Me.RecordsetClone.FindFirst "[room]= '" & Me![List25] & "'"
Me.Bookmark = Me.RecordsetClone.Bookmark
End Sub
This is the code that I am using now to select records from a list box that
is pulling selected records from the main table. The problem I am having is I
can not figure out how to pull focus on [room] and an additional field
[building]. The above code works for selecting the records by [room] but I
can not make it change by the [building]
' Find the record that matches the control.
Me.RecordsetClone.FindFirst "[room]= '" & Me![List25] & "'"
Me.Bookmark = Me.RecordsetClone.Bookmark
End Sub
This is the code that I am using now to select records from a list box that
is pulling selected records from the main table. The problem I am having is I
can not figure out how to pull focus on [room] and an additional field
[building]. The above code works for selecting the records by [room] but I
can not make it change by the [building]