132 lines
5.7 KiB
C#
132 lines
5.7 KiB
C#
namespace AdvertsingProfitControl
|
|
{
|
|
partial class DebugDatabaseConverter
|
|
{
|
|
/// <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.existingDatesListBox = new System.Windows.Forms.ListBox();
|
|
this.datesToConvertListBox = new System.Windows.Forms.ListBox();
|
|
this.moveOverButton = new System.Windows.Forms.Button();
|
|
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
|
|
this.convertButton = new System.Windows.Forms.Button();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.button1 = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// existingDatesListBox
|
|
//
|
|
this.existingDatesListBox.FormattingEnabled = true;
|
|
this.existingDatesListBox.ItemHeight = 24;
|
|
this.existingDatesListBox.Location = new System.Drawing.Point(23, 12);
|
|
this.existingDatesListBox.Name = "existingDatesListBox";
|
|
this.existingDatesListBox.SelectionMode = System.Windows.Forms.SelectionMode.MultiExtended;
|
|
this.existingDatesListBox.Size = new System.Drawing.Size(353, 364);
|
|
this.existingDatesListBox.TabIndex = 0;
|
|
//
|
|
// datesToConvertListBox
|
|
//
|
|
this.datesToConvertListBox.FormattingEnabled = true;
|
|
this.datesToConvertListBox.ItemHeight = 24;
|
|
this.datesToConvertListBox.Location = new System.Drawing.Point(556, 29);
|
|
this.datesToConvertListBox.Name = "datesToConvertListBox";
|
|
this.datesToConvertListBox.Size = new System.Drawing.Size(97, 52);
|
|
this.datesToConvertListBox.TabIndex = 1;
|
|
//
|
|
// moveOverButton
|
|
//
|
|
this.moveOverButton.Enabled = false;
|
|
this.moveOverButton.Location = new System.Drawing.Point(381, 417);
|
|
this.moveOverButton.Name = "moveOverButton";
|
|
this.moveOverButton.Size = new System.Drawing.Size(160, 56);
|
|
this.moveOverButton.TabIndex = 2;
|
|
this.moveOverButton.Text = "Move Selected";
|
|
this.moveOverButton.UseVisualStyleBackColor = true;
|
|
this.moveOverButton.Click += new System.EventHandler(this.MoveOverButton_Click);
|
|
//
|
|
// openFileDialog1
|
|
//
|
|
this.openFileDialog1.FileName = "openFileDialog1";
|
|
//
|
|
// convertButton
|
|
//
|
|
this.convertButton.Location = new System.Drawing.Point(556, 530);
|
|
this.convertButton.Name = "convertButton";
|
|
this.convertButton.Size = new System.Drawing.Size(133, 50);
|
|
this.convertButton.TabIndex = 3;
|
|
this.convertButton.Text = "Convert";
|
|
this.convertButton.UseVisualStyleBackColor = true;
|
|
this.convertButton.Click += new System.EventHandler(this.convertButton_Click);
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(12, 515);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(64, 25);
|
|
this.label1.TabIndex = 4;
|
|
this.label1.Text = "label1";
|
|
//
|
|
// button1
|
|
//
|
|
this.button1.Location = new System.Drawing.Point(400, 530);
|
|
this.button1.Name = "button1";
|
|
this.button1.Size = new System.Drawing.Size(141, 58);
|
|
this.button1.TabIndex = 5;
|
|
this.button1.Text = "button1";
|
|
this.button1.UseVisualStyleBackColor = true;
|
|
this.button1.Click += new System.EventHandler(this.button1_Click);
|
|
//
|
|
// DebugDatabaseConverter
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(11F, 24F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(701, 592);
|
|
this.Controls.Add(this.button1);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.convertButton);
|
|
this.Controls.Add(this.moveOverButton);
|
|
this.Controls.Add(this.datesToConvertListBox);
|
|
this.Controls.Add(this.existingDatesListBox);
|
|
this.Name = "DebugDatabaseConverter";
|
|
this.Text = "DebugDatabaseConverter";
|
|
this.Load += new System.EventHandler(this.DebugDatabaseConverter_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.ListBox existingDatesListBox;
|
|
private System.Windows.Forms.ListBox datesToConvertListBox;
|
|
private System.Windows.Forms.Button moveOverButton;
|
|
private System.Windows.Forms.OpenFileDialog openFileDialog1;
|
|
private System.Windows.Forms.Button convertButton;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Button button1;
|
|
}
|
|
} |