job chart 추가
This commit is contained in:
33
SubProject/FPJ0000/JobReport/rJobChart.cs
Normal file
33
SubProject/FPJ0000/JobReport/rJobChart.cs
Normal file
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace FPJ0000.JobReport
|
||||
{
|
||||
public partial class rJobChart : Form
|
||||
{
|
||||
public rJobChart(string uid,string sdate, string edate)
|
||||
{
|
||||
InitializeComponent();
|
||||
this.WindowState = FormWindowState.Maximized;
|
||||
//var ps = new Microsoft.Reporting.WinForms.ReportParameterCollection();
|
||||
//this.reportViewer1.LocalReport.SetParameters(ps);
|
||||
this.ta.Fill(this.dsPRJ.JobReport,sdate,edate,uid);
|
||||
}
|
||||
|
||||
private void rJobReport_Load(object sender, EventArgs e)
|
||||
{
|
||||
this.Show();
|
||||
Application.DoEvents();
|
||||
|
||||
this.reportViewer1.SetDisplayMode( Microsoft.Reporting.WinForms.DisplayMode.PrintLayout);
|
||||
this.reportViewer1.ZoomMode = Microsoft.Reporting.WinForms.ZoomMode.PageWidth;
|
||||
this.reportViewer1.RefreshReport();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user