private void btnAddGuest_Click(object sender, System.EventArgs e) { try { frmIns_Guest afrmIns_Guest = new frmIns_Guest(this); afrmIns_Guest.Show(); } catch (Exception ex) { MessageBox.Show("frmTsk_BookingHall_Group.btnAddGuest_Click\n" + ex.ToString(), "Error ", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void btnAdd_Click(object sender, EventArgs e) { frmIns_Guest afrmIns_Guest = new frmIns_Guest(this); afrmIns_Guest.ShowDialog(); }