Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ListView Objects and Items

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
Hey,

i would like to know how i put Items in the right Column of a ListView when the form is created (OnCreate).
I have about 7 Columns and i tried something like this:

for( int i = 0; i<numberArray.length; i++ )
{
ListView1->Objects[0]->Items = numberArray;
}

for( int i = 0; i<streetArray.length; i++ )
{
ListView1->Objects[1]->Items = streetArray;
}

and so on for the other 5 Columns.....

I know this doesn't work but can someone please tell me how to do this??

Thank you,

Bram

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top