ListView.TopItem

  • Thread starter Thread starter Jared
  • Start date Start date
J

Jared

Hi,

I am manualling setting a TopItem, for most of my listview grids this works
fine, but for one it will not work?

What would cause TopItem property to be ignored on a set?
 
Basically TopItem acts like EnsureVisible and is not activated unless item
is not visible so work around look like this..


Me.lvTotals.TopItem = Me.lvTotals.Items(Me.lvTotals.Items.Count - 1)
Me.lvTotals.TopItem = Me.lvTotals.Items(4)
 
Back
Top