Thread ID: |
Created: |
Updated: |
Platform: |
Replies: |
1533 | Nov 8,2002 12:35 PM UTC | Nov 11,2002 09:15 AM UTC | WinForms | 2 |
![]() |
Tags: GridControl |
Console.WriteLine(Me.GridDataBoundGrid1(2, 2).CellValue.ToString())
If you want to handle an event that actually catches the changes made to the checkbox cell as the user clicks the cell, then you can handle the CurrentCellChanged event.
Private Sub GridDataBoundGrid1_CurrentCellChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles GridDataBoundGrid1.CurrentCellChanged
Dim cc As GridCurrentCell = Me.GridDataBoundGrid1.CurrentCell
Console.WriteLine(Me.GridDataBoundGrid1(cc.RowIndex, cc.ColIndex).CellValue.ToString())
End Sub
This post will be permanently deleted. Are you sure you want to continue?
Sorry, An error occured while processing your request. Please try again later.
This page will automatically be redirected to the sign-in page in 10 seconds.