-
Notifications
You must be signed in to change notification settings - Fork 0
/
Reports.Designer.cs
130 lines (124 loc) · 5.98 KB
/
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
namespace Appointment_Scheduler_Felix_Berinde
{
partial class 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.backButton = new System.Windows.Forms.Button();
this.reportsTextBox = new System.Windows.Forms.TextBox();
this.appointmentTypeButton = new System.Windows.Forms.Button();
this.schedulesButton = new System.Windows.Forms.Button();
this.activeCustomersButton = new System.Windows.Forms.Button();
this.printButton = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// backButton
//
this.backButton.Location = new System.Drawing.Point(12, 515);
this.backButton.Name = "backButton";
this.backButton.Size = new System.Drawing.Size(75, 23);
this.backButton.TabIndex = 11;
this.backButton.Text = "Go Back";
this.backButton.UseVisualStyleBackColor = true;
this.backButton.Click += new System.EventHandler(this.backButton_Click);
//
// reportsTextBox
//
this.reportsTextBox.Location = new System.Drawing.Point(12, 52);
this.reportsTextBox.Multiline = true;
this.reportsTextBox.Name = "reportsTextBox";
this.reportsTextBox.ReadOnly = true;
this.reportsTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.reportsTextBox.Size = new System.Drawing.Size(557, 457);
this.reportsTextBox.TabIndex = 12;
//
// appointmentTypeButton
//
this.appointmentTypeButton.Location = new System.Drawing.Point(12, 23);
this.appointmentTypeButton.Name = "appointmentTypeButton";
this.appointmentTypeButton.Size = new System.Drawing.Size(121, 23);
this.appointmentTypeButton.TabIndex = 13;
this.appointmentTypeButton.Text = "Appointment Types";
this.appointmentTypeButton.UseVisualStyleBackColor = true;
this.appointmentTypeButton.Click += new System.EventHandler(this.appointmentTypeButton_Click);
//
// schedulesButton
//
this.schedulesButton.Location = new System.Drawing.Point(231, 23);
this.schedulesButton.Name = "schedulesButton";
this.schedulesButton.Size = new System.Drawing.Size(121, 23);
this.schedulesButton.TabIndex = 14;
this.schedulesButton.Text = "Consultant Schedules";
this.schedulesButton.UseVisualStyleBackColor = true;
this.schedulesButton.Click += new System.EventHandler(this.schedulesButton_Click);
//
// activeCustomersButton
//
this.activeCustomersButton.Location = new System.Drawing.Point(448, 23);
this.activeCustomersButton.Name = "activeCustomersButton";
this.activeCustomersButton.Size = new System.Drawing.Size(121, 23);
this.activeCustomersButton.TabIndex = 15;
this.activeCustomersButton.Text = "Active Customers";
this.activeCustomersButton.UseVisualStyleBackColor = true;
this.activeCustomersButton.Click += new System.EventHandler(this.activeCustomersButton_Click);
//
// printButton
//
this.printButton.Location = new System.Drawing.Point(494, 515);
this.printButton.Name = "printButton";
this.printButton.Size = new System.Drawing.Size(75, 23);
this.printButton.TabIndex = 16;
this.printButton.Text = "Print";
this.printButton.UseVisualStyleBackColor = true;
this.printButton.Click += new System.EventHandler(this.printButton_Click);
//
// Reports
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(581, 550);
this.Controls.Add(this.printButton);
this.Controls.Add(this.activeCustomersButton);
this.Controls.Add(this.schedulesButton);
this.Controls.Add(this.appointmentTypeButton);
this.Controls.Add(this.reportsTextBox);
this.Controls.Add(this.backButton);
this.MaximumSize = new System.Drawing.Size(597, 589);
this.MinimumSize = new System.Drawing.Size(597, 589);
this.Name = "Reports";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Reports";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button backButton;
private System.Windows.Forms.TextBox reportsTextBox;
private System.Windows.Forms.Button appointmentTypeButton;
private System.Windows.Forms.Button schedulesButton;
private System.Windows.Forms.Button activeCustomersButton;
private System.Windows.Forms.Button printButton;
}
}