private void btnModificar_Click(object sender, EventArgs e)
 {
     frmArticulo artInv = new frmArticulo();
     get();
     artInv.classArt = clArt;
     artInv.accion = "M";
     artInv.ShowDialog();
 }
Esempio n. 2
0
        private void btnEliminar_Click(object sender, EventArgs e)
        {
            frmArticulo articInv = new frmArticulo();

            get();
            articInv.classArt = clArt;
            articInv.accion   = "E";
            articInv.ShowDialog();
        }
 private void bbiArticulo_ItemClick_1(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
 {
     frmArticulo MantArticulo = new frmArticulo();
     MantArticulo.Show();
 }
Esempio n. 4
0
        private void bbiArticulo_ItemClick(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
        {
            frmArticulo articulo = new frmArticulo();

            articulo.Show();
        }