Exemplo n.º 1
0
        private void pendaftaranToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Frm_RegistrasiPendaftaran fregistrasi = new Frm_RegistrasiPendaftaran();

            fregistrasi.MdiParent = this;
            fregistrasi.Show();
        }
Exemplo n.º 2
0
        private void lst_CariProdi_CellClick(object sender, DataGridViewCellEventArgs e)
        {
            Frm_RegistrasiPendaftaran call = new Frm_RegistrasiPendaftaran();
            DataGridViewRow           Row  = this.lst_CariProdi.Rows[e.RowIndex];

            kodeprodi        = Row.Cells["kode_prodi"].Value.ToString();
            namaprodi        = Row.Cells["nama_prodi"].Value.ToString();
            jejangpendidikan = Row.Cells["jenjang_pendidikan"].Value.ToString();
            biaya            = Row.Cells["biaya_pendaftaran"].Value.ToString();
            this.Close();
        }
Exemplo n.º 3
0
        private void lst_Caripanitia_CellClick(object sender, DataGridViewCellEventArgs e)
        {
            Frm_RegistrasiPendaftaran call = new Frm_RegistrasiPendaftaran();
            DataGridViewRow           Row  = this.lst_Caripanitia.Rows[e.RowIndex];

            idpanitia    = Row.Cells["id_Panitia"].Value.ToString();
            namapanitia  = Row.Cells["nama_panitia"].Value.ToString();
            jeniskelamin = Row.Cells["jenis_kelamin"].Value.ToString();
            alamat       = Row.Cells["alamat"].Value.ToString();
            notelepon    = Row.Cells["no_telepon"].Value.ToString();
            this.Close();
        }
Exemplo n.º 4
0
        private void lst_CariSiswa_CellClick(object sender, DataGridViewCellEventArgs e)
        {
            Frm_RegistrasiPendaftaran call = new Frm_RegistrasiPendaftaran();
            DataGridViewRow           Row  = this.lst_CariSiswa.Rows[e.RowIndex];

            nis          = Row.Cells["nis"].Value.ToString();
            namasiswa    = Row.Cells["nama_siswa"].Value.ToString();
            tglahir      = Row.Cells["tanggal_lahir"].Value.ToString();
            jeniskelamin = Row.Cells["jenis_kelamin"].Value.ToString();
            alamat       = Row.Cells["alamat"].Value.ToString();
            asalsekolah  = Row.Cells["asal_sekolah"].Value.ToString();
            notelpon     = Row.Cells["no_telepon"].Value.ToString();
            this.Close();
        }