Valhalla Legends Forums Archive | Visual Basic Programming | ListView Help

AuthorMessageTime
sPlOrYgOn
I was wondering :-\ how to :P put stuff in :'( other columns using :o listview ;D
July 27, 2003, 2:35 AM
DrivE
You could start by using "Search" and seeing if this question has already been answered. Then you could not put all those smilies in your posts. You seem to have followed a few of the points mentioned in the "Tips For Getting Help Here" thread.

!~!HaZaRD!~!
July 27, 2003, 2:49 AM
CrAz3D
maybe add columns & then ListView1.ListItems.Add , , , , ....... (use commas to place w/e where ever)
July 27, 2003, 3:18 AM
BoBBaGe
umm making columns right click on the listview and go to properties then go to column headers and make the headers?

thats just making columns, im pretty new to vb dont know alot of the other stuff
August 17, 2003, 2:12 AM
Camel
Look at the date on the post BoBBaGe!
August 17, 2003, 5:34 AM
BoBBaGe
wat if i dont wanna, YOU CANT MAKE ME
August 17, 2003, 10:24 PM
warz
Lets say you have 2 rows, and several columns in your listview, and want to set some text in each of them. No worries, it's simple.

Sets the first cell on the first row to something.
[code]
.ListItems(1).Text = varAccount(0)
[/code]

Sets the second cell on the first row to something.
[code]
.ListItems(1).ListSubItems(1).Text = "Initializing..."
[/code]

Third cell...
[code]
.ListItems(1).ListSubItems(2).Text = "0-0-0"
[/code]

...and so on. How about the second row?
[code]
.ListItems(2).Text = varAccount(1)
[/code]

Simple enough, right? That was pulled from http://tks.slacktech.com/source/vb/SoupBotWinBot.zip .
August 18, 2003, 2:08 AM

Search