vba: howto select a record like klicking on record selector

  • Thread starter Thread starter ## Benjamin Adnam ##
  • Start date Start date
B

## Benjamin Adnam ##

Hi,

i have a subform with lots of records and want to select a record using vba
like klicking on the record selector (right arrow) on the left side of each
record in the subform

how can i do this ?
 
thnx, in the meantime i've found out how to get it to work:

Me.fPLANsf.Form.SelLeft = 1
Me.fPLANsf.Form.SelWidth = 99
 
Back
Top