J jmancuso Member Joined Feb 4, 2005 Messages 22 Programming Experience 1-3 Feb 10, 2005 #1 Is it possible to select a cell within a datagrid during run time and have that information populate a different control?
Is it possible to select a cell within a datagrid during run time and have that information populate a different control?
TPM Well-known member Joined Dec 7, 2004 Messages 623 Location CA Programming Experience 3-5 Feb 10, 2005 #2 Yes, use the datagrid.item() function. TPM Upvote 0 Downvote
mzim Well-known member Joined Jun 3, 2004 Messages 187 Location Other side of the rock Programming Experience 1-3 Feb 12, 2005 #3 it returns the selected row column 4. VB.NET: Me.DataGrid1.Item(DataGrid1.CurrentCell.RowNumber, 3).ToString() Upvote 0 Downvote
it returns the selected row column 4. VB.NET: Me.DataGrid1.Item(DataGrid1.CurrentCell.RowNumber, 3).ToString()
J jmancuso Member Joined Feb 4, 2005 Messages 22 Programming Experience 1-3 Feb 12, 2005 #4 Thank you both for you're input. I figured it would be possible. Upvote 0 Downvote