• Welcome to Valhalla Legends Archive.
 

ListView Help

Started by sPlOrYgOn, July 26, 2003, 09:35 PM

Previous topic - Next topic

sPlOrYgOn

I was wondering :-\ how to  :P put stuff in  :'( other columns using  :o listview  ;D

Hazard

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!~!

"Courage is being scared to death - but saddling up anyway." --John Wayne

CrAz3D

maybe add columns & then ListView1.ListItems.Add , , , , ....... (use commas to place w/e where ever)
rebundance - having or being in excess of sheer stupidity
(ré-bun-dance)
Quote from: Spht on June 22, 2004, 07:32 PMSlap.
Quote from: Adron on January 28, 2005, 09:17 AMIn a way, I believe that religion is inherently evil, which includes Christianity. I'd also say Christianity is eviller than Buddhism (has more potential for evil).
Quote from: iago on April 19, 2005, 01:06 PM
CrAz3D's ... is too big vertically, at least, too big with ... iago ...

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

Camel

Look at the date on the post BoBBaGe!

BoBBaGe

wat if i dont wanna, YOU CANT MAKE ME

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.

               .ListItems(1).Text = varAccount(0)


Sets the second cell on the first row to something.

               .ListItems(1).ListSubItems(1).Text = "Initializing..."


Third cell...

               .ListItems(1).ListSubItems(2).Text = "0-0-0"


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


Simple enough, right? That was pulled from http://tks.slacktech.com/source/vb/SoupBotWinBot.zip .