partial class Form1
{
/// <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.label1 = new System.Windows.Forms.Label();
this.dateTimePickerFromDate = new System.Windows.Forms.DateTimePicker();
this.dateTimePickerToDate = new System.Windows.Forms.DateTimePicker();
this.label2 = new System.Windows.Forms.Label();
this.InfoGrid = new System.Windows.Forms.DataGridView();
this.A = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.B = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.C = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.D = new System.Windows.Forms.DataGridViewTextBoxColumn();
((System.ComponentModel.ISupportInitialize)(this.InfoGrid)).BeginInit();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(20, 30);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(84, 20);
this.label1.TabIndex = 0;
this.label1.Text = "Från datum";
//
// dateTimePickerFromDate
//
this.dateTimePickerFromDate.Location = new System.Drawing.Point(104, 29);
this.dateTimePickerFromDate.Name = "dateTimePickerFromDate";
this.dateTimePickerFromDate.Size = new System.Drawing.Size(110, 27);
this.dateTimePickerFromDate.TabIndex = 1;
this.dateTimePickerFromDate.ValueChanged += new System.EventHandler(this.dateTimePickerFromDate_ValueChanged);
//
// dateTimePickerToDate
//
this.dateTimePickerToDate.Location = new System.Drawing.Point(104, 62);
this.dateTimePickerToDate.Name = "dateTimePickerToDate";
this.dateTimePickerToDate.Size = new System.Drawing.Size(110, 27);
this.dateTimePickerToDate.TabIndex = 3;
this.dateTimePickerToDate.ValueChanged += new System.EventHandler(this.dateTimePickerToDate_ValueChanged);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(20, 63);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(76, 20);
this.label2.TabIndex = 2;
this.label2.Text = "Till datum";
//
// InfoGrid
//
this.InfoGrid.AllowUserToAddRows = false;
this.InfoGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.InfoGrid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.A,
this.B,
this.C,
this.D});
this.InfoGrid.Location = new System.Drawing.Point(12, 241);
this.InfoGrid.Name = "InfoGrid";
this.InfoGrid.RowHeadersWidth = 51;
this.InfoGrid.RowTemplate.Height = 29;
this.InfoGrid.ShowEditingIcon = false;
this.InfoGrid.Size = new System.Drawing.Size(734, 188);
this.InfoGrid.TabIndex = 4;
this.InfoGrid.VirtualMode = true;
//
// A
//
this.A.HeaderText = "A";
this.A.MinimumWidth = 6;
this.A.Name = "A";
this.A.Width = 125;
//
// B
//
this.B.HeaderText = "B";
this.B.MinimumWidth = 6;
this.B.Name = "B";
this.B.Width = 125;
//
// C
//
this.C.HeaderText = "C";
this.C.MinimumWidth = 6;
this.C.Name = "C";
this.C.Width = 125;
//
// D
//
this.D.HeaderText = "D";
this.D.MinimumWidth = 6;
this.D.Name = "D";
this.D.Width = 125;
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Controls.Add(this.InfoGrid);
this.Controls.Add(this.dateTimePickerToDate);
this.Controls.Add(this.label2);
this.Controls.Add(this.dateTimePickerFromDate);
this.Controls.Add(this.label1);
this.Name = "Form1";
this.Text = "Make Reports";
this.Load += new System.EventHandler(this.Form1_Load);
((System.ComponentModel.ISupportInitialize)(this.InfoGrid)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private DataGridView InfoGrid;
private Label label1;
private DateTimePicker dateTimePickerFromDate;
private DateTimePicker dateTimePickerToDate;
private Label label2;
}
}