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 SssShowToolTip(string text)
 {
     SSSPopup.Show(text,
                   SSSGRD,
                   new Point(
                       SSSGRD.GetCellDisplayRectangle(SSSGRD.CurrentCell.ColumnIndex,
                                                      SSSGRD.CurrentCell.RowIndex,
                                                      true).X + 30,
                       SSSGRD.GetCellDisplayRectangle(SSSGRD.CurrentCell.ColumnIndex,
                                                      SSSGRD.CurrentCell.RowIndex,
                                                      true).Y + 20));
     SSSGRD.CurrentCell.Value = _currentval;
 }