Ejemplo n.º 1
0
        private void DGV_CellClick(object sender, DataGridViewCellEventArgs e)
        {
            int    col        = DGV.SelectedCells[0].ColumnIndex;
            int    row        = DGV.SelectedCells[0].RowIndex;
            string expression = DATA.data[row][col].Expression;
            string value      = DATA.data[row][col].Value;

            TableOut.Text = expression;
            TableOut.Focus();
        }
Ejemplo n.º 2
0
 private void DGV_CellEnter(object sender, DataGridViewCellEventArgs e)
 {
     TableOut.Focus();
 }