list view (1 Viewer)

24sharon

Registered User.
Local time
Today, 00:47
Joined
Oct 5, 2004
Messages
147
I have a list view in my form

I add new rows in the list view by code

here is my code:

Code:
 ListView.HideColumnHeaders = True
    
    With ListView.ListItems
        .Add , , name_book, , 1
        .Add , , name_pupil, , 3
        .Add , , MAX_DATE, , 4
        .Add , , KAT, , 5
         .Add , , "__________________________"

    End With

my problem is that when i add more value, the new value add at the bottom of the list view that I cant see it just have to use the scroller.

is it possible to add new value but to see it on the top, that in the list view I see the new value and to see the old value I use the scrollers.

thanks!
 

24sharon

Registered User.
Local time
Today, 00:47
Joined
Oct 5, 2004
Messages
147
I try to attach file.

maybe now some one can help me.

my problem again that I want the new value in the windows and the old value down.

thanks!
 

Attachments

  • db1.zip
    9.3 KB · Views: 119

Users who are viewing this thread

Top Bottom