-1
我試圖在DataGridView中選擇一個值並將其插入到DateTimePicker中。我試了兩個代碼,但他們都不工作。
這裏是我的代碼datagridview中的值插入到datetimepicker
這是第一個代碼,我試圖
EditAccount.DateTimePicker1.Value = DataGridView1.Rows(e.RowIndex).Cells(8).ToString
,這是第二個代碼我已經試過
EditAccount.DateTimePicker1.Value = Convert.ToDateTime(DataGridView1.Rows(e.RowIndex).Cells(8).ToString)
你能幫助我嗎?
感謝