139 lines
6.5 KiB
C#
139 lines
6.5 KiB
C#
|
|
namespace DatabaseMigrator
|
|||
|
|
{
|
|||
|
|
partial class MigrationForm
|
|||
|
|
{
|
|||
|
|
/// <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()
|
|||
|
|
{
|
|||
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MigrationForm));
|
|||
|
|
this.buttonOK = new System.Windows.Forms.Button();
|
|||
|
|
this.buttonCancel = new System.Windows.Forms.Button();
|
|||
|
|
this.MigrationStatusLabel = new System.Windows.Forms.Label();
|
|||
|
|
this.statusTextLabel = new System.Windows.Forms.Label();
|
|||
|
|
this.label1 = new System.Windows.Forms.Label();
|
|||
|
|
this.TbDatabasePath = new System.Windows.Forms.TextBox();
|
|||
|
|
this.numericUpDownDesiredVersion = new System.Windows.Forms.NumericUpDown();
|
|||
|
|
((System.ComponentModel.ISupportInitialize)(this.numericUpDownDesiredVersion)).BeginInit();
|
|||
|
|
this.SuspendLayout();
|
|||
|
|
//
|
|||
|
|
// buttonOK
|
|||
|
|
//
|
|||
|
|
this.buttonOK.Location = new System.Drawing.Point(191, 341);
|
|||
|
|
this.buttonOK.Name = "buttonOK";
|
|||
|
|
this.buttonOK.Size = new System.Drawing.Size(95, 33);
|
|||
|
|
this.buttonOK.TabIndex = 0;
|
|||
|
|
this.buttonOK.Text = "OK";
|
|||
|
|
this.buttonOK.UseVisualStyleBackColor = true;
|
|||
|
|
this.buttonOK.Click += new System.EventHandler(this.buttonOK_Click);
|
|||
|
|
//
|
|||
|
|
// buttonCancel
|
|||
|
|
//
|
|||
|
|
this.buttonCancel.Location = new System.Drawing.Point(327, 341);
|
|||
|
|
this.buttonCancel.Name = "buttonCancel";
|
|||
|
|
this.buttonCancel.Size = new System.Drawing.Size(95, 33);
|
|||
|
|
this.buttonCancel.TabIndex = 1;
|
|||
|
|
this.buttonCancel.Text = "Cancel";
|
|||
|
|
this.buttonCancel.UseVisualStyleBackColor = true;
|
|||
|
|
this.buttonCancel.Click += new System.EventHandler(this.buttonCancel_Click);
|
|||
|
|
//
|
|||
|
|
// MigrationStatusLabel
|
|||
|
|
//
|
|||
|
|
this.MigrationStatusLabel.AutoSize = true;
|
|||
|
|
this.MigrationStatusLabel.Location = new System.Drawing.Point(24, 389);
|
|||
|
|
this.MigrationStatusLabel.Name = "MigrationStatusLabel";
|
|||
|
|
this.MigrationStatusLabel.Size = new System.Drawing.Size(0, 13);
|
|||
|
|
this.MigrationStatusLabel.TabIndex = 2;
|
|||
|
|
//
|
|||
|
|
// statusTextLabel
|
|||
|
|
//
|
|||
|
|
this.statusTextLabel.AutoSize = true;
|
|||
|
|
this.statusTextLabel.Location = new System.Drawing.Point(24, 415);
|
|||
|
|
this.statusTextLabel.Name = "statusTextLabel";
|
|||
|
|
this.statusTextLabel.Size = new System.Drawing.Size(0, 13);
|
|||
|
|
this.statusTextLabel.TabIndex = 3;
|
|||
|
|
//
|
|||
|
|
// label1
|
|||
|
|
//
|
|||
|
|
this.label1.AutoSize = true;
|
|||
|
|
this.label1.Location = new System.Drawing.Point(47, 53);
|
|||
|
|
this.label1.Name = "label1";
|
|||
|
|
this.label1.Size = new System.Drawing.Size(244, 13);
|
|||
|
|
this.label1.TabIndex = 4;
|
|||
|
|
this.label1.Text = "The following database will be migrated to version ";
|
|||
|
|
//
|
|||
|
|
// TbDatabasePath
|
|||
|
|
//
|
|||
|
|
this.TbDatabasePath.Location = new System.Drawing.Point(50, 84);
|
|||
|
|
this.TbDatabasePath.Name = "TbDatabasePath";
|
|||
|
|
this.TbDatabasePath.Size = new System.Drawing.Size(530, 20);
|
|||
|
|
this.TbDatabasePath.TabIndex = 5;
|
|||
|
|
//
|
|||
|
|
// numericUpDownDesiredVersion
|
|||
|
|
//
|
|||
|
|
this.numericUpDownDesiredVersion.Location = new System.Drawing.Point(297, 53);
|
|||
|
|
this.numericUpDownDesiredVersion.Name = "numericUpDownDesiredVersion";
|
|||
|
|
this.numericUpDownDesiredVersion.Size = new System.Drawing.Size(61, 20);
|
|||
|
|
this.numericUpDownDesiredVersion.TabIndex = 6;
|
|||
|
|
this.numericUpDownDesiredVersion.ValueChanged += new System.EventHandler(this.numericUpDownDesiredVersion_ValueChanged);
|
|||
|
|
//
|
|||
|
|
// MigrationForm
|
|||
|
|
//
|
|||
|
|
this.AcceptButton = this.buttonOK;
|
|||
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|||
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
|
this.ClientSize = new System.Drawing.Size(620, 468);
|
|||
|
|
this.Controls.Add(this.numericUpDownDesiredVersion);
|
|||
|
|
this.Controls.Add(this.TbDatabasePath);
|
|||
|
|
this.Controls.Add(this.label1);
|
|||
|
|
this.Controls.Add(this.statusTextLabel);
|
|||
|
|
this.Controls.Add(this.MigrationStatusLabel);
|
|||
|
|
this.Controls.Add(this.buttonCancel);
|
|||
|
|
this.Controls.Add(this.buttonOK);
|
|||
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|||
|
|
this.MaximizeBox = false;
|
|||
|
|
this.MinimizeBox = false;
|
|||
|
|
this.Name = "MigrationForm";
|
|||
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|||
|
|
this.Text = "DataPRO Database Migration Utility";
|
|||
|
|
this.TopMost = true;
|
|||
|
|
this.Load += new System.EventHandler(this.MigrationForm_Load);
|
|||
|
|
((System.ComponentModel.ISupportInitialize)(this.numericUpDownDesiredVersion)).EndInit();
|
|||
|
|
this.ResumeLayout(false);
|
|||
|
|
this.PerformLayout();
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
#endregion
|
|||
|
|
|
|||
|
|
private System.Windows.Forms.Button buttonOK;
|
|||
|
|
private System.Windows.Forms.Button buttonCancel;
|
|||
|
|
private System.Windows.Forms.Label MigrationStatusLabel;
|
|||
|
|
private System.Windows.Forms.Label statusTextLabel;
|
|||
|
|
private System.Windows.Forms.Label label1;
|
|||
|
|
private System.Windows.Forms.TextBox TbDatabasePath;
|
|||
|
|
private System.Windows.Forms.NumericUpDown numericUpDownDesiredVersion;
|
|||
|
|
}
|
|||
|
|
}
|