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?
Jared - 27 Jun 2006 02:40 GMT
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)
Jared - 27 Jun 2006 04:54 GMT
Had item1.Text = "" (null)
Found the problem
Jared - 27 Jun 2006 07:49 GMT
Still had problems now trying API
http://www.devx.com/vb2themax/Tip/19271
Jared - 28 Jun 2006 01:16 GMT
Finally worked out.. TopItem property has 2 be called twice or it may not
work