LISTVIEW UPDATE

User avatar
sal21
PlatinumLounger
Posts: 4355
Joined: 26 Apr 2010, 17:36

LISTVIEW UPDATE

Post by sal21 »

i have L is the number of row.

Now i need to update the first column with "ok", second column with "1234", eccc...in row based L...

Perph im stupid.
Sorry

User avatar
HansV
Administrator
Posts: 78483
Joined: 16 Jan 2010, 00:14
Status: Microsoft MVP
Location: Wageningen, The Netherlands

Re: LISTVIEW UPDATE

Post by HansV »

Code: Select all

    With Me.ListView1.ListItems(L)
        .Text = "ok"
        .ListSubItems(1).Text = "1234"
        ' etc.
    End With
Best wishes,
Hans