private void gantiPaswordToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (IsFormSudahDibuka("GANTI_PASSWORD") == true)
     {
         Design_Form.GANTI_PASSWORD frm = new Design_Form.GANTI_PASSWORD();
         frm.MdiParent = this;
         frm.Show();
     }
 }
Example #2
0
        private void btnGANTIPASS_Click(object sender, EventArgs e)
        {
            GANTI_PASSWORD frm = new GANTI_PASSWORD();

            frm.txtID.ReadOnly         = true;
            frm.txtID.Text             = txtUNAME.Text;
            global.add_akun_ganti_pass = true;
            frm.ShowDialog();
            pass         = enkripsi(global.Ambil);
            txtPASS.Text = pass;
            simpan       = false;
        }