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.MsSqlServer {
|
---|
23 | partial class SqlServerConnectionWizard {
|
---|
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.label1 = new System.Windows.Forms.Label();
|
---|
56 | this.txtServerName = new System.Windows.Forms.TextBox();
|
---|
57 | this.chbWindowsAuthentication = new System.Windows.Forms.CheckBox();
|
---|
58 | this.SuspendLayout();
|
---|
59 | //
|
---|
60 | // label2
|
---|
61 | //
|
---|
62 | this.label2.AutoSize = true;
|
---|
63 | this.label2.Location = new System.Drawing.Point(12, 127);
|
---|
64 | this.label2.Name = "label2";
|
---|
65 | this.label2.Size = new System.Drawing.Size(55, 13);
|
---|
66 | this.label2.TabIndex = 3;
|
---|
67 | this.label2.Text = "Username";
|
---|
68 | //
|
---|
69 | // label3
|
---|
70 | //
|
---|
71 | this.label3.AutoSize = true;
|
---|
72 | this.label3.Location = new System.Drawing.Point(12, 153);
|
---|
73 | this.label3.Name = "label3";
|
---|
74 | this.label3.Size = new System.Drawing.Size(53, 13);
|
---|
75 | this.label3.TabIndex = 4;
|
---|
76 | this.label3.Text = "Password";
|
---|
77 | //
|
---|
78 | // txtUsername
|
---|
79 | //
|
---|
80 | this.txtUsername.Location = new System.Drawing.Point(113, 124);
|
---|
81 | this.txtUsername.Name = "txtUsername";
|
---|
82 | this.txtUsername.Size = new System.Drawing.Size(169, 20);
|
---|
83 | this.txtUsername.TabIndex = 3;
|
---|
84 | //
|
---|
85 | // txtPassword
|
---|
86 | //
|
---|
87 | this.txtPassword.Location = new System.Drawing.Point(113, 150);
|
---|
88 | this.txtPassword.Name = "txtPassword";
|
---|
89 | this.txtPassword.Size = new System.Drawing.Size(169, 20);
|
---|
90 | this.txtPassword.TabIndex = 4;
|
---|
91 | this.txtPassword.UseSystemPasswordChar = true;
|
---|
92 | //
|
---|
93 | // btnOk
|
---|
94 | //
|
---|
95 | this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
|
---|
96 | this.btnOk.Location = new System.Drawing.Point(113, 189);
|
---|
97 | this.btnOk.Name = "btnOk";
|
---|
98 | this.btnOk.Size = new System.Drawing.Size(75, 23);
|
---|
99 | this.btnOk.TabIndex = 5;
|
---|
100 | this.btnOk.Text = "OK";
|
---|
101 | this.btnOk.UseVisualStyleBackColor = true;
|
---|
102 | this.btnOk.Click += new System.EventHandler(this.btnOK_Click);
|
---|
103 | //
|
---|
104 | // btnCancel
|
---|
105 | //
|
---|
106 | this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
---|
107 | this.btnCancel.Location = new System.Drawing.Point(207, 189);
|
---|
108 | this.btnCancel.Name = "btnCancel";
|
---|
109 | this.btnCancel.Size = new System.Drawing.Size(75, 23);
|
---|
110 | this.btnCancel.TabIndex = 6;
|
---|
111 | this.btnCancel.Text = "Cancel";
|
---|
112 | this.btnCancel.UseVisualStyleBackColor = true;
|
---|
113 | //
|
---|
114 | // txtDatabaseName
|
---|
115 | //
|
---|
116 | this.txtDatabaseName.Location = new System.Drawing.Point(113, 56);
|
---|
117 | this.txtDatabaseName.Name = "txtDatabaseName";
|
---|
118 | this.txtDatabaseName.Size = new System.Drawing.Size(169, 20);
|
---|
119 | this.txtDatabaseName.TabIndex = 1;
|
---|
120 | //
|
---|
121 | // label4
|
---|
122 | //
|
---|
123 | this.label4.AutoSize = true;
|
---|
124 | this.label4.Location = new System.Drawing.Point(12, 59);
|
---|
125 | this.label4.Name = "label4";
|
---|
126 | this.label4.Size = new System.Drawing.Size(84, 13);
|
---|
127 | this.label4.TabIndex = 9;
|
---|
128 | this.label4.Text = "Database Name";
|
---|
129 | //
|
---|
130 | // label1
|
---|
131 | //
|
---|
132 | this.label1.AutoSize = true;
|
---|
133 | this.label1.Location = new System.Drawing.Point(12, 32);
|
---|
134 | this.label1.Name = "label1";
|
---|
135 | this.label1.Size = new System.Drawing.Size(69, 13);
|
---|
136 | this.label1.TabIndex = 0;
|
---|
137 | this.label1.Text = "Server Name";
|
---|
138 | //
|
---|
139 | // txtServerName
|
---|
140 | //
|
---|
141 | this.txtServerName.Location = new System.Drawing.Point(113, 29);
|
---|
142 | this.txtServerName.Name = "txtServerName";
|
---|
143 | this.txtServerName.Size = new System.Drawing.Size(169, 20);
|
---|
144 | this.txtServerName.TabIndex = 0;
|
---|
145 | //
|
---|
146 | // chbAdvancedSettings
|
---|
147 | //
|
---|
148 | this.chbWindowsAuthentication.AutoSize = true;
|
---|
149 | this.chbWindowsAuthentication.Location = new System.Drawing.Point(113, 100);
|
---|
150 | this.chbWindowsAuthentication.Name = "chbAdvancedSettings";
|
---|
151 | this.chbWindowsAuthentication.Size = new System.Drawing.Size(141, 17);
|
---|
152 | this.chbWindowsAuthentication.TabIndex = 2;
|
---|
153 | this.chbWindowsAuthentication.Text = "Windows Authentication";
|
---|
154 | this.chbWindowsAuthentication.UseVisualStyleBackColor = true;
|
---|
155 | this.chbWindowsAuthentication.CheckedChanged += new System.EventHandler(this.chbWindowsAuthentication_CheckedChanged);
|
---|
156 | //
|
---|
157 | // SqlServerConnectionWizard
|
---|
158 | //
|
---|
159 | this.AcceptButton = this.btnOk;
|
---|
160 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
161 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
162 | this.ClientSize = new System.Drawing.Size(323, 229);
|
---|
163 | this.ControlBox = false;
|
---|
164 | this.Controls.Add(this.txtDatabaseName);
|
---|
165 | this.Controls.Add(this.label4);
|
---|
166 | this.Controls.Add(this.btnCancel);
|
---|
167 | this.Controls.Add(this.btnOk);
|
---|
168 | this.Controls.Add(this.txtPassword);
|
---|
169 | this.Controls.Add(this.txtUsername);
|
---|
170 | this.Controls.Add(this.label3);
|
---|
171 | this.Controls.Add(this.label2);
|
---|
172 | this.Controls.Add(this.chbWindowsAuthentication);
|
---|
173 | this.Controls.Add(this.txtServerName);
|
---|
174 | this.Controls.Add(this.label1);
|
---|
175 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
---|
176 | this.MaximizeBox = false;
|
---|
177 | this.MinimizeBox = false;
|
---|
178 | this.Name = "SqlServerConnectionWizard";
|
---|
179 | this.ShowInTaskbar = false;
|
---|
180 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
---|
181 | this.Text = "Microsoft SQLServer Connection Wizard";
|
---|
182 | this.TopMost = true;
|
---|
183 | this.ResumeLayout(false);
|
---|
184 | this.PerformLayout();
|
---|
185 |
|
---|
186 | }
|
---|
187 |
|
---|
188 | #endregion
|
---|
189 |
|
---|
190 | private System.Windows.Forms.Label label2;
|
---|
191 | private System.Windows.Forms.Label label3;
|
---|
192 | private System.Windows.Forms.TextBox txtUsername;
|
---|
193 | private System.Windows.Forms.TextBox txtPassword;
|
---|
194 | private System.Windows.Forms.Button btnOk;
|
---|
195 | private System.Windows.Forms.Button btnCancel;
|
---|
196 | private System.Windows.Forms.TextBox txtDatabaseName;
|
---|
197 | private System.Windows.Forms.Label label4;
|
---|
198 | private System.Windows.Forms.Label label1;
|
---|
199 | private System.Windows.Forms.TextBox txtServerName;
|
---|
200 | private System.Windows.Forms.CheckBox chbWindowsAuthentication;
|
---|
201 | }
|
---|
202 | } |
---|