is it possible to add a custom control to a datagridview column?
hi,
is it possible to add a custom control to a datagridview column?
thanks.
Re: is it possible to add a custom control to a datagridview column?
Yes it is. You can host any control you want in a DataGridView. Generally you will define your own column, cell and editing control classes. MSDN has an example using a DateTimePicker but that's just an example.
http://msdn.microsoft.com/en-us/libr...80(VS.80).aspx
Re: is it possible to add a custom control to a datagridview column?
i'll take a look at it... thanks.