views:

26

answers:

1

I have a DateTime column in my winForms DataGridView; currently the field can only be edited by typing the date in manually "2010/09/02", what would be needed to have a DateTimePicker (or equivalent) used as the editor instead?

+2  A: 

Have a look here:

How to: Host Controls in Windows Forms DataGridView Cells

there's an interesting example :)

digEmAll