private void gridMain_CellDoubleClick(object sender, ODGridClickEventArgs e)
        {
            FormAnesthMedSuppliersEdit FormME = new FormAnesthMedSuppliersEdit();

            FormME.SupplCur = AnesthMedSupplierC.Listt[e.Row];
            FormME.ShowDialog();
            AnesthMedSuppliers.RefreshCache();
            FillGrid();
        }
        private void butAdd_Click(object sender, System.EventArgs e)
        {
            AnesthMedSupplier supplCur = new AnesthMedSupplier();

            supplCur.IsNew = true;
            FormAnesthMedSuppliersEdit FormME = new FormAnesthMedSuppliersEdit();

            FormME.SupplCur = supplCur;
            FormME.ShowDialog();
            if (FormME.DialogResult == DialogResult.OK)
            {
                FillGrid();
            }
        }
Esempio n. 3
0
		private void gridMain_CellDoubleClick(object sender,ODGridClickEventArgs e) {

			FormAnesthMedSuppliersEdit FormME=new FormAnesthMedSuppliersEdit();
			FormME.SupplCur=AnesthMedSupplierC.Listt[e.Row];
			FormME.ShowDialog();
			AnesthMedSuppliers.RefreshCache();
			FillGrid();

		}
Esempio n. 4
0
		private void butAdd_Click(object sender,System.EventArgs e) {

			AnesthMedSupplier supplCur = new AnesthMedSupplier();
			supplCur.IsNew=true;
			FormAnesthMedSuppliersEdit FormME=new FormAnesthMedSuppliersEdit();
			FormME.SupplCur = supplCur;
			FormME.ShowDialog();
			if(FormME.DialogResult == DialogResult.OK) {
				FillGrid();
			}

		}