private void jaminan_Click(object sender, EventArgs e) { FormJaminan fd = new FormJaminan(); fd.Idizin = this.selectedId.ToString(); fd.ShowDialog(); }
void cb_SelectedIndexChanged(object sender, EventArgs e) { ComboBox cb = sender as ComboBox; ((ComboBox)sender).BackColor = Color.White; if (cb.SelectedIndex == 1) { FormJaminan fj = new FormJaminan(); fj.ShowDialog(); } /*Here you can fill other cell of datagridview*/ }
private void jaminan_Click(object sender, EventArgs e) { FormJaminan fj = new FormJaminan(); fj.ShowDialog(); }
private void lbtnJaminan_Click(object sender, EventArgs e) { FormJaminan fp = new FormJaminan(); fp.ShowDialog(); }