How to get cell value from DataGridView in VB.Net?

前端 未结 5 1394
南旧
南旧 2021-01-06 19:54

I have a problem, how can i get value from cell of datagridview

----------------------------------
id     | p/w       | post       |
------------------------         


        
5条回答
  •  感情败类
    2021-01-06 20:36

    It is working for me

    MsgBox(DataGridView1.CurrentRow.Cells(0).Value.ToString)
    

提交回复
热议问题