private void pegawaiToolStripMenuItem_Click(object sender, EventArgs e) { this.Hide(); FormPegawai utama = new FormPegawai(); utama.ShowDialog(); this.Close(); }
private void btnLogin_Click(object sender, EventArgs e) { user = edUser.Text; pass = edPass.Text; if (lc.cekLogin(user, pass) == true) { role = lc.getRoleUser(user, pass); last_id_lama = JC.LastIdBeforeUpdate(); if (DateTime.Now.DayOfWeek.ToString() == 1.ToString()) { JC.GenerateOneWeekJadwal(); last_id_baru = JC.LastIdBeforeUpdate(); } if (role == 1) { this.Hide(); FormPegawai utama = new FormPegawai(); // utama.setToolStripUser("Pengguna : Admin - " + user); utama.ShowDialog(); this.Close(); } else if (role == 2) { this.Hide(); FormPresensiInstruktur utama = new FormPresensiInstruktur(); //utama.setToolStripUser("Pengguna : Manajer Operasional - " + user); utama.ShowDialog(); this.Close(); } else if (role == 3) { this.Hide(); Transaksi utama = new Transaksi(); //utama.setToolStripUser("Pengguna : Kasir - " + user); utama.Pegawai = lc.getIdPegawaiByIdLogin(lc.getIdByUsername(user)); utama.Nama_pegawai = lc.getNamaPegawai(lc.getIdByUsername(edUser.Text)); utama.ShowDialog(); this.Close(); } else { MessageBox.Show("Maaf user ini tidak memiliki hak untuk masuk ke sistem"); } } else if (edUser.Text == "" || edPass.Text == "") { MessageBox.Show("Maaf, silahkan lengkapi data username dan password"); if (edUser.Text == "") { edUser.Text = ""; edUser.Focus(); } else if (edPass.Text == "") { edPass.Text = ""; edPass.Focus(); } } else { MessageBox.Show("Maaf, username atau password salah"); edUser.Text = ""; edUser.Focus(); } }