private void FormTambahKategori_Load(object sender, EventArgs e) { string newCode = kategori.GeneratePrimaryKey(); textBoxKodeKategori.Text = newCode; textBoxNamaKategori.Focus(); }
private void buttonSimpan_Click(object sender, EventArgs e) { try { Kategori kategori = new Kategori(textBoxKodeKategori.Text, textBoxNamaKategori.Text); kategori.Insert(); frm = (FormDaftarKategori)Owner; frm.FormDaftarKategori_Load(buttonSimpan, e); MessageBox.Show("Data Kategori Telah Tersimpan", "Info"); textBoxKodeKategori.Text = kategori.GeneratePrimaryKey(); textBoxNamaKategori.Text = ""; } catch (Exception error) { MessageBox.Show("Penyimpanan gagal, Error : " + error.Message, "Info"); } }