Exemplo n.º 1
0
        private void teslimalbtn_Click(object sender, EventArgs e)
        {
            if ("KIRADA" == araclarim_datagrid.CurrentRow.Cells[11].Value.ToString())
            {
                teslimal teslim = new teslimal();
                teslim.plaka_txt.Text = araclarim_datagrid.CurrentRow.Cells[4].Value.ToString();
                teslim.ShowDialog();


                goster("tabloAraclar", araclarim_datagrid);
            }
            else
            {
                Bildiri.Uyari("araç kirada olmadığı için teslim alınamıyor", Bildiri.AlertType.bilgi);
            }
        }
Exemplo n.º 2
0
 private void teslimal_btn_Click(object sender, EventArgs e)
 {
     try
     {
         if ("alinmadi" == kiradakiler_datagrid.CurrentRow.Cells[8].Value.ToString())
         {
             teslimal teslim = new teslimal();
             teslim.plaka_txt.Text = kiradakiler_datagrid.CurrentRow.Cells[0].Value.ToString();
             teslim.ShowDialog();
             gosterkirada(kiradakiler_datagrid);
         }
         else
         {
             Bildiri.Uyari("araç kirada olmadığı için teslim alınamıyor", Bildiri.AlertType.dikkat);
         }
     }
     catch
     {
     }
 }
Exemplo n.º 3
0
        private void teslimalbtn_Click(object sender, EventArgs e)
        {
            teslimal ta = new teslimal();

            ta.Show();
        }