コード例 #1
0
ファイル: fMain.cs プロジェクト: baffled/bookstore
        protected void showPurchaseHistoryForm(String bookId, Boolean isModal)
        {
            String results = String.Empty;

            if (_server.reportPurchaseHistory(bookId, ref results) == false)
            {
                return;
            }

            fReport f = new fReport();

            if (isModal == false)
            {
                f.MdiParent = this;
            }
            f.showReport(results, '\f', isModal);
        }
コード例 #2
0
ファイル: fMain.cs プロジェクト: baffled/bookstore
        protected void showOrderReportForm(String orderId, string clientId, Boolean isModal)
        {
            String results = String.Empty;

            if (_server.reportOrders(orderId, clientId, ref results) == false)
            {
                return;
            }

            fReport f = new fReport();

            if (isModal == false)
            {
                f.MdiParent = this;
            }
            f.showReport(results, '\f', isModal);
        }