private void btnStokKartiAc_Click(object sender, EventArgs e)
 {
     if (gvStokIhtiyac.FocusedRowHandle < 0)
     {
         return;
     }
     Stok.frmStokDetay frm = new Stok.frmStokDetay(Convert.ToInt32(stokIhtiyac.dt_StokIhtiyac.Rows[gvStokIhtiyac.FocusedRowHandle]["StokID"]));
     frm.MdiParent = this.MdiParent;
     frm.Show();
 }
 private void btnStokKartiAc_Click(object sender, EventArgs e)
 {
     if (gvSiparisHareket.RowCount == 0)
     {
         return;
     }
     Stok.frmStokDetay StokKarti = new Stok.frmStokDetay(Convert.ToInt32(gvSiparisHareket.GetFocusedRowCellValue(colStokID)));
     StokKarti.MdiParent = this.MdiParent;
     StokKarti.Show();
 }
 private void simpleButton4_Click(object sender, EventArgs e)
 {
     if (gridView1.RowCount == 0)
     {
         return;
     }
     Stok.frmStokDetay frm = new Stok.frmStokDetay(Convert.ToInt32(gridView1.GetFocusedRowCellValue("StokID")));
     frm.MdiParent = this.MdiParent;
     frm.Show();
 }
        private void btnStokAc_Click(object sender, EventArgs e)
        {
            if (gridView1.RowCount == 0)
            {
                return;
            }

            Stok.frmStokDetay frm = new Stok.frmStokDetay((int)gridView1.GetFocusedRowCellValue(colMalzemeStokID));
            frm.ShowDialog();
        }
Esempio n. 5
0
 private void StokkartiAc(int StokID)
 {
     if (clsTablolar.Ayarlar.csYetkiler.StokKartGorme)
     {
         Stok.frmStokDetay frm = new Stok.frmStokDetay(StokID, 3);
         frm.txtRafYeriAciklama.Focus();
         frm.txtRafYeriAciklama.SelectAll();
         frm.ShowDialog();
     }
 }
Esempio n. 6
0
        private void btnHarekettekiStokKartiniAc_Click(object sender, EventArgs e)
        {
            if (gridView1.RowCount == 0)
            {
                return;
            }

            StokKarti           = new Stok.frmStokDetay((int)gridView1.GetFocusedRowCellValue(colMalzemeStokID));
            StokKarti.MdiParent = this.MdiParent;
            StokKarti.Show();
        }
        private void btnStokKartiniAc_Click(object sender, EventArgs e)
        {
            if (gridView1.RowCount == 0)
            {
                return;
            }

            int StokID = Convert.ToInt32(gridView1.GetFocusedRowCellValue("StokID"));

            if (StokID < 0)
            {
                MessageBox.Show("Bu stok Areste bir stoga baglanmamis veya arest böyle bir stok yok");
                return;
            }
            frmStok           = new Stok.frmStokDetay(StokID);
            frmStok.MdiParent = this.MdiParent;
            frmStok.Show();
        }
Esempio n. 8
0
 private void btnStokKartAc_Click(object sender, EventArgs e)
 {
     StokKarti           = new Stok.frmStokDetay(Recete.UretilenStokID);
     StokKarti.MdiParent = this.MdiParent;
     StokKarti.Show();
 }
 private void btnStokKartiAc_Click(object sender, EventArgs e)
 {
     Stok.frmStokDetay frm = new Stok.frmStokDetay((int)gvStokButonlari.GetFocusedRowCellValue(colStokID));
     frm.MdiParent = this.MdiParent;
     frm.Show();
 }
Esempio n. 10
0
 private void simpleButton4_Click(object sender, EventArgs e)
 {
     Stok.frmStokDetay frm = new Stok.frmStokDetay(Convert.ToInt32(gvUrunler.GetFocusedRowCellValue("StokID")));
     frm.MdiParent = this.MdiParent;
     frm.Show();
 }
Esempio n. 11
0
 private void btnYeniStokKarti_ItemClick(object sender, ItemClickEventArgs e)
 {
     Stok.frmStokDetay frm = new Stok.frmStokDetay(-1);
     FormuAc2(frm);
 }