OK, the title prety much explains things, but for clarity:
I have a form ("Master Form") and a subform ("Basic Skills subform") displaying as a data sheet. The Master form is bound to a dynamic select query created by a set of filters in a separate switchboard style form. The subform is bound to the main data table with no filtration.
The purpose of the subform is to provide a "full view" of the primary data, and I would like to add the functionality to make the "Master Form" goto the record that is selected in the subform datasheet. This is less redundant than it sounds as there is other data from separate tables that is represented in the master form but not in the subform. Plus for data entry, it make things easier to have the data laid out in a form rather than a data sheet.
In my best attempt at making this work (best but not successful), I added the following to the ******* event in a textfield in the subform:
Any bright people out there who could help make this work?
I have a form ("Master Form") and a subform ("Basic Skills subform") displaying as a data sheet. The Master form is bound to a dynamic select query created by a set of filters in a separate switchboard style form. The subform is bound to the main data table with no filtration.
The purpose of the subform is to provide a "full view" of the primary data, and I would like to add the functionality to make the "Master Form" goto the record that is selected in the subform datasheet. This is less redundant than it sounds as there is other data from separate tables that is represented in the master form but not in the subform. Plus for data entry, it make things easier to have the data laid out in a form rather than a data sheet.
In my best attempt at making this work (best but not successful), I added the following to the ******* event in a textfield in the subform:
Code:
Private Sub CRN_Click()
With Me.Parent.RecordsetClone
.FindFirst "CRN = " & Me.CRN
Me.Parent.Bookmark = .Bookmark
End With
End Sub
Any bright people out there who could help make this work?