Programatically highlihting row in subform (datasheet)

G

Guest

Can anyone tell me how I can programatically highlight the current record in
a subform - datasheet view... As if I had clicked on the record selector on
the left-hand side of then subform.
 
G

Guest

This question was answered in another section of the forum... Incase anyone
is interested:


MAIN_FORM (fm_Listing_mf) code snippet
--------------------------------------
Private sub Button_Click()

Me.fm_Listing_sf.SetFocus
Form_fm_Listing_sf.HighlightCurrentRecord

' Your code here

End Sub



SUB_FORM (fm_Listing_sf) code snippet
-------------------------------------
Public Sub HighlightCurrentRecord()

DoCmd.RunCommand acCmdSelectRecord

End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top