scrollbar

  • Thread starter Thread starter yalpsid
  • Start date Start date
Y

yalpsid

I'm having a form containing a subform called "child". This child is filled
with a recordset and has a vertical scrollbar. When scrolling, I get the
tooltip information about the record number currently displayed on top of the
child. Is there a way to get that information programmatically. I'd need to
store the number of the currently displayed record...
Thanks a lot for your help
 
"store the number of the currently displayed record."

it would be useless to store it -- as the index will change depending on
how the data is sorted ...

what you are looking for can be found in VBA with Me.CurrentRecord ...
but, as its name indicates, it will only return the index of the current
record -- not the distance from the top of the recordset...


Warm Regards,
Crystal
remote programming and training

Video Tutorials on YouTube!
http://www.youtube.com/user/LearnAccessByCrystal

Access Basics
8-part free tutorial that covers essentials in Access
http://www.AccessMVP.com/strive4peace

*
(: have an awesome day :)
*
 
Back
Top