Guest cgchris99 Posted August 23, 2002 Posted August 23, 2002 I have a Datagrid that is from a table. When I highlight the row, and click my select button, how do I know what the value of a certain column is? Thanks for any advice Quote
Moderators Robby Posted August 24, 2002 Moderators Posted August 24, 2002 You can do this for column number.... MessageBox.Show(myGrid1.CurrentCell.ColumnNumber.ToString) Row number... MessageBox.Show(myGrid1.CurrentCell.RowNumber.ToString) Both row and column (as string) MessageBox.Show(myGrid1.CurrentCell.ToString) Quote Visit...Bassic Software
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.