hi there,
how can i assign a calender control to datagrid view cell by C# code.(like assigning values to a combobox in C# codeas below)
DataGridViewComboBoxColumn combobox = (DataGridViewComboBoxColumn)dgvActions.Rows[r].Cells[3].OwningColumn;
combobox.Items.Clear();
combobox.Items.AddRange(u.LoadUSEmp());
thankxxx