Click here to Skip to main content
15,899,126 members
Home / Discussions / C#
   

C#

 
QuestionRe: Question on mshtml. Pin
Member 10339071-May-09 22:22
Member 10339071-May-09 22:22 
AnswerRe: Question on mshtml. Pin
Evgeni571-May-09 22:43
Evgeni571-May-09 22:43 
GeneralRe: Question on mshtml. Pin
dan!sh 1-May-09 23:18
professional dan!sh 1-May-09 23:18 
AnswerRe: Question on mshtml. Pin
Member 10339071-May-09 23:32
Member 10339071-May-09 23:32 
QuestionDisplay Datetime As per GMT Pin
Sun Rays1-May-09 19:35
Sun Rays1-May-09 19:35 
QuestionHow to connect excel database Pin
kaushik_dass1-May-09 19:34
kaushik_dass1-May-09 19:34 
AnswerRe: How to connect excel database Pin
Sun Rays1-May-09 19:38
Sun Rays1-May-09 19:38 
QuestionNoob question: Displaying a List in a ListView Pin
Quake2Player1-May-09 19:00
Quake2Player1-May-09 19:00 
Hi,
I want to know if this is the way to work with ListViews:

I noticed that ListViews contain strings only.. so.. if I have a List of persons List<Person>, and each Person has properties Id, Name, Age, and much more.

I want to display only name and age (there are two columns in the ListView: Name, Age),

My question:
I'd like to work with the Person (object Person!) selected.. I'm currently doing it this way:

Adding the items to the list:
foreach (Person person in personList)
{
                ListViewItem lvi = new ListViewItem();
                lvi.SubItems.Add(person.Name);
                lvi.SubItems.Add(person.Age.ToString());
                lvi.SubItems.Add(person.Id.ToString()); 

                listView1.Items.Add(lvi);
}


And the subitem Id is not listed because of "lack of column", i mean: There are two columns.. so Id is not displayed because it would need 3 columns..

Then, that way i can use the Id of the person and refer to the object..

Is this the way one would do that ? I suppose not because it doesnt look very nice..
In fact if i would add later a new column i would have to change things

Help please!
AnswerRe: Noob question: Displaying a List in a ListView Pin
Member 10339071-May-09 22:34
Member 10339071-May-09 22:34 
AnswerRe: Noob question: Displaying a List in a ListView Pin
DaveyM691-May-09 23:24
professionalDaveyM691-May-09 23:24 
GeneralRe: Noob question: Displaying a List in a ListView Pin
Quake2Player2-May-09 8:41
Quake2Player2-May-09 8:41 
GeneralRe: Noob question: Displaying a List in a ListView Pin
DaveyM693-May-09 0:28
professionalDaveyM693-May-09 0:28 
QuestionDateTime problem Pin
soulidentities1-May-09 17:26
soulidentities1-May-09 17:26 
AnswerRe: DateTime problem Pin
Garth J Lancaster1-May-09 18:29
professionalGarth J Lancaster1-May-09 18:29 
GeneralRe: DateTime problem Pin
J4amieC1-May-09 22:56
J4amieC1-May-09 22:56 
GeneralRe: DateTime problem Pin
Garth J Lancaster1-May-09 23:58
professionalGarth J Lancaster1-May-09 23:58 
AnswerRe: DateTime problem Pin
J4amieC1-May-09 22:59
J4amieC1-May-09 22:59 
GeneralRe: DateTime problem Pin
soulidentities2-May-09 14:59
soulidentities2-May-09 14:59 
Questionconnect four Pin
Marwa Shams1-May-09 17:25
Marwa Shams1-May-09 17:25 
AnswerRe: connect four Pin
Garth J Lancaster1-May-09 18:36
professionalGarth J Lancaster1-May-09 18:36 
GeneralRe: connect four Pin
Member 10339071-May-09 22:36
Member 10339071-May-09 22:36 
GeneralRe: connect four Pin
Garth J Lancaster1-May-09 23:54
professionalGarth J Lancaster1-May-09 23:54 
GeneralRe: connect four Pin
Member 10339072-May-09 0:30
Member 10339072-May-09 0:30 
GeneralRe: connect four Pin
Pete O'Hanlon2-May-09 10:06
mvePete O'Hanlon2-May-09 10:06 
QuestionNeed help using visual studio and C# to make a simple app that displays html Pin
devsfan18301-May-09 13:54
devsfan18301-May-09 13:54 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.