namespace CSharpToMySQL { partial class frmMain { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmMain)); this.lblIP = new System.Windows.Forms.Label(); this.lblPort = new System.Windows.Forms.Label(); this.lblDatabase = new System.Windows.Forms.Label(); this.lblUsername = new System.Windows.Forms.Label(); this.lblPassword = new System.Windows.Forms.Label(); this.txtIP = new System.Windows.Forms.TextBox(); this.txtPort = new System.Windows.Forms.TextBox(); this.txtPassword = new System.Windows.Forms.TextBox(); this.txtUsername = new System.Windows.Forms.TextBox(); this.txtDatabase = new System.Windows.Forms.TextBox(); this.txtLog = new System.Windows.Forms.TextBox(); this.lblLog = new System.Windows.Forms.Label(); this.btnConnect = new System.Windows.Forms.Button(); this.tlbStandard = new System.Windows.Forms.ToolStrip(); this.btnListTables = new System.Windows.Forms.ToolStripButton(); this.mnuMain = new System.Windows.Forms.MenuStrip(); this.mnuFile = new System.Windows.Forms.ToolStripMenuItem(); this.mnuExit = new System.Windows.Forms.ToolStripMenuItem(); this.mnuHelp = new System.Windows.Forms.ToolStripMenuItem(); this.btnDisconnect = new System.Windows.Forms.Button(); this.tlbStandard.SuspendLayout(); this.mnuMain.SuspendLayout(); this.SuspendLayout(); // // lblIP // this.lblIP.AutoSize = true; this.lblIP.Location = new System.Drawing.Point(14, 71); this.lblIP.Name = "lblIP"; this.lblIP.Size = new System.Drawing.Size(16, 13); this.lblIP.TabIndex = 0; this.lblIP.Text = "IP:"; // // lblPort // this.lblPort.AutoSize = true; this.lblPort.Location = new System.Drawing.Point(14, 97); this.lblPort.Name = "lblPort"; this.lblPort.Size = new System.Drawing.Size(25, 13); this.lblPort.TabIndex = 1; this.lblPort.Text = "Port:"; // // lblDatabase // this.lblDatabase.AutoSize = true; this.lblDatabase.Location = new System.Drawing.Point(14, 123); this.lblDatabase.Name = "lblDatabase"; this.lblDatabase.Size = new System.Drawing.Size(52, 13); this.lblDatabase.TabIndex = 2; this.lblDatabase.Text = "Database:"; // // lblUsername // this.lblUsername.AutoSize = true; this.lblUsername.Location = new System.Drawing.Point(202, 68); this.lblUsername.Name = "lblUsername"; this.lblUsername.Size = new System.Drawing.Size(54, 13); this.lblUsername.TabIndex = 3; this.lblUsername.Text = "Username:"; // // lblPassword // this.lblPassword.AutoSize = true; this.lblPassword.Location = new System.Drawing.Point(202, 94); this.lblPassword.Name = "lblPassword"; this.lblPassword.Size = new System.Drawing.Size(52, 13); this.lblPassword.TabIndex = 4; this.lblPassword.Text = "Password:"; // // txtIP // this.txtIP.Location = new System.Drawing.Point(74, 68); this.txtIP.Name = "txtIP"; this.txtIP.Size = new System.Drawing.Size(100, 20); this.txtIP.TabIndex = 1; // // txtPort // this.txtPort.Location = new System.Drawing.Point(74, 94); this.txtPort.Name = "txtPort"; this.txtPort.Size = new System.Drawing.Size(100, 20); this.txtPort.TabIndex = 2; this.txtPort.Text = "3306"; // // txtPassword // this.txtPassword.Location = new System.Drawing.Point(262, 91); this.txtPassword.Name = "txtPassword"; this.txtPassword.Size = new System.Drawing.Size(100, 20); this.txtPassword.TabIndex = 5; // // txtUsername // this.txtUsername.Location = new System.Drawing.Point(262, 65); this.txtUsername.Name = "txtUsername"; this.txtUsername.Size = new System.Drawing.Size(100, 20); this.txtUsername.TabIndex = 4; // // txtDatabase // this.txtDatabase.Location = new System.Drawing.Point(74, 120); this.txtDatabase.Name = "txtDatabase"; this.txtDatabase.Size = new System.Drawing.Size(100, 20); this.txtDatabase.TabIndex = 3; // // txtLog // this.txtLog.BackColor = System.Drawing.SystemColors.Window; this.txtLog.Dock = System.Windows.Forms.DockStyle.Bottom; this.txtLog.Location = new System.Drawing.Point(0, 181); this.txtLog.Multiline = true; this.txtLog.Name = "txtLog"; this.txtLog.ReadOnly = true; this.txtLog.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.txtLog.Size = new System.Drawing.Size(374, 153); this.txtLog.TabIndex = 10; // // lblLog // this.lblLog.AutoSize = true; this.lblLog.Location = new System.Drawing.Point(2, 165); this.lblLog.Name = "lblLog"; this.lblLog.Size = new System.Drawing.Size(24, 13); this.lblLog.TabIndex = 11; this.lblLog.Text = "Log:"; // // btnConnect // this.btnConnect.Location = new System.Drawing.Point(206, 118); this.btnConnect.Name = "btnConnect"; this.btnConnect.Size = new System.Drawing.Size(75, 23); this.btnConnect.TabIndex = 6; this.btnConnect.Text = "Connect"; this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click); // // tlbStandard // this.tlbStandard.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.btnListTables}); this.tlbStandard.Location = new System.Drawing.Point(0, 24); this.tlbStandard.Name = "tlbStandard"; this.tlbStandard.Size = new System.Drawing.Size(374, 25); this.tlbStandard.TabIndex = 13; this.tlbStandard.Text = "toolStrip1"; // // btnListTables // this.btnListTables.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.btnListTables.Enabled = false; this.btnListTables.Image = ((System.Drawing.Image)(resources.GetObject("btnListTables.Image"))); this.btnListTables.ImageTransparentColor = System.Drawing.Color.Magenta; this.btnListTables.Name = "btnListTables"; this.btnListTables.Text = "List tables"; this.btnListTables.Click += new System.EventHandler(this.btnListTables_Click); // // mnuMain // this.mnuMain.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.mnuFile, this.mnuHelp}); this.mnuMain.Location = new System.Drawing.Point(0, 0); this.mnuMain.Name = "mnuMain"; this.mnuMain.Size = new System.Drawing.Size(374, 24); this.mnuMain.TabIndex = 14; this.mnuMain.Text = "menuStrip1"; // // mnuFile // this.mnuFile.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.mnuExit}); this.mnuFile.Name = "mnuFile"; this.mnuFile.Text = "File"; // // mnuExit // this.mnuExit.Name = "mnuExit"; this.mnuExit.Text = "Exit"; this.mnuExit.Click += new System.EventHandler(this.mnuExit_Click); // // btnDisconnect // this.btnDisconnect.Location = new System.Drawing.Point(287, 118); this.btnDisconnect.Name = "btnDisconnect"; this.btnDisconnect.Size = new System.Drawing.Size(75, 23); this.btnDisconnect.TabIndex = 7; this.btnDisconnect.Text = "Disconnect"; this.btnDisconnect.Click += new System.EventHandler(this.btnDisconnect_Click); // // frmMain // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(374, 334); this.Controls.Add(this.btnDisconnect); this.Controls.Add(this.btnConnect); this.Controls.Add(this.lblLog); this.Controls.Add(this.txtLog); this.Controls.Add(this.txtDatabase); this.Controls.Add(this.txtUsername); this.Controls.Add(this.txtPassword); this.Controls.Add(this.txtPort); this.Controls.Add(this.txtIP); this.Controls.Add(this.lblPassword); this.Controls.Add(this.lblUsername); this.Controls.Add(this.lblDatabase); this.Controls.Add(this.lblPort); this.Controls.Add(this.lblIP); this.Controls.Add(this.tlbStandard); this.Controls.Add(this.mnuMain); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.MainMenuStrip = this.mnuMain; this.MaximizeBox = false; this.Name = "frmMain"; this.Text = "C# to MySQL"; this.tlbStandard.ResumeLayout(false); this.mnuMain.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label lblIP; private System.Windows.Forms.Label lblPort; private System.Windows.Forms.Label lblDatabase; private System.Windows.Forms.Label lblUsername; private System.Windows.Forms.Label lblPassword; private System.Windows.Forms.TextBox txtIP; private System.Windows.Forms.TextBox txtPort; private System.Windows.Forms.TextBox txtPassword; private System.Windows.Forms.TextBox txtUsername; private System.Windows.Forms.TextBox txtDatabase; private System.Windows.Forms.TextBox txtLog; private System.Windows.Forms.Label lblLog; private System.Windows.Forms.Button btnConnect; private System.Windows.Forms.ToolStrip tlbStandard; private System.Windows.Forms.ToolStripButton btnListTables; private System.Windows.Forms.MenuStrip mnuMain; private System.Windows.Forms.ToolStripMenuItem mnuFile; private System.Windows.Forms.ToolStripMenuItem mnuExit; private System.Windows.Forms.ToolStripMenuItem mnuHelp; private System.Windows.Forms.Button btnDisconnect; } }