datagridview中的值插入到datetimepicker中

时间:2014-10-10 01:55:19

标签: vb.net

我试图在DataGridView中选择一个值并将其插入到DateTimePicker中。我试过两个代码,但两个都没有用。
这是我的代码

这是我试过的第一个代码

   EditAccount.DateTimePicker1.Value = DataGridView1.Rows(e.RowIndex).Cells(8).ToString

这是我试过的第二个代码

 EditAccount.DateTimePicker1.Value = Convert.ToDateTime(DataGridView1.Rows(e.RowIndex).Cells(8).ToString)  
你可以帮助我吗? 感谢

1 个答案:

答案 0 :(得分:0)

你不需要括号'()'在Cells(8).ToString之后(换句话说,不应该写Cells(8).ToString()