Ejemplo n.º 1
0
        private void jaminan_Click(object sender, EventArgs e)
        {
            FormJaminan fd = new FormJaminan();

            fd.Idizin = this.selectedId.ToString();
            fd.ShowDialog();
        }
Ejemplo n.º 2
0
        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*/
        }
Ejemplo n.º 3
0
        private void jaminan_Click(object sender, EventArgs e)
        {
            FormJaminan fj = new FormJaminan();

            fj.ShowDialog();
        }
Ejemplo n.º 4
0
        private void lbtnJaminan_Click(object sender, EventArgs e)
        {
            FormJaminan fp = new FormJaminan();

            fp.ShowDialog();
        }