76 lines
2.8 KiB
C#
76 lines
2.8 KiB
C#
|
namespace Payroll.Report
|
|||
|
{
|
|||
|
partial class fReportViewer
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Required designer variable.
|
|||
|
/// </summary>
|
|||
|
private System.ComponentModel.IContainer components = null;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Clean up any resources being used.
|
|||
|
/// </summary>
|
|||
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|||
|
protected override void Dispose(bool disposing)
|
|||
|
{
|
|||
|
if (disposing && (components != null))
|
|||
|
{
|
|||
|
components.Dispose();
|
|||
|
}
|
|||
|
base.Dispose(disposing);
|
|||
|
}
|
|||
|
|
|||
|
#region Windows Form Designer generated code
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Required method for Designer support - do not modify
|
|||
|
/// the contents of this method with the code editor.
|
|||
|
/// </summary>
|
|||
|
private void InitializeComponent()
|
|||
|
{
|
|||
|
this.bttnClose = new System.Windows.Forms.Button();
|
|||
|
this.rptViewer = new Microsoft.Reporting.WinForms.ReportViewer();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// bttnClose
|
|||
|
//
|
|||
|
this.bttnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|||
|
this.bttnClose.Location = new System.Drawing.Point(267, 251);
|
|||
|
this.bttnClose.Name = "bttnClose";
|
|||
|
this.bttnClose.Size = new System.Drawing.Size(75, 23);
|
|||
|
this.bttnClose.TabIndex = 1;
|
|||
|
this.bttnClose.Text = "button1";
|
|||
|
this.bttnClose.UseVisualStyleBackColor = true;
|
|||
|
//
|
|||
|
// rptViewer
|
|||
|
//
|
|||
|
this.rptViewer.Dock = System.Windows.Forms.DockStyle.Fill;
|
|||
|
this.rptViewer.Location = new System.Drawing.Point(0, 0);
|
|||
|
this.rptViewer.Name = "rptViewer";
|
|||
|
this.rptViewer.Size = new System.Drawing.Size(797, 590);
|
|||
|
this.rptViewer.TabIndex = 2;
|
|||
|
//
|
|||
|
// fReportViewer
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.CancelButton = this.bttnClose;
|
|||
|
this.ClientSize = new System.Drawing.Size(797, 590);
|
|||
|
this.Controls.Add(this.rptViewer);
|
|||
|
this.Controls.Add(this.bttnClose);
|
|||
|
this.Name = "fReportViewer";
|
|||
|
this.ShowInTaskbar = false;
|
|||
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|||
|
this.Text = "Report";
|
|||
|
this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
|
|||
|
this.Load += new System.EventHandler(this.fReportViewer_Load);
|
|||
|
this.ResumeLayout(false);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.Button bttnClose;
|
|||
|
private Microsoft.Reporting.WinForms.ReportViewer rptViewer;
|
|||
|
}
|
|||
|
}
|