Click here to Skip to main content
15,886,835 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
How can we pass a grid cell's value to datetimepicker ?
I have a grid with columns, in which one column store date values(YYYY-MM-DD) format.
When I click edit button, selected row values need to be passed to new form and date value is need to be set of DateTimePicker control.
Is this possible, if yes then how ?
Posted

Check this link, it is in VB.Net, however in comments section author has posted the code in C# too.

add-datetime-picker-in-datagrid-view/[^]
 
Share this answer
 
Comments
Itz.Irshad 10-Jul-12 7:52am    
Well, thanks Kulkarni.
But, you got my question in opposite direction. Here, I need to get value from datagridview cell to datetimepicker control. The datagridview is in main form of application and datetimepicker is at sub form in application. If any idea you've in this regard then please share it with me.
Thanks
C#
DateTime dtBookPublishDate = DateTime.Parse (dgvBooksDetails.CurrentRow.Cells[5].Value.ToStrng());                                                                      
myBookInformation.dtpBookPublishDateInfo.Value = DateTime.Parse(dtBookPublishDate.ToShortDateString());     
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900