Beispiel #1
0
 private void EditSB_Click(object sender, EventArgs e)
 {
     Common.CurrencyUI.CurrencyData form = new Common.CurrencyUI.CurrencyData("edit", Convert.ToInt32(DataGV.SelectedRows[0].Cells["ID"].Value));
     form.ShowDialog();
     manager.Save();
     manager.CloseContext();
     manager = new ContextManager();
     Fill();
 }
Beispiel #2
0
 private void EditSB_Click(object sender, EventArgs e)
 {
     Common.CurrencyUI.CurrencyData form = new Common.CurrencyUI.CurrencyData("edit", Convert.ToInt32(DataGV.SelectedRows[0].Cells["ID"].Value));
     form.ShowDialog();
     manager.Save();
     manager.CloseContext();
     manager = new ContextManager();
     Fill();
 }
Beispiel #3
0
 private void NewSB_Click(object sender, EventArgs e)
 {
     Common.CurrencyUI.CurrencyData form = new Common.CurrencyUI.CurrencyData("new", null);
     form.ShowDialog();
     Fill();
 }
Beispiel #4
0
 private void NewSB_Click(object sender, EventArgs e)
 {
     Common.CurrencyUI.CurrencyData form = new Common.CurrencyUI.CurrencyData("new", null);
     form.ShowDialog();
     Fill();
 }