F
Frank Situmorang
Hello,
This is my VBA to go directly to the record/ Minutes of meeting no found by
Combo, it already works, but since I have the Meeting date as a mother and
the Minutes of meeting report as child report, I still have to scroll down to
go to the Minutes of Meeting No on the Child. Is there any way to have it
showed up or the decision number is highlighted when we run the combo to find
it?
Private Sub Combo20_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[No_KEP] = '" & Me![Combo20] & "'"
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub
Thanks in advance
Frank
This is my VBA to go directly to the record/ Minutes of meeting no found by
Combo, it already works, but since I have the Meeting date as a mother and
the Minutes of meeting report as child report, I still have to scroll down to
go to the Minutes of Meeting No on the Child. Is there any way to have it
showed up or the decision number is highlighted when we run the combo to find
it?
Private Sub Combo20_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[No_KEP] = '" & Me![Combo20] & "'"
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub
Thanks in advance
Frank