コード例 #1
0
ファイル: MainMenu.cs プロジェクト: vcstahlman/GrenciCPA
        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();
        }
コード例 #2
0
ファイル: ClientView.cs プロジェクト: vcstahlman/GrenciCPA
        //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();
        }