public void btnFrontPage_Click_1(object sender, EventArgs e) { Form frm = null; switch (this.LoginRole) { case Role.Admin: frm = new BuyerAccountForm(); break; case Role.Buyer: frm = new Report.BuyerReportForm(); break; case Role.Supplier: frm = new Report.SupplierReportForm(); break; default: break; } this.pnlMenuHighlight.Top = 0; this.NextForm((BaseForm)frm); }
private void btnBuyerAccount_Click(object sender, EventArgs e) { BuyerAccountForm frm = new BuyerAccountForm(); this.NextForm(frm); }