195 lines
8.0 KiB
C#
195 lines
8.0 KiB
C#
using System.ComponentModel;
|
|
|
|
namespace C969Project;
|
|
|
|
partial class ReportsForm
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private 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()
|
|
{
|
|
tabControl1 = new System.Windows.Forms.TabControl();
|
|
apptByMothTabPage = new System.Windows.Forms.TabPage();
|
|
refreshButton1 = new System.Windows.Forms.Button();
|
|
apptByMonthDataGrid = new System.Windows.Forms.DataGridView();
|
|
userSchedulesTabPage = new System.Windows.Forms.TabPage();
|
|
userScheduleDataGrid = new System.Windows.Forms.DataGridView();
|
|
userComboBox = new System.Windows.Forms.ComboBox();
|
|
refreshButton2 = new System.Windows.Forms.Button();
|
|
customersByCityTabPage = new System.Windows.Forms.TabPage();
|
|
refreshButton3 = new System.Windows.Forms.Button();
|
|
customersByCityDataGrid = new System.Windows.Forms.DataGridView();
|
|
tabControl1.SuspendLayout();
|
|
apptByMothTabPage.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)apptByMonthDataGrid).BeginInit();
|
|
userSchedulesTabPage.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)userScheduleDataGrid).BeginInit();
|
|
customersByCityTabPage.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)customersByCityDataGrid).BeginInit();
|
|
SuspendLayout();
|
|
//
|
|
// tabControl1
|
|
//
|
|
tabControl1.Controls.Add(apptByMothTabPage);
|
|
tabControl1.Controls.Add(userSchedulesTabPage);
|
|
tabControl1.Controls.Add(customersByCityTabPage);
|
|
tabControl1.Location = new System.Drawing.Point(12, 12);
|
|
tabControl1.Name = "tabControl1";
|
|
tabControl1.SelectedIndex = 0;
|
|
tabControl1.Size = new System.Drawing.Size(776, 426);
|
|
tabControl1.TabIndex = 0;
|
|
//
|
|
// apptByMothTabPage
|
|
//
|
|
apptByMothTabPage.Controls.Add(refreshButton1);
|
|
apptByMothTabPage.Controls.Add(apptByMonthDataGrid);
|
|
apptByMothTabPage.Location = new System.Drawing.Point(4, 24);
|
|
apptByMothTabPage.Name = "apptByMothTabPage";
|
|
apptByMothTabPage.Padding = new System.Windows.Forms.Padding(3);
|
|
apptByMothTabPage.Size = new System.Drawing.Size(768, 398);
|
|
apptByMothTabPage.TabIndex = 0;
|
|
apptByMothTabPage.Text = "Appts By Month";
|
|
apptByMothTabPage.UseVisualStyleBackColor = true;
|
|
//
|
|
// refreshButton1
|
|
//
|
|
refreshButton1.Location = new System.Drawing.Point(672, 369);
|
|
refreshButton1.Name = "refreshButton1";
|
|
refreshButton1.Size = new System.Drawing.Size(90, 23);
|
|
refreshButton1.TabIndex = 2;
|
|
refreshButton1.Text = "Refresh";
|
|
refreshButton1.UseVisualStyleBackColor = true;
|
|
//
|
|
// apptByMonthDataGrid
|
|
//
|
|
apptByMonthDataGrid.Location = new System.Drawing.Point(6, 6);
|
|
apptByMonthDataGrid.Name = "apptByMonthDataGrid";
|
|
apptByMonthDataGrid.ReadOnly = true;
|
|
apptByMonthDataGrid.Size = new System.Drawing.Size(756, 357);
|
|
apptByMonthDataGrid.TabIndex = 1;
|
|
//
|
|
// userSchedulesTabPage
|
|
//
|
|
userSchedulesTabPage.Controls.Add(userScheduleDataGrid);
|
|
userSchedulesTabPage.Controls.Add(userComboBox);
|
|
userSchedulesTabPage.Controls.Add(refreshButton2);
|
|
userSchedulesTabPage.Location = new System.Drawing.Point(4, 24);
|
|
userSchedulesTabPage.Name = "userSchedulesTabPage";
|
|
userSchedulesTabPage.Padding = new System.Windows.Forms.Padding(3);
|
|
userSchedulesTabPage.Size = new System.Drawing.Size(768, 398);
|
|
userSchedulesTabPage.TabIndex = 1;
|
|
userSchedulesTabPage.Text = "User Schedules";
|
|
userSchedulesTabPage.UseVisualStyleBackColor = true;
|
|
//
|
|
// userScheduleDataGrid
|
|
//
|
|
userScheduleDataGrid.Location = new System.Drawing.Point(6, 35);
|
|
userScheduleDataGrid.Name = "userScheduleDataGrid";
|
|
userScheduleDataGrid.Size = new System.Drawing.Size(756, 357);
|
|
userScheduleDataGrid.TabIndex = 5;
|
|
//
|
|
// userComboBox
|
|
//
|
|
userComboBox.FormattingEnabled = true;
|
|
userComboBox.Location = new System.Drawing.Point(6, 6);
|
|
userComboBox.Name = "userComboBox";
|
|
userComboBox.Size = new System.Drawing.Size(660, 23);
|
|
userComboBox.TabIndex = 4;
|
|
//
|
|
// refreshButton2
|
|
//
|
|
refreshButton2.Location = new System.Drawing.Point(672, 6);
|
|
refreshButton2.Name = "refreshButton2";
|
|
refreshButton2.Size = new System.Drawing.Size(90, 23);
|
|
refreshButton2.TabIndex = 3;
|
|
refreshButton2.Text = "Refresh";
|
|
refreshButton2.UseVisualStyleBackColor = true;
|
|
//
|
|
// customersByCityTabPage
|
|
//
|
|
customersByCityTabPage.Controls.Add(refreshButton3);
|
|
customersByCityTabPage.Controls.Add(customersByCityDataGrid);
|
|
customersByCityTabPage.Location = new System.Drawing.Point(4, 24);
|
|
customersByCityTabPage.Name = "customersByCityTabPage";
|
|
customersByCityTabPage.Size = new System.Drawing.Size(768, 398);
|
|
customersByCityTabPage.TabIndex = 2;
|
|
customersByCityTabPage.Text = "Customers By City";
|
|
customersByCityTabPage.UseVisualStyleBackColor = true;
|
|
//
|
|
// refreshButton3
|
|
//
|
|
refreshButton3.Location = new System.Drawing.Point(675, 372);
|
|
refreshButton3.Name = "refreshButton3";
|
|
refreshButton3.Size = new System.Drawing.Size(90, 23);
|
|
refreshButton3.TabIndex = 3;
|
|
refreshButton3.Text = "Refresh";
|
|
refreshButton3.UseVisualStyleBackColor = true;
|
|
//
|
|
// customersByCityDataGrid
|
|
//
|
|
customersByCityDataGrid.Location = new System.Drawing.Point(3, 3);
|
|
customersByCityDataGrid.Name = "customersByCityDataGrid";
|
|
customersByCityDataGrid.ReadOnly = true;
|
|
customersByCityDataGrid.Size = new System.Drawing.Size(762, 363);
|
|
customersByCityDataGrid.TabIndex = 2;
|
|
//
|
|
// ReportsForm
|
|
//
|
|
AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
|
|
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
ClientSize = new System.Drawing.Size(800, 450);
|
|
Controls.Add(tabControl1);
|
|
Text = "ReportsForm";
|
|
tabControl1.ResumeLayout(false);
|
|
apptByMothTabPage.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)apptByMonthDataGrid).EndInit();
|
|
userSchedulesTabPage.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)userScheduleDataGrid).EndInit();
|
|
customersByCityTabPage.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)customersByCityDataGrid).EndInit();
|
|
ResumeLayout(false);
|
|
}
|
|
|
|
private System.Windows.Forms.DataGridView customersByCityDataGrid;
|
|
private System.Windows.Forms.Button refreshButton3;
|
|
|
|
private System.Windows.Forms.DataGridView userScheduleDataGrid;
|
|
|
|
private System.Windows.Forms.ComboBox userComboBox;
|
|
|
|
private System.Windows.Forms.Button refreshButton2;
|
|
|
|
private System.Windows.Forms.Button refreshButton1;
|
|
|
|
private System.Windows.Forms.TabPage customersByCityTabPage;
|
|
private System.Windows.Forms.DataGridView apptByMonthDataGrid;
|
|
|
|
private System.Windows.Forms.TabControl tabControl1;
|
|
private System.Windows.Forms.TabPage apptByMothTabPage;
|
|
private System.Windows.Forms.TabPage userSchedulesTabPage;
|
|
|
|
#endregion
|
|
} |