본문으로 바로가기

(vb.net) DataGridView

category vb.net 2014. 11. 7. 07:09

MultiSelect : False (여러개 선택할 수 없음) 
SelectionMode : FullRowSelection (Cell이 아니라 Row 단위로 선택됨)
RowHeadersVisible : False (Row Header 보이지 않게)



'몇 번째 줄이 선택되었는지 읽어옴
Dim selection As String = DataGridView1.SelectedCells(0).RowIndex.ToString

'선택된 Row의 첫번째, 두번째 Column 값 읽음
address  =  DataGridView1.Item(0, Int(selection)).Value.ToString()
zip_code = DataGridView1.Item(1, Int(selection)).Value.ToString()