private void radGridPendaftaran_CellDoubleClick(object sender, GridViewCellEventArgs e) { if (kelas == "1") { EditDaftar daftar = new EditDaftar(); daftar.idtab = idtab; daftar.nis = id; daftar.nama = nama; daftar.kelas = kelas; daftar.jenis = jenis; daftar.jumlah = jumlah; daftar.ShowDialog(); BindDataDaftar(); } else { MessageBox.Show("Sudah kelas " + kelas, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void radGridPendaftaran_CellDoubleClick(object sender, GridViewCellEventArgs e) { EditDaftar daftar = new EditDaftar(); daftar.idtab = idtab; daftar.nis = id; daftar.nama = nama; daftar.kelas = kelas; daftar.jenis = jenis; daftar.jumlah = jumlah; daftar.ShowDialog(); }
// //Akhir Tabungan Total // // //Tombol // // ////Tombol Ubah // private void radButtonUbah_Click(object sender, EventArgs e) { if (tombol == "tu") { EditTU editTU = new EditTU(); editTU.id = id; editTU.nama = nama; editTU.password = password; editTU.ShowDialog(); } else if (tombol == "siswa") { EditSiswa editsiswa = new EditSiswa(); editsiswa.nis = id; editsiswa.nama = nama; editsiswa.kelas = kelas; editsiswa.ShowDialog(); } else if (tombol == "pembayaran") { EditPembayaran pembayaran = new EditPembayaran(); pembayaran.id = idtab; pembayaran.nis = id; pembayaran.nama = nama; pembayaran.kelas = kelas; pembayaran.cathering = cathering; pembayaran.bulan = bulan; pembayaran.ShowDialog(); } else if (tombol == "surat") { EditSurat editSurat = new EditSurat(); editSurat.id = id; editSurat.noSurat = noSurat; editSurat.lampiran = lampiran; editSurat.perihal = perihal; editSurat.jenis = jenis; editSurat.pengirim = pengirim; editSurat.ShowDialog(); } else if (tombol == "pendaftaran") { EditDaftar daftar = new EditDaftar(); daftar.idtab = idtab; daftar.nis = id; daftar.nama = nama; daftar.kelas = kelas; daftar.jenis = jenis; daftar.jumlah = jumlah; daftar.ShowDialog(); } else if (tombol == "tabungan") { EditTabungan tabungan = new EditTabungan(); tabungan.id = idtab; tabungan.nis = id; tabungan.nama = nama; tabungan.kelas = kelas; tabungan.jumlah = jumlah; tabungan.ShowDialog(); } }
// //Akhir Tabungan Total // // //Tombol // // ////Tombol Ubah // private void radButtonUbah_Click(object sender, EventArgs e) { //if (tombol == "tu") //{ // EditTU editTU = new EditTU(); // editTU.id = id; // editTU.nama = nama; // editTU.password = password; // editTU.ShowDialog(); //} //else if (tombol == "siswa") { EditSiswa editsiswa = new EditSiswa(); editsiswa.nis = id; editsiswa.nama = nama; editsiswa.kelas = kelas; editsiswa.ShowDialog(); BindDataSiswa(); } else if (tombol == "pembayaran") { EditPembayaran pembayaran = new EditPembayaran(); pembayaran.id = idtab; pembayaran.nis = id; pembayaran.nama = nama; pembayaran.kelas = kelas; pembayaran.cathering = cathering; pembayaran.bulan = bulan; pembayaran.ShowDialog(); BindDataPembayaran(); } else if (tombol == "surat") { EditSurat editSurat = new EditSurat(); editSurat.id = id; editSurat.noSurat = noSurat; editSurat.lampiran = lampiran; editSurat.perihal = perihal; editSurat.jenis = jenis; editSurat.pengirim = pengirim; editSurat.ShowDialog(); BindDataSurat(); } else if (tombol == "pendaftaran") { if (kelas == "1") { EditDaftar daftar = new EditDaftar(); daftar.idtab = idtab; daftar.nis = id; daftar.nama = nama; daftar.kelas = kelas; daftar.jenis = jenis; daftar.jumlah = jumlah; daftar.ShowDialog(); BindDataDaftar(); } else { MessageBox.Show("Sudah kelas " + kelas, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } } else if (tombol == "tabungan") { EditTabungan tabungan = new EditTabungan(); tabungan.id = idtab; tabungan.nis = id; tabungan.nama = nama; tabungan.kelas = kelas; tabungan.jumlah = jumlah; tabungan.ShowDialog(); BindDataTabungan(); } }