-
Notifications
You must be signed in to change notification settings - Fork 0
/
frm_reports.Designer.cs
110 lines (104 loc) · 5.06 KB
/
frm_reports.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
namespace PayrollSytem
{
partial class frm_reports
{
/// <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.Panel1 = new System.Windows.Forms.Panel();
this.btnPayslip = new System.Windows.Forms.Button();
this.btnweeklypayroll = new System.Windows.Forms.Button();
this.crystalReportViewer1 = new CrystalDecisions.Windows.Forms.CrystalReportViewer();
this.Panel1.SuspendLayout();
this.SuspendLayout();
//
// Panel1
//
this.Panel1.Controls.Add(this.btnPayslip);
this.Panel1.Controls.Add(this.btnweeklypayroll);
this.Panel1.Dock = System.Windows.Forms.DockStyle.Left;
this.Panel1.Location = new System.Drawing.Point(0, 0);
this.Panel1.Name = "Panel1";
this.Panel1.Size = new System.Drawing.Size(146, 464);
this.Panel1.TabIndex = 2;
//
// btnPayslip
//
this.btnPayslip.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.btnPayslip.Location = new System.Drawing.Point(12, 43);
this.btnPayslip.Name = "btnPayslip";
this.btnPayslip.Size = new System.Drawing.Size(116, 25);
this.btnPayslip.TabIndex = 5;
this.btnPayslip.Text = "Payslip";
this.btnPayslip.UseVisualStyleBackColor = true;
this.btnPayslip.Click += new System.EventHandler(this.btnPayslip_Click);
//
// btnweeklypayroll
//
this.btnweeklypayroll.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.btnweeklypayroll.Location = new System.Drawing.Point(12, 12);
this.btnweeklypayroll.Name = "btnweeklypayroll";
this.btnweeklypayroll.Size = new System.Drawing.Size(116, 25);
this.btnweeklypayroll.TabIndex = 4;
this.btnweeklypayroll.Text = "Weekly Payroll";
this.btnweeklypayroll.UseVisualStyleBackColor = true;
this.btnweeklypayroll.Click += new System.EventHandler(this.btnweeklypayroll_Click);
//
// crystalReportViewer1
//
this.crystalReportViewer1.ActiveViewIndex = -1;
this.crystalReportViewer1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.crystalReportViewer1.Cursor = System.Windows.Forms.Cursors.Default;
this.crystalReportViewer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.crystalReportViewer1.Location = new System.Drawing.Point(146, 0);
this.crystalReportViewer1.Name = "crystalReportViewer1";
this.crystalReportViewer1.ShowCloseButton = false;
this.crystalReportViewer1.ShowGroupTreeButton = false;
this.crystalReportViewer1.ShowParameterPanelButton = false;
this.crystalReportViewer1.ShowRefreshButton = false;
this.crystalReportViewer1.Size = new System.Drawing.Size(685, 464);
this.crystalReportViewer1.TabIndex = 3;
this.crystalReportViewer1.ToolPanelView = CrystalDecisions.Windows.Forms.ToolPanelViewType.None;
//
// frm_reports
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(831, 464);
this.Controls.Add(this.crystalReportViewer1);
this.Controls.Add(this.Panel1);
this.Name = "frm_reports";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Reports";
this.Panel1.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
internal System.Windows.Forms.Panel Panel1;
internal System.Windows.Forms.Button btnPayslip;
internal System.Windows.Forms.Button btnweeklypayroll;
private CrystalDecisions.Windows.Forms.CrystalReportViewer crystalReportViewer1;
}
}