private void ExecuteExport(object obj)
        {
            GlobalClass.ReportName   = "Footfall Report";
            GlobalClass.ReportParams = "";
            wExportFormat ef = new wExportFormat(rv.Report);

            ef.ShowDialog();
        }
        private void ExecuteExport(object obj)
        {
            GlobalClass.ReportName   = "Transaction Activity Log";
            GlobalClass.ReportParams = string.Format("From Date : {0} To {1}", FromDate.ToString("MM/dd/yyyy"), ToDate.ToString("MM/dd/yyyy"));
            wExportFormat ef = new wExportFormat(rv.Report);

            ef.ShowDialog();
        }
示例#3
0
        public override void ExecuteExport(object obj)
        {
            GlobalClass.ReportName = "Goods Received Detail";

            GlobalClass.ReportParams = string.Format("From Date : {0} To {1}", FDate.ToString("MM/dd/yyyy"), TDate.ToString("MM/dd/yyyy"));

            wExportFormat ef = new wExportFormat(Report);
            ef.ShowDialog();
        }
示例#4
0
        public override void ExecuteExport(object obj)
        {
            GlobalClass.ReportName   = "Picking List Variance";
            GlobalClass.ReportParams = string.Format("Requisition Id : {0}", ReqId);

            wExportFormat ef = new wExportFormat(Report);

            ef.ShowDialog();
        }
        private void ExecuteExport(object obj)
        {
            GlobalClass.ReportName   = GetReportName();
            GlobalClass.ReportParams = string.Format("From Date : {0} To {1}", FDate.ToString("MM/dd/yyyy"), TDate.ToString("MM/dd/yyyy"));

            wExportFormat ef = new wExportFormat(Report);

            ef.ShowDialog();
        }
        public override void ExecuteExport(object obj)
        {
            GlobalClass.ReportName = "Location Wise Stock Report";

            GlobalClass.ReportParams = "";// string.Format("From Date : {0} To {1}", FDate.ToString("MM/dd/yyyy"), TDate.ToString("MM/dd/yyyy"));

            wExportFormat ef = new wExportFormat(Report);

            ef.ShowDialog();
        }