[7629] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
| 3 | * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
| 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
| 22 | namespace HeuristicLab.DataImporter.DbExplorer.Oracle {
|
---|
| 23 | partial class OracleConnectionWizard {
|
---|
| 24 | /// <summary>
|
---|
| 25 | /// Required designer variable.
|
---|
| 26 | /// </summary>
|
---|
| 27 | private System.ComponentModel.IContainer components = null;
|
---|
| 28 |
|
---|
| 29 | /// <summary>
|
---|
| 30 | /// Clean up any resources being used.
|
---|
| 31 | /// </summary>
|
---|
| 32 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
---|
| 33 | protected override void Dispose(bool disposing) {
|
---|
| 34 | if (disposing && (components != null)) {
|
---|
| 35 | components.Dispose();
|
---|
| 36 | }
|
---|
| 37 | base.Dispose(disposing);
|
---|
| 38 | }
|
---|
| 39 |
|
---|
| 40 | #region Windows Form Designer generated code
|
---|
| 41 |
|
---|
| 42 | /// <summary>
|
---|
| 43 | /// Required method for Designer support - do not modify
|
---|
| 44 | /// the contents of this method with the code editor.
|
---|
| 45 | /// </summary>
|
---|
| 46 | private void InitializeComponent() {
|
---|
| 47 | this.label2 = new System.Windows.Forms.Label();
|
---|
| 48 | this.label3 = new System.Windows.Forms.Label();
|
---|
| 49 | this.txtUsername = new System.Windows.Forms.TextBox();
|
---|
| 50 | this.txtPassword = new System.Windows.Forms.TextBox();
|
---|
| 51 | this.btnOk = new System.Windows.Forms.Button();
|
---|
| 52 | this.btnCancel = new System.Windows.Forms.Button();
|
---|
| 53 | this.txtDatabaseName = new System.Windows.Forms.TextBox();
|
---|
| 54 | this.label4 = new System.Windows.Forms.Label();
|
---|
| 55 | this.txtHost = new System.Windows.Forms.TextBox();
|
---|
| 56 | this.label1 = new System.Windows.Forms.Label();
|
---|
| 57 | this.label5 = new System.Windows.Forms.Label();
|
---|
| 58 | this.label6 = new System.Windows.Forms.Label();
|
---|
| 59 | this.txtPort = new System.Windows.Forms.TextBox();
|
---|
| 60 | this.txtServiceName = new System.Windows.Forms.TextBox();
|
---|
| 61 | this.chbAdvancedSettings = new System.Windows.Forms.CheckBox();
|
---|
| 62 | this.SuspendLayout();
|
---|
| 63 | //
|
---|
| 64 | // label2
|
---|
| 65 | //
|
---|
| 66 | this.label2.AutoSize = true;
|
---|
| 67 | this.label2.Location = new System.Drawing.Point(14, 41);
|
---|
| 68 | this.label2.Name = "label2";
|
---|
| 69 | this.label2.Size = new System.Drawing.Size(55, 13);
|
---|
| 70 | this.label2.TabIndex = 3;
|
---|
| 71 | this.label2.Text = "Username";
|
---|
| 72 | //
|
---|
| 73 | // label3
|
---|
| 74 | //
|
---|
| 75 | this.label3.AutoSize = true;
|
---|
| 76 | this.label3.Location = new System.Drawing.Point(14, 67);
|
---|
| 77 | this.label3.Name = "label3";
|
---|
| 78 | this.label3.Size = new System.Drawing.Size(53, 13);
|
---|
| 79 | this.label3.TabIndex = 4;
|
---|
| 80 | this.label3.Text = "Password";
|
---|
| 81 | //
|
---|
| 82 | // txtUsername
|
---|
| 83 | //
|
---|
| 84 | this.txtUsername.Location = new System.Drawing.Point(113, 38);
|
---|
| 85 | this.txtUsername.Name = "txtUsername";
|
---|
| 86 | this.txtUsername.Size = new System.Drawing.Size(169, 20);
|
---|
| 87 | this.txtUsername.TabIndex = 1;
|
---|
| 88 | //
|
---|
| 89 | // txtPassword
|
---|
| 90 | //
|
---|
| 91 | this.txtPassword.Location = new System.Drawing.Point(113, 64);
|
---|
| 92 | this.txtPassword.Name = "txtPassword";
|
---|
| 93 | this.txtPassword.Size = new System.Drawing.Size(169, 20);
|
---|
| 94 | this.txtPassword.TabIndex = 2;
|
---|
| 95 | this.txtPassword.UseSystemPasswordChar = true;
|
---|
| 96 | //
|
---|
| 97 | // btnOk
|
---|
| 98 | //
|
---|
| 99 | this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
|
---|
| 100 | this.btnOk.Location = new System.Drawing.Point(113, 206);
|
---|
| 101 | this.btnOk.Name = "btnOk";
|
---|
| 102 | this.btnOk.Size = new System.Drawing.Size(75, 23);
|
---|
| 103 | this.btnOk.TabIndex = 7;
|
---|
| 104 | this.btnOk.Text = "OK";
|
---|
| 105 | this.btnOk.UseVisualStyleBackColor = true;
|
---|
| 106 | this.btnOk.Click += new System.EventHandler(this.btnOK_Click);
|
---|
| 107 | //
|
---|
| 108 | // btnCancel
|
---|
| 109 | //
|
---|
| 110 | this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
---|
| 111 | this.btnCancel.Location = new System.Drawing.Point(207, 206);
|
---|
| 112 | this.btnCancel.Name = "btnCancel";
|
---|
| 113 | this.btnCancel.Size = new System.Drawing.Size(75, 23);
|
---|
| 114 | this.btnCancel.TabIndex = 8;
|
---|
| 115 | this.btnCancel.Text = "Cancel";
|
---|
| 116 | this.btnCancel.UseVisualStyleBackColor = true;
|
---|
| 117 | //
|
---|
| 118 | // txtDatabaseName
|
---|
| 119 | //
|
---|
| 120 | this.txtDatabaseName.Location = new System.Drawing.Point(113, 12);
|
---|
| 121 | this.txtDatabaseName.Name = "txtDatabaseName";
|
---|
| 122 | this.txtDatabaseName.Size = new System.Drawing.Size(169, 20);
|
---|
| 123 | this.txtDatabaseName.TabIndex = 0;
|
---|
| 124 | //
|
---|
| 125 | // label4
|
---|
| 126 | //
|
---|
| 127 | this.label4.AutoSize = true;
|
---|
| 128 | this.label4.Location = new System.Drawing.Point(14, 15);
|
---|
| 129 | this.label4.Name = "label4";
|
---|
| 130 | this.label4.Size = new System.Drawing.Size(84, 13);
|
---|
| 131 | this.label4.TabIndex = 5;
|
---|
| 132 | this.label4.Text = "Database Name";
|
---|
| 133 | //
|
---|
| 134 | // txtHost
|
---|
| 135 | //
|
---|
| 136 | this.txtHost.Enabled = false;
|
---|
| 137 | this.txtHost.Location = new System.Drawing.Point(113, 117);
|
---|
| 138 | this.txtHost.Name = "txtHost";
|
---|
| 139 | this.txtHost.Size = new System.Drawing.Size(169, 20);
|
---|
| 140 | this.txtHost.TabIndex = 4;
|
---|
| 141 | //
|
---|
| 142 | // label1
|
---|
| 143 | //
|
---|
| 144 | this.label1.AutoSize = true;
|
---|
| 145 | this.label1.Location = new System.Drawing.Point(14, 120);
|
---|
| 146 | this.label1.Name = "label1";
|
---|
| 147 | this.label1.Size = new System.Drawing.Size(29, 13);
|
---|
| 148 | this.label1.TabIndex = 11;
|
---|
| 149 | this.label1.Text = "Host";
|
---|
| 150 | //
|
---|
| 151 | // label5
|
---|
| 152 | //
|
---|
| 153 | this.label5.AutoSize = true;
|
---|
| 154 | this.label5.Location = new System.Drawing.Point(14, 172);
|
---|
| 155 | this.label5.Name = "label5";
|
---|
| 156 | this.label5.Size = new System.Drawing.Size(74, 13);
|
---|
| 157 | this.label5.TabIndex = 12;
|
---|
| 158 | this.label5.Text = "Service Name";
|
---|
| 159 | //
|
---|
| 160 | // label6
|
---|
| 161 | //
|
---|
| 162 | this.label6.AutoSize = true;
|
---|
| 163 | this.label6.Location = new System.Drawing.Point(14, 146);
|
---|
| 164 | this.label6.Name = "label6";
|
---|
| 165 | this.label6.Size = new System.Drawing.Size(26, 13);
|
---|
| 166 | this.label6.TabIndex = 13;
|
---|
| 167 | this.label6.Text = "Port";
|
---|
| 168 | //
|
---|
| 169 | // txtPort
|
---|
| 170 | //
|
---|
| 171 | this.txtPort.Enabled = false;
|
---|
| 172 | this.txtPort.Location = new System.Drawing.Point(113, 143);
|
---|
| 173 | this.txtPort.Name = "txtPort";
|
---|
| 174 | this.txtPort.Size = new System.Drawing.Size(169, 20);
|
---|
| 175 | this.txtPort.TabIndex = 5;
|
---|
| 176 | //
|
---|
| 177 | // txtServiceName
|
---|
| 178 | //
|
---|
| 179 | this.txtServiceName.Enabled = false;
|
---|
| 180 | this.txtServiceName.Location = new System.Drawing.Point(113, 169);
|
---|
| 181 | this.txtServiceName.Name = "txtServiceName";
|
---|
| 182 | this.txtServiceName.Size = new System.Drawing.Size(169, 20);
|
---|
| 183 | this.txtServiceName.TabIndex = 6;
|
---|
| 184 | //
|
---|
| 185 | // chbAdvancedSettings
|
---|
| 186 | //
|
---|
| 187 | this.chbAdvancedSettings.AutoSize = true;
|
---|
| 188 | this.chbAdvancedSettings.Location = new System.Drawing.Point(113, 99);
|
---|
| 189 | this.chbAdvancedSettings.Name = "chbAdvancedSettings";
|
---|
| 190 | this.chbAdvancedSettings.Size = new System.Drawing.Size(116, 17);
|
---|
| 191 | this.chbAdvancedSettings.TabIndex = 3;
|
---|
| 192 | this.chbAdvancedSettings.Text = "Advanced Settings";
|
---|
| 193 | this.chbAdvancedSettings.UseVisualStyleBackColor = true;
|
---|
| 194 | this.chbAdvancedSettings.CheckedChanged += new System.EventHandler(this.chbWindowsAuthentication_CheckedChanged);
|
---|
| 195 | //
|
---|
| 196 | // OracleConnectionWizard
|
---|
| 197 | //
|
---|
| 198 | this.AcceptButton = this.btnOk;
|
---|
| 199 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 200 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 201 | this.ClientSize = new System.Drawing.Size(319, 244);
|
---|
| 202 | this.ControlBox = false;
|
---|
| 203 | this.Controls.Add(this.chbAdvancedSettings);
|
---|
| 204 | this.Controls.Add(this.txtServiceName);
|
---|
| 205 | this.Controls.Add(this.txtPort);
|
---|
| 206 | this.Controls.Add(this.label6);
|
---|
| 207 | this.Controls.Add(this.label5);
|
---|
| 208 | this.Controls.Add(this.label1);
|
---|
| 209 | this.Controls.Add(this.txtHost);
|
---|
| 210 | this.Controls.Add(this.txtDatabaseName);
|
---|
| 211 | this.Controls.Add(this.label4);
|
---|
| 212 | this.Controls.Add(this.btnCancel);
|
---|
| 213 | this.Controls.Add(this.btnOk);
|
---|
| 214 | this.Controls.Add(this.txtPassword);
|
---|
| 215 | this.Controls.Add(this.txtUsername);
|
---|
| 216 | this.Controls.Add(this.label3);
|
---|
| 217 | this.Controls.Add(this.label2);
|
---|
| 218 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
---|
| 219 | this.MaximizeBox = false;
|
---|
| 220 | this.MinimizeBox = false;
|
---|
| 221 | this.Name = "OracleConnectionWizard";
|
---|
| 222 | this.ShowInTaskbar = false;
|
---|
| 223 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
---|
| 224 | this.Text = "Oracle Connection Wizard";
|
---|
| 225 | this.TopMost = true;
|
---|
| 226 | this.ResumeLayout(false);
|
---|
| 227 | this.PerformLayout();
|
---|
| 228 |
|
---|
| 229 | }
|
---|
| 230 |
|
---|
| 231 | #endregion
|
---|
| 232 |
|
---|
| 233 | private System.Windows.Forms.Label label2;
|
---|
| 234 | private System.Windows.Forms.Label label3;
|
---|
| 235 | private System.Windows.Forms.TextBox txtUsername;
|
---|
| 236 | private System.Windows.Forms.TextBox txtPassword;
|
---|
| 237 | private System.Windows.Forms.Button btnOk;
|
---|
| 238 | private System.Windows.Forms.Button btnCancel;
|
---|
| 239 | private System.Windows.Forms.TextBox txtDatabaseName;
|
---|
| 240 | private System.Windows.Forms.Label label4;
|
---|
| 241 | private System.Windows.Forms.TextBox txtHost;
|
---|
| 242 | private System.Windows.Forms.Label label1;
|
---|
| 243 | private System.Windows.Forms.Label label5;
|
---|
| 244 | private System.Windows.Forms.Label label6;
|
---|
| 245 | private System.Windows.Forms.TextBox txtPort;
|
---|
| 246 | private System.Windows.Forms.TextBox txtServiceName;
|
---|
| 247 | private System.Windows.Forms.CheckBox chbAdvancedSettings;
|
---|
| 248 | }
|
---|
| 249 | } |
---|