Home All Groups Group Topic Archive Search About
Author
14 Dec 2006 7:05 PM
HDI
Hi,

Can someone gets me started?

I want to build a list control with items that have more than 1 field
and when I click an item the labels should chang to textboxes.

Ex

Name: John
Age: 16
City: London

Name: Dre
Age: 56
City: London

.....

Thx

Author
14 Dec 2006 10:47 PM
Kerry Moorman
HDI,

Have you looked at the DataGridView, DataGrid and Listview controls? Will
none of them do what you need?

Kerry Moorman


Show quoteHide quote
"HDI" wrote:

> Hi,
>
> Can someone gets me started?
>
> I want to build a list control with items that have more than 1 field
> and when I click an item the labels should chang to textboxes.
>
> Ex
>
> Name: John
> Age: 16
> City: London
>
> Name: Dre
> Age: 56
> City: London
>
> .....
>
> Thx
>
>
Author
17 Dec 2006 8:02 PM
HDI
I wnt to add my usercontrol to a list.

Tried wil scrollablecontrol but can only add 1 control.


Kerry Moorman schreef:

Show quoteHide quote
> HDI,
>
> Have you looked at the DataGridView, DataGrid and Listview controls? Will
> none of them do what you need?
>
> Kerry Moorman
>
>
> "HDI" wrote:
>
> > Hi,
> >
> > Can someone gets me started?
> >
> > I want to build a list control with items that have more than 1 field
> > and when I click an item the labels should chang to textboxes.
> >
> > Ex
> >
> > Name: John
> > Age: 16
> > City: London
> >
> > Name: Dre
> > Age: 56
> > City: London
> >
> > .....
> >
> > Thx
> >
> >
Author
18 Dec 2006 12:40 PM
Phill W.
HDI wrote:

> I wnt to add my usercontrol to a list.
>
> Tried wil scrollablecontrol but can only add 1 control.

How about a ListView to which you add instances of your own class
derived from ListViewItem?

HTH,
    Phill  W.