Re: how to load the data from datagridview into windows forms accordingly
I have not used the DataGridViewSelectedRowCollection, but here is an idea of the tasks you need to perform:
1. Select one DataGridViewRow from the DataGridViewSelectedRowCollection. From clicking one cell this would most likely be the first item in the collection.
2. Select one Cell from the DataGridViewRow. You want to use the column index of the column containing the date you stored.
3. Then you can get the ToString() of that cell.
Bookmarks