コード例 #1
0
        private void buttonTambah_Click(object sender, EventArgs e)
        {
            try
            {
                Pelanggan pelangganNew = new Pelanggan(
                    textBoxKodePelanggan.Text,
                    textBoxNamaPelanggan.Text,
                    textBoxAlamat.Text,
                    textBoxTelepon.Text);

                pelangganNew.Insert();

                frm = (FormDaftarPelanggan)Owner;
                frm.FormDaftarPelanggan_Load(buttonTambah, e);

                MessageBox.Show("Data Pelanggan Telah Tersimpan", "Info");

                textBoxKodePelanggan.Text = pelanggan.GeneratePrimaryKey();
                buttonKosongi_Click(buttonTambah, e);
            }
            catch (Exception error)
            {
                MessageBox.Show("Penyimpanan gagal, Error : " + error.Message, "Info");
            }
        }
コード例 #2
0
        private void buttonHapus_Click(object sender, EventArgs e)
        {
            DialogResult confirm = MessageBox.Show("Data Pelanggan Akan Dihapus. Anda Yakin ?", "Konfirmasi", MessageBoxButtons.YesNo);

            if (confirm == DialogResult.Yes)
            {
                Pelanggan pelanggan = new Pelanggan(
                    textBoxKodePelanggan.Text,
                    textBoxNamaPelanggan.Text,
                    textBoxAlamat.Text,
                    textBoxTelepon.Text);

                string hapus = pelanggan.Delete();

                if (hapus == "1")
                {
                    MessageBox.Show("Data Pelanggan Telah Dihapus", "Info");
                    FormDaftarPelanggan frm = (FormDaftarPelanggan)Owner;
                    frm.FormDaftarPelanggan_Load(buttonHapus, e);

                    buttonKosongi_Click(buttonHapus, e);
                }
                else
                {
                    MessageBox.Show("Gagal Menghapus Data Pelanggan, Error : " + hapus);
                }
            }
        }
コード例 #3
0
ファイル: FormMaster.cs プロジェクト: alifdoll/si-jual-beli
        private void pelangganToolStripMenuItem_Click(object sender, EventArgs e)
        {
            FormDaftarPelanggan pelangganForm = new FormDaftarPelanggan();
            Form forms = Application.OpenForms[pelangganForm.Name];

            SingleForm(forms, pelangganForm);
        }
コード例 #4
0
        private void buttonUbah_Click(object sender, EventArgs e)
        {
            try
            {
                Pelanggan pelanggan = new Pelanggan(
                    textBoxKodePelanggan.Text,
                    textBoxNamaPelanggan.Text,
                    textBoxAlamat.Text,
                    textBoxTelepon.Text);

                pelanggan.Update();

                FormDaftarPelanggan frm = (FormDaftarPelanggan)Owner;
                frm.FormDaftarPelanggan_Load(buttonUbah, e);

                MessageBox.Show("Data Pelanggan Telah Diubah", "Info");

                buttonKosongi_Click(buttonUbah, e);
            }
            catch (Exception error)
            {
                MessageBox.Show("Gagal Mengubah Data Pelanggan, Error : " + error.Message, "Info");
            }
        }