private void noviDostavljacbtn_Click(object sender, EventArgs e) { Deliverer.AddDostavljac noviF = new Deliverer.AddDostavljac(); if (noviF.ShowDialog() == DialogResult.OK) { BindGrid(); } }
private void dostavljacdatagrid_CellDoubleClick(object sender, DataGridViewCellEventArgs e) { int dostavljacId = Convert.ToInt32(dostavljacdatagrid.SelectedRows[0].Cells[0].Value); Deliverer.AddDostavljac noviF = new Deliverer.AddDostavljac(dostavljacId); if (noviF.ShowDialog() == DialogResult.OK) { BindGrid(); } }