Hi,
In my application I am creating rows and columns dynamically. I created a column of type System.DateTime. After this i want to display datetimepicker control for all rows in that column.
I created a column using
dataTable.Columns.Add("CreatedOn", Type.GetType("System.DateTime"));
and i am adding rows as
foreach(String filename ......)
dataTable_FileProperty.Rows.Add(filename,//here i want to add dateTimePicker
So, what is a solution for this.
EDIT: Please provide some code snippet. I am new to C#.net.
Thanks.