private void listMonthly_MouseDown(object sender, MouseEventArgs e) { int selected = listMonthly.IndexFromPoint(e.Location); if (selected == -1) { return; } switch (selected) { case 0: //Aging Report FormRpAging FormA = new FormRpAging(); FormA.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports, 0, "Aging"); break; case 1: //Claims Not Sent FormRpClaimNotSent FormClaim = new FormRpClaimNotSent(); FormClaim.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports, 0, "Claims Not Sent"); break; case 2: //Capitation Utilization FormRpCapitation FormC = new FormRpCapitation(); FormC.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports, 0, "Capitation"); break; case 3: //Finance Charge Report FormRpFinanceCharge FormRpFinance = new FormRpFinanceCharge(); FormRpFinance.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports, 0, "Finance Charges"); break; case 4: //Outstanding Insurance Claims FormRpOutInsClaims FormOut = new FormRpOutInsClaims(); FormOut.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports, 0, "Outstanding Insurance Claims"); break; case 5: //Procedures Not Billed to Insurance FormRpProcNotBilledIns FormProc = new FormRpProcNotBilledIns(); FormProc.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports, 0, "Procedures not billed to insurance."); break; case 6: //PPO Writeoffs FormRpPPOwriteoffs FormPPO = new FormRpPPOwriteoffs(); FormPPO.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports, 0, "PPO Writeoffs."); break; } }
private void listMonthly_MouseDown(object sender,MouseEventArgs e) { int selected=listMonthly.IndexFromPoint(e.Location); if(selected==-1) { return; } switch(selected) { case 0://Aging of Accounts Receivable Report if(!Security.IsAuthorized(Permissions.ReportProdInc)) { return; } FormRpAging FormA=new FormRpAging(); FormA.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Aging of A/R"); break; case 1://Claims Not Sent FormRpClaimNotSent FormClaim=new FormRpClaimNotSent(); FormClaim.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Claims Not Sent"); break; case 2://Capitation Utilization FormRpCapitation FormC=new FormRpCapitation(); FormC.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Capitation"); break; case 3://Finance Charge Report FormRpFinanceCharge FormRpFinance=new FormRpFinanceCharge(); FormRpFinance.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Finance Charges"); break; case 4://Outstanding Insurance Claims RpModalSelection=ReportModalSelection.OutstandingIns; SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Outstanding Insurance Claims"); Close(); break; case 5://Procedures Not Billed to Insurance FormRpProcNotBilledIns FormProc=new FormRpProcNotBilledIns(); FormProc.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Procedures not billed to insurance."); break; case 6://PPO Writeoffs FormRpPPOwriteoffs FormPPO=new FormRpPPOwriteoffs(); FormPPO.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"PPO Writeoffs."); break; case 7://Payment Plans FormRpPayPlans FormPP=new FormRpPayPlans(); FormPP.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Payment Plans."); break; case 8://Receivable Breakdown if(!Security.IsAuthorized(Permissions.ReportProdInc)) { return; } FormRpReceivablesBreakdown FormRcv = new FormRpReceivablesBreakdown(); FormRcv.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Receivable Breakdown."); break; case 9://Unearned Income FormRpUnearnedIncome FormU=new FormRpUnearnedIncome(); FormU.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Unearned Income."); break; case 10://Insurance Overpaid FormRpInsOverpaid FormI=new FormRpInsOverpaid(); FormI.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Insurance Overpaid."); break; } }
private void listMonthly_MouseDown(object sender, MouseEventArgs e) { int selected = listMonthly.IndexFromPoint(e.Location); if (selected == -1) { return; } switch (selected) { case 0: //Aging Report if (!Security.IsAuthorized(Permissions.ReportProdInc)) { return; } FormRpAging FormA = new FormRpAging(); FormA.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports, 0, "Aging"); break; case 1: //Claims Not Sent FormRpClaimNotSent FormClaim = new FormRpClaimNotSent(); FormClaim.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports, 0, "Claims Not Sent"); break; case 2: //Capitation Utilization FormRpCapitation FormC = new FormRpCapitation(); FormC.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports, 0, "Capitation"); break; case 3: //Finance Charge Report FormRpFinanceCharge FormRpFinance = new FormRpFinanceCharge(); FormRpFinance.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports, 0, "Finance Charges"); break; case 4: //Outstanding Insurance Claims RpModalSelection = ReportModalSelection.OutstandingIns; SecurityLogs.MakeLogEntry(Permissions.Reports, 0, "Outstanding Insurance Claims"); Close(); break; case 5: //Procedures Not Billed to Insurance FormRpProcNotBilledIns FormProc = new FormRpProcNotBilledIns(); FormProc.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports, 0, "Procedures not billed to insurance."); break; case 6: //PPO Writeoffs FormRpPPOwriteoffs FormPPO = new FormRpPPOwriteoffs(); FormPPO.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports, 0, "PPO Writeoffs."); break; case 7: //Payment Plans FormRpPayPlans FormPP = new FormRpPayPlans(); FormPP.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports, 0, "Payment Plans."); break; case 8: //Receivable Breakdown if (!Security.IsAuthorized(Permissions.ReportProdInc)) { return; } FormRpReceivablesBreakdown FormRcv = new FormRpReceivablesBreakdown(); FormRcv.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports, 0, "Receivable Breakdown."); break; case 9: //Unearned Income FormRpUnearnedIncome FormU = new FormRpUnearnedIncome(); FormU.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports, 0, "Unearned Income."); break; case 10: //Insurance Overpaid FormRpInsOverpaid FormI = new FormRpInsOverpaid(); FormI.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports, 0, "Insurance Overpaid."); break; } }
///<summary>Handles form and logic for most given displayReports. ///Returns ReportNonModalSelection.None if modal report is provided. ///If non-modal report is provided returns valid(not none) RpNonModalSelection to be handled later, See FormOpenDental.SpecialReportSelectionHelper(...)</summary> public static ReportNonModalSelection OpenReportHelper(DisplayReport displayReport,List<GroupPermission> listReportPermissions=null,bool doValidatePerm=true) { if(doValidatePerm) { if(listReportPermissions==null) { listReportPermissions=GroupPermissions.GetPermsForReports().Where(x => Security.CurUser.IsInUserGroup(x.UserGroupNum)).ToList(); } if(!listReportPermissions.Exists(x => x.FKey==displayReport.DisplayReportNum)) { MsgBox.Show("FormReportsMore","You do not have permission to run this report."); return ReportNonModalSelection.None; } } FormRpProdInc FormPI;//Used for multiple reports switch(displayReport.InternalName) { case "ODToday"://Today FormPI=new FormRpProdInc(); FormPI.DailyMonthlyAnnual="Daily"; FormPI.DateStart=DateTime.Today; FormPI.DateEnd=DateTime.Today; FormPI.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Production and Income report run for today."); break; case "ODYesterday"://Yesterday FormPI=new FormRpProdInc(); FormPI.DailyMonthlyAnnual="Daily"; if(DateTime.Today.DayOfWeek==DayOfWeek.Monday) { FormPI.DateStart=DateTime.Today.AddDays(-3); FormPI.DateEnd=DateTime.Today.AddDays(-3); } else { FormPI.DateStart=DateTime.Today.AddDays(-1); FormPI.DateEnd=DateTime.Today.AddDays(-1); } FormPI.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Production and Income report run for yesterday."); break; case "ODThisMonth"://This Month FormPI=new FormRpProdInc(); FormPI.DailyMonthlyAnnual="Monthly"; FormPI.DateStart=new DateTime(DateTime.Today.Year,DateTime.Today.Month,1); FormPI.DateEnd=new DateTime(DateTime.Today.AddMonths(1).Year,DateTime.Today.AddMonths(1).Month,1).AddDays(-1); FormPI.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Production and Income report run for this month."); break; case "ODLastMonth"://Last Month FormPI=new FormRpProdInc(); FormPI.DailyMonthlyAnnual="Monthly"; FormPI.DateStart=new DateTime(DateTime.Today.AddMonths(-1).Year,DateTime.Today.AddMonths(-1).Month,1); FormPI.DateEnd=new DateTime(DateTime.Today.Year,DateTime.Today.Month,1).AddDays(-1); FormPI.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Production and Income report run for last month."); break; case "ODThisYear"://This Year FormPI=new FormRpProdInc(); FormPI.DailyMonthlyAnnual="Annual"; FormPI.DateStart=new DateTime(DateTime.Today.Year,1,1); FormPI.DateEnd=new DateTime(DateTime.Today.Year,12,31); FormPI.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Production and Income report run for this year."); break; case "ODMoreOptions"://More Options FormPI=new FormRpProdInc(); FormPI.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Production and Income report 'more options' accessed."); break; case "ODProviderPayrollSummary": FormRpProviderPayroll FormPP=new FormRpProviderPayroll(); FormPP.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Provier Payroll Summary report run."); break; case "ODProviderPayrollDetailed": FormRpProviderPayroll FormPPD=new FormRpProviderPayroll(true); FormPPD.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Provider Payroll Detailed report run."); break; case "ODAdjustments"://Adjustments if(Security.CurUser.ProvNum==0 && !Security.IsAuthorized(Permissions.ReportDailyAllProviders,true)) { MsgBox.Show("FormReportsMore","The current user needs to be a provider or have the 'All Providers' permission for Daily reports"); break; } FormRpAdjSheet FormAdjSheet=new FormRpAdjSheet(); FormAdjSheet.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Adjustments report run."); break; case "ODPayments"://Payments if(Security.CurUser.ProvNum==0 && !Security.IsAuthorized(Permissions.ReportDailyAllProviders,true)) { MsgBox.Show("FormReportsMore","The current user needs to be a provider or have the 'All Providers' permission for Daily reports"); break; } FormRpPaySheet FormPaySheet=new FormRpPaySheet(); FormPaySheet.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Daily Payments report run."); break; case "ODProcedures"://Procedures if(Security.CurUser.ProvNum==0 && !Security.IsAuthorized(Permissions.ReportDailyAllProviders,true)) { MsgBox.Show("FormReportsMore","The current user needs to be a provider or have the 'All Providers' permission for Daily reports"); break; } FormRpProcSheet FormProcSheet=new FormRpProcSheet(); FormProcSheet.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Daily Procedures report run."); break; case "ODWriteoffs"://Writeoffs if(Security.CurUser.ProvNum==0 && !Security.IsAuthorized(Permissions.ReportDailyAllProviders,true)) { MsgBox.Show("FormReportsMore","The current user needs to be a provider or have the 'All Providers' permission for Daily reports"); break; } FormRpWriteoffSheet FormW=new FormRpWriteoffSheet(); FormW.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Daily Writeoffs report run."); break; case DisplayReports.ReportNames.IncompleteProcNotes://Incomplete Procedure Notes SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Daily Procedure Notes report run."); return ReportNonModalSelection.IncompleteProcNotes; case "ODRoutingSlips"://Routing Slips FormRpRouting FormR=new FormRpRouting(); FormR.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Routing Slips report run."); break; case "ODNetProdDetailDaily": FormRpNetProdDetail FormNetProdDetail=new FormRpNetProdDetail(true); FormNetProdDetail.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Daily Net Prod report run."); break; case DisplayReports.ReportNames.UnfinalizedInsPay: SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Unfinalized Insurance Payment report run."); return ReportNonModalSelection.UnfinalizedInsPay; case DisplayReports.ReportNames.PatPortionUncollected: FormRpPatPortionUncollected FormPPU=new FormRpPatPortionUncollected(); FormPPU.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Patient Portion Uncollected report run."); break; case "ODAgingAR"://Aging of Accounts Receivable Report FormRpAging FormA=new FormRpAging(); FormA.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Aging of A/R report run."); break; case DisplayReports.ReportNames.ClaimsNotSent://Claims Not Sent SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Claims Not Sent report run."); return ReportNonModalSelection.UnsentClaim; case "ODCapitation"://Capitation Utilization FormRpCapitation FormC=new FormRpCapitation(); FormC.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Capitation report run."); break; case "ODFinanceCharge"://Finance Charge Report FormRpFinanceCharge FormRpFinance=new FormRpFinanceCharge(); FormRpFinance.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Finance Charges report run."); break; case DisplayReports.ReportNames.OutstandingInsClaims://Outstanding Insurance Claims SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Outstanding Insurance Claims report run."); return ReportNonModalSelection.OutstandingIns; case "ODProcsNotBilled"://Procedures Not Billed to Insurance FormRpProcNotBilledIns FormProc=new FormRpProcNotBilledIns(); FormProc.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Procedures not billed to insurance report run."); break; case "ODPPOWriteoffs"://PPO Writeoffs FormRpPPOwriteoffs FormPPO=new FormRpPPOwriteoffs(); FormPPO.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"PPO Writeoffs report run."); break; case "ODPaymentPlans"://Payment Plans FormRpPayPlans FormPayPlans=new FormRpPayPlans(); FormPayPlans.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Payment Plans report run."); break; case "ODReceivablesBreakdown"://Receivable Breakdown FormRpReceivablesBreakdown FormRcv = new FormRpReceivablesBreakdown(); FormRcv.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Receivable Breakdown report run."); break; case "ODUnearnedIncome"://Unearned Income FormRpUnearnedIncome FormU=new FormRpUnearnedIncome(); FormU.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Unearned Income report run."); break; case "ODInsuranceOverpaid"://Insurance Overpaid FormRpInsOverpaid FormI=new FormRpInsOverpaid(); FormI.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Insurance Overpaid report run."); break; case "ODPresentedTreatmentProd"://Treatment Planned Presenter FormRpPresentedTreatmentProduction FormPTP=new FormRpPresentedTreatmentProduction(); FormPTP.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Treatment Plan Presenter report run."); break; case "ODTreatmentPresentationStats"://Treatment Planned Presenter FormRpTreatPlanPresentationStatistics FormTPS = new FormRpTreatPlanPresentationStatistics(); FormTPS.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Treatment Plan Presented Procedures report run."); break; case "ODInsurancePayPlansPastDue"://Insurance Payment Plans FormRpInsPayPlansPastDue FormIPP = new FormRpInsPayPlansPastDue(); FormIPP.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Insurance Payment Plan report run."); break; case DisplayReports.ReportNames.InsAging://Insurance Aging Report FormRpInsAging FormIA=new FormRpInsAging(); FormIA.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Insurance Aging report run"); break; case DisplayReports.ReportNames.CustomAging://Insurance Aging Report SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Custom Aging report run"); return ReportNonModalSelection.CustomAging; case "ODActivePatients"://Active Patients FormRpActivePatients FormAP=new FormRpActivePatients(); FormAP.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Active Patients report run."); break; case "ODAppointments"://Appointments FormRpAppointments FormAppointments=new FormRpAppointments(); FormAppointments.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Appointments report run."); break; case "ODBirthdays"://Birthdays FormRpBirthday FormB=new FormRpBirthday(); FormB.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Birthdays report run."); break; case "ODBrokenAppointments"://Broken Appointments FormRpBrokenAppointments FormBroken=new FormRpBrokenAppointments(); FormBroken.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Broken Appointments report run."); break; case "ODInsurancePlans"://Insurance Plans FormRpInsCo FormInsCo=new FormRpInsCo(); FormInsCo.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Insurance Plans report run."); break; case "ODNewPatients"://New Patients FormRpNewPatients FormNewPats=new FormRpNewPatients(); FormNewPats.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"New Patients report run."); break; case "ODPatientsRaw"://Patients - Raw if(!Security.IsAuthorized(Permissions.UserQuery)) { break; } FormRpPatients FormPatients=new FormRpPatients(); FormPatients.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Patients - Raw report run."); break; case "ODPatientNotes"://Patient Notes if(!Security.IsAuthorized(Permissions.UserQuery)) { break; } FormSearchPatNotes FormSearchPatNotes=new FormSearchPatNotes(); FormSearchPatNotes.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Patient Notes report run."); break; case "ODPrescriptions"://Prescriptions FormRpPrescriptions FormPrescript=new FormRpPrescriptions(); FormPrescript.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Rx report run."); break; case "ODProcedureCodes"://Procedure Codes FormRpProcCodes FormProcCodes=new FormRpProcCodes(); FormProcCodes.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Procedure Codes report run."); break; case "ODReferralsRaw"://Referrals - Raw if(!Security.IsAuthorized(Permissions.UserQuery)) { break; } FormRpReferrals FormReferral=new FormRpReferrals(); FormReferral.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Referrals - Raw report run."); break; case "ODReferralAnalysis"://Referral Analysis FormRpReferralAnalysis FormRA=new FormRpReferralAnalysis(); FormRA.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Referral Analysis report run."); break; case DisplayReports.ReportNames.ReferredProcTracking://Referred Proc Tracking FormReferralProcTrack FormRP=new FormReferralProcTrack(); FormRP.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"ReferredProcTracking report run."); break; case DisplayReports.ReportNames.TreatmentFinder://Treatment Finder SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Treatment Finder report run."); return ReportNonModalSelection.TreatmentFinder; case DisplayReports.ReportNames.WebSchedAppointments://Web Sched Appts SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Web Sched Appointments report run."); return ReportNonModalSelection.WebSchedAppointments; case "ODRawScreeningData"://Raw Screening Data if(!Security.IsAuthorized(Permissions.UserQuery)) { break; } FormRpPHRawScreen FormPH=new FormRpPHRawScreen(); FormPH.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"PH Raw Screening"); break; case "ODRawPopulationData"://Raw Population Data if(!Security.IsAuthorized(Permissions.UserQuery)) { break; } FormRpPHRawPop FormPHR=new FormRpPHRawPop(); FormPHR.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"PH Raw population"); break; case "ODDentalSealantMeasure"://FQHC Dental Sealant Measure FormRpDentalSealantMeasure FormDSM=new FormRpDentalSealantMeasure(); FormDSM.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"FQHC Dental Sealant Measure report run."); break; case "ODEligibilityFile"://Eligibility File FormRpArizonaPrimaryCareEligibility frapce=new FormRpArizonaPrimaryCareEligibility(); frapce.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Arizona Primary Care Eligibility"); break; case "ODEncounterFile"://Encounter File FormRpArizonaPrimaryCareEncounter frapcn=new FormRpArizonaPrimaryCareEncounter(); frapcn.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Arizona Primary Care Encounter"); break; case "ODDiscountPlan"://Discount Plans FormRpDiscountPlan FormDiscountPlan=new FormRpDiscountPlan(); FormDiscountPlan.ShowDialog(); SecurityLogs.MakeLogEntry(Permissions.Reports,0,"Discount Plans report run."); break; default: MsgBox.Show("FormReportsMore","Error finding the report"); break; } return ReportNonModalSelection.None; }