Jonathan Scott via AccessMonster.com said:
Is it possible to select a record in a subform, programmatically? Finding
which one is selected is the simple part; but how to actually select one?
Jonathan Scott
I guess a bit more info is needed here. Do you actualy want to do somting
with that reocrd, or do you want to move the reocrd pointer to a particlar
reocrd?
If there was 6 sub-form reocrds, and you wanted to select the 2 reocrd, then
you could in a buttion on the main form go:
dim f as form
set f = me.MySubFormContorlName.Form
f.ReocrdSetClone.AbsolutePosition = 1
f.bookmark = f.RecordSetClone.BookMark
Do note that absoluteposition is zero based. So, you can move to whatever
reocrd you want in the sub-form....