|
-
Jan 28th, 2000, 07:48 AM
#1
Thread Starter
Hyperactive Member
How can I read something in another column than number 1?
ListView1.Selected.Text gives me what's written in the first column...
Does anyone know how I can find ut what's inside the second and third?
-
Jan 28th, 2000, 08:11 AM
#2
Member
ListView1.SelectedItem.ListSubItems(1).Text
Joon
-
Jan 28th, 2000, 08:13 AM
#3
Hyperactive Member
try :
Text1 = ListView1.SelectedItem.SubItems(1)
in a form with a listview and a textbox , this will put what ever in the second column
in the textbox ... to read the third column :
Text1 = ListView1.SelectedItem.SubItems(2)
etc ...
------------------
- regards -
- razzaj -
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|