Hi,
I want to show one text box and two buttons in a
cell of a column in a datagridview.
Any Clues?

EggHeadCafe.com - .NET Developer Portal of Choice
http://www.eggheadcafe.com

Re: How to add two buttons with textbox in a single cell of column? by RobinS

RobinS
Tue Nov 28 01:19:30 CST 2006

YOu could try creating your own usercontrol, then see
if you can add that as a column to the datagridview.

Robin S.
----------------------------------
<Mahesh> wrote in message news:2006112804715dhanaji@itcube.net...
> Hi,
> I want to show one text box and two buttons in a
> cell of a column in a datagridview.
> Any Clues?
>
> EggHeadCafe.com - .NET Developer Portal of Choice
> http://www.eggheadcafe.com



Re: How to add two buttons with textbox in a single cell of column? by Otis

Otis
Tue Nov 28 05:34:11 CST 2006

On Mon, 27 Nov 2006 21:47:15 -0800, Mahesh wrote:

>Hi,
>I want to show one text box and two buttons in a
>cell of a column in a datagridview.
>Any Clues?
>
>EggHeadCafe.com - .NET Developer Portal of Choice
>http://www.eggheadcafe.com

Robin is correct. You will have to create your own controls for this.
Good luck with your project,

Otis Mukinfus
http://www.arltex.com
http://www.tomchilders.com

Re: How to add two buttons with textbox in a single cell of column by Deniz

Deniz
Mon Dec 04 01:57:00 CST 2006

If you don't want to introduce 'type pollution' into your project, by
creating new UserControl types, you may try to create a new Panel() at
runtime, and then adding your controls onto to the surface. After that, add
this panel to the column.

Thx,
Deniz
Developer, Microsoft


"Otis Mukinfus" wrote:

> On Mon, 27 Nov 2006 21:47:15 -0800, Mahesh wrote:
>
> >Hi,
> >I want to show one text box and two buttons in a
> >cell of a column in a datagridview.
> >Any Clues?
> >
> >EggHeadCafe.com - .NET Developer Portal of Choice
> >http://www.eggheadcafe.com
>
> Robin is correct. You will have to create your own controls for this.
> Good luck with your project,
>
> Otis Mukinfus
> http://www.arltex.com
> http://www.tomchilders.com
>