Datagrid Detail

jmancuso

Member
Joined
Feb 4, 2005
Messages
22
Programming Experience
1-3
Is it possible to select a cell within a datagrid during run time and have that information populate a different control?
 
it returns the selected row column 4.
VB.NET:
Me.DataGrid1.Item(DataGrid1.CurrentCell.RowNumber, 3).ToString()
 
Back
Top