Hệ thống tính lương trong C# với mã nguồn

1 namespace PayrollSytem
2 {
3     
partial class frm_reports
4     {

5         ///
<summary>
6         ///
Required designer variable.
7         ///
</summary>
8         
private System.ComponentModel.IContainer components = null;
9
10         ///
<summary>
11         ///
Clean up any resources being used.
12         ///
</summary>
13         ///
<param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14         
protected override void Dispose(bool disposing)
15         {
16             
if (disposing && (components != null))
17             {
18                 components.Dispose();
19             }
20             
base.Dispose(disposing);
21         }
22
23         
#region Windows Form Designer generated code
24
25         ///
<summary>
26         ///
Required method for Designer support - do not modify
27         ///
the contents of this method with the code editor.
28         ///
</summary>
29         
private void InitializeComponent()
30         {
31             
this.Panel1 = new System.Windows.Forms.Panel();
32             
this.btnPayslip = new System.Windows.Forms.Button();
33             
this.btnweeklypayroll = new System.Windows.Forms.Button();
34             
this.crystalReportViewer1 = new CrystalDecisions.Windows.Forms.CrystalReportViewer();
35             
this.Panel1.SuspendLayout();
36             
this.SuspendLayout();
37             
//
38             
// Panel1
39             
//
40             
this.Panel1.Controls.Add(this.btnPayslip);
41             
this.Panel1.Controls.Add(this.btnweeklypayroll);
42             
this.Panel1.Dock = System.Windows.Forms.DockStyle.Left;
43             
this.Panel1.Location = new System.Drawing.Point(0, 0);
44             
this.Panel1.Name = "Panel1";
45             
this.Panel1.Size = new System.Drawing.Size(146, 464);
46             
this.Panel1.TabIndex = 2;
47             
//
48             
// btnPayslip
49             
//
50             
this.btnPayslip.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
51             | System.Windows.Forms.AnchorStyles.Right)));
52             
this.btnPayslip.Location = new System.Drawing.Point(12, 43);
53             
this.btnPayslip.Name = "btnPayslip";
54             
this.btnPayslip.Size = new System.Drawing.Size(116, 25);
55             
this.btnPayslip.TabIndex = 5;
56             
this.btnPayslip.Text = "Payslip";
57             
this.btnPayslip.UseVisualStyleBackColor = true;
58             
this.btnPayslip.Click += new System.EventHandler(this.btnPayslip_Click);
59             
//
60             
// btnweeklypayroll
61             
//
62             
this.btnweeklypayroll.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
63             | System.Windows.Forms.AnchorStyles.Right)));
64             
this.btnweeklypayroll.Location = new System.Drawing.Point(12, 12);
65             
this.btnweeklypayroll.Name = "btnweeklypayroll";
66             
this.btnweeklypayroll.Size = new System.Drawing.Size(116, 25);
67             
this.btnweeklypayroll.TabIndex = 4;
68             
this.btnweeklypayroll.Text = "Weekly Payroll";
69             
this.btnweeklypayroll.UseVisualStyleBackColor = true;
70             
this.btnweeklypayroll.Click += new System.EventHandler(this.btnweeklypayroll_Click);
71             
//
72             
// crystalReportViewer1
73             
//
74             
this.crystalReportViewer1.ActiveViewIndex = -1;
75             
this.crystalReportViewer1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
76             
this.crystalReportViewer1.Cursor = System.Windows.Forms.Cursors.Default;
77             
this.crystalReportViewer1.Dock = System.Windows.Forms.DockStyle.Fill;
78             
this.crystalReportViewer1.Location = new System.Drawing.Point(146, 0);
79             
this.crystalReportViewer1.Name = "crystalReportViewer1";
80             
this.crystalReportViewer1.ShowCloseButton = false;
81             
this.crystalReportViewer1.ShowGroupTreeButton = false;
82             
this.crystalReportViewer1.ShowParameterPanelButton = false;
83             
this.crystalReportViewer1.ShowRefreshButton = false;
84             
this.crystalReportViewer1.Size = new System.Drawing.Size(685, 464);
85             
this.crystalReportViewer1.TabIndex = 3;
86             
this.crystalReportViewer1.ToolPanelView = CrystalDecisions.Windows.Forms.ToolPanelViewType.None;
87             
//
88             
// frm_reports
89             
//
90             
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
91             
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
92             
this.ClientSize = new System.Drawing.Size(831, 464);
93             
this.Controls.Add(this.crystalReportViewer1);
94             
this.Controls.Add(this.Panel1);
95             
this.Name = "frm_reports";
96             
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
97             
this.Text = "Reports";
98             
this.Panel1.ResumeLayout(false);
99             
this.ResumeLayout(false);
100
101         }
102
103         
#endregion
104
105         
internal System.Windows.Forms.Panel Panel1;
106         
internal System.Windows.Forms.Button btnPayslip;
107         
internal System.Windows.Forms.Button btnweeklypayroll;
108         
private CrystalDecisions.Windows.Forms.CrystalReportViewer crystalReportViewer1;
109     }
110 }


Gõ tìm kiếm nhanh...