Ejemplo n.º 1
0
 private void TaxShowToolTip(string text)
 {
     SSSPopup.Show(text,
                   TaxExemptionGRD,
                   new Point(
                       TaxExemptionGRD.GetCellDisplayRectangle(TaxExemptionGRD.CurrentCell.ColumnIndex,
                                                               TaxExemptionGRD.CurrentCell.RowIndex,
                                                               true).X + 50,
                       TaxExemptionGRD.GetCellDisplayRectangle(TaxExemptionGRD.CurrentCell.ColumnIndex,
                                                               TaxExemptionGRD.CurrentCell.RowIndex,
                                                               true).Y + 40), 1500);
     TaxExemptionGRD.CurrentCell.Value = _currentval;
 }
Ejemplo n.º 2
0
 private void TaxRemoveExBTN_Click(object sender, EventArgs e)
 {
     TaxExemptionGRD.Rows.RemoveAt(TaxExemptionGRD.SelectedRows[0].Index);
     TaxExemptionGRD.ClearSelection();
 }