private void btnReport_Click(object sender, EventArgs e) { // this button instantiates a form that replicates a reports page, where the user can conduct advanced searches based on specific parameters ReportDemo form = new ReportDemo(); form.ShowDialog(); }
//sends the user to a list of payments they have made private void btnPayments_Click(object sender, EventArgs e) { ReportDemo form = new ReportDemo(clientID); form.ShowDialog(); }