1 namespace KeePass.Forms
2 {
3 	partial class IOConnectionForm
4 	{
5 		/// <summary>
6 		/// Erforderliche Designervariable.
7 		/// </summary>
8 		private System.ComponentModel.IContainer components = null;
9 
10 		/// <summary>
11 		/// Verwendete Ressourcen bereinigen.
12 		/// </summary>
13 		/// <param name="disposing">True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False.</param>
Dispose(bool disposing)14 		protected override void Dispose(bool disposing)
15 		{
16 			if(disposing && (components != null))
17 			{
18 				components.Dispose();
19 			}
20 			base.Dispose(disposing);
21 		}
22 
23 		#region Vom Windows Form-Designer generierter Code
24 
25 		/// <summary>
26 		/// Erforderliche Methode für die Designerunterstützung.
27 		/// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden.
28 		/// </summary>
InitializeComponent()29 		private void InitializeComponent()
30 		{
31 			this.m_bannerImage = new System.Windows.Forms.PictureBox();
32 			this.m_btnOK = new System.Windows.Forms.Button();
33 			this.m_btnCancel = new System.Windows.Forms.Button();
34 			this.m_lblUrl = new System.Windows.Forms.Label();
35 			this.m_tbUrl = new System.Windows.Forms.TextBox();
36 			this.m_lblUserName = new System.Windows.Forms.Label();
37 			this.m_tbUserName = new System.Windows.Forms.TextBox();
38 			this.m_lblPassword = new System.Windows.Forms.Label();
39 			this.m_lblCredNote = new System.Windows.Forms.Label();
40 			this.m_btnHelp = new System.Windows.Forms.Button();
41 			this.m_cmbCredSaveMode = new System.Windows.Forms.ComboBox();
42 			this.m_lblRemember = new System.Windows.Forms.Label();
43 			this.m_lblUrlExamples = new System.Windows.Forms.Label();
44 			this.m_lblUrlHints = new System.Windows.Forms.Label();
45 			this.m_tabMain = new System.Windows.Forms.TabControl();
46 			this.m_tabConn = new System.Windows.Forms.TabPage();
47 			this.m_tbPassword = new KeePass.UI.SecureTextBoxEx();
48 			this.m_tabAdv = new System.Windows.Forms.TabPage();
49 			this.m_pnlAdv = new System.Windows.Forms.Panel();
50 			((System.ComponentModel.ISupportInitialize)(this.m_bannerImage)).BeginInit();
51 			this.m_tabMain.SuspendLayout();
52 			this.m_tabConn.SuspendLayout();
53 			this.m_tabAdv.SuspendLayout();
54 			this.SuspendLayout();
55 			//
56 			// m_bannerImage
57 			//
58 			this.m_bannerImage.Dock = System.Windows.Forms.DockStyle.Top;
59 			this.m_bannerImage.Location = new System.Drawing.Point(0, 0);
60 			this.m_bannerImage.Name = "m_bannerImage";
61 			this.m_bannerImage.Size = new System.Drawing.Size(447, 60);
62 			this.m_bannerImage.TabIndex = 0;
63 			this.m_bannerImage.TabStop = false;
64 			//
65 			// m_btnOK
66 			//
67 			this.m_btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
68 			this.m_btnOK.Location = new System.Drawing.Point(279, 315);
69 			this.m_btnOK.Name = "m_btnOK";
70 			this.m_btnOK.Size = new System.Drawing.Size(75, 23);
71 			this.m_btnOK.TabIndex = 0;
72 			this.m_btnOK.Text = "OK";
73 			this.m_btnOK.UseVisualStyleBackColor = true;
74 			this.m_btnOK.Click += new System.EventHandler(this.OnBtnOK);
75 			//
76 			// m_btnCancel
77 			//
78 			this.m_btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
79 			this.m_btnCancel.Location = new System.Drawing.Point(360, 315);
80 			this.m_btnCancel.Name = "m_btnCancel";
81 			this.m_btnCancel.Size = new System.Drawing.Size(75, 23);
82 			this.m_btnCancel.TabIndex = 1;
83 			this.m_btnCancel.Text = "Cancel";
84 			this.m_btnCancel.UseVisualStyleBackColor = true;
85 			this.m_btnCancel.Click += new System.EventHandler(this.OnBtnCancel);
86 			//
87 			// m_lblUrl
88 			//
89 			this.m_lblUrl.AutoSize = true;
90 			this.m_lblUrl.Location = new System.Drawing.Point(6, 15);
91 			this.m_lblUrl.Name = "m_lblUrl";
92 			this.m_lblUrl.Size = new System.Drawing.Size(32, 13);
93 			this.m_lblUrl.TabIndex = 0;
94 			this.m_lblUrl.Text = "UR&L:";
95 			//
96 			// m_tbUrl
97 			//
98 			this.m_tbUrl.Location = new System.Drawing.Point(83, 12);
99 			this.m_tbUrl.Name = "m_tbUrl";
100 			this.m_tbUrl.Size = new System.Drawing.Size(320, 20);
101 			this.m_tbUrl.TabIndex = 1;
102 			//
103 			// m_lblUserName
104 			//
105 			this.m_lblUserName.AutoSize = true;
106 			this.m_lblUserName.Location = new System.Drawing.Point(6, 94);
107 			this.m_lblUserName.Name = "m_lblUserName";
108 			this.m_lblUserName.Size = new System.Drawing.Size(61, 13);
109 			this.m_lblUserName.TabIndex = 4;
110 			this.m_lblUserName.Text = "&User name:";
111 			//
112 			// m_tbUserName
113 			//
114 			this.m_tbUserName.Location = new System.Drawing.Point(83, 91);
115 			this.m_tbUserName.Name = "m_tbUserName";
116 			this.m_tbUserName.Size = new System.Drawing.Size(121, 20);
117 			this.m_tbUserName.TabIndex = 5;
118 			//
119 			// m_lblPassword
120 			//
121 			this.m_lblPassword.AutoSize = true;
122 			this.m_lblPassword.Location = new System.Drawing.Point(212, 94);
123 			this.m_lblPassword.Name = "m_lblPassword";
124 			this.m_lblPassword.Size = new System.Drawing.Size(56, 13);
125 			this.m_lblPassword.TabIndex = 6;
126 			this.m_lblPassword.Text = "&Password:";
127 			//
128 			// m_lblCredNote
129 			//
130 			this.m_lblCredNote.Location = new System.Drawing.Point(6, 123);
131 			this.m_lblCredNote.Name = "m_lblCredNote";
132 			this.m_lblCredNote.Size = new System.Drawing.Size(397, 26);
133 			this.m_lblCredNote.TabIndex = 8;
134 			this.m_lblCredNote.Text = "The credentials you enter here are used to authenticate you against the server. D" +
135 				"o not enter your KeePass database master password.";
136 			//
137 			// m_btnHelp
138 			//
139 			this.m_btnHelp.Location = new System.Drawing.Point(12, 315);
140 			this.m_btnHelp.Name = "m_btnHelp";
141 			this.m_btnHelp.Size = new System.Drawing.Size(75, 23);
142 			this.m_btnHelp.TabIndex = 3;
143 			this.m_btnHelp.Text = "&Help";
144 			this.m_btnHelp.UseVisualStyleBackColor = true;
145 			this.m_btnHelp.Click += new System.EventHandler(this.OnBtnHelp);
146 			//
147 			// m_cmbCredSaveMode
148 			//
149 			this.m_cmbCredSaveMode.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
150 			this.m_cmbCredSaveMode.FormattingEnabled = true;
151 			this.m_cmbCredSaveMode.Location = new System.Drawing.Point(83, 161);
152 			this.m_cmbCredSaveMode.Name = "m_cmbCredSaveMode";
153 			this.m_cmbCredSaveMode.Size = new System.Drawing.Size(320, 21);
154 			this.m_cmbCredSaveMode.TabIndex = 10;
155 			//
156 			// m_lblRemember
157 			//
158 			this.m_lblRemember.AutoSize = true;
159 			this.m_lblRemember.Location = new System.Drawing.Point(6, 164);
160 			this.m_lblRemember.Name = "m_lblRemember";
161 			this.m_lblRemember.Size = new System.Drawing.Size(61, 13);
162 			this.m_lblRemember.TabIndex = 9;
163 			this.m_lblRemember.Text = "&Remember:";
164 			//
165 			// m_lblUrlExamples
166 			//
167 			this.m_lblUrlExamples.AutoSize = true;
168 			this.m_lblUrlExamples.Location = new System.Drawing.Point(80, 64);
169 			this.m_lblUrlExamples.Name = "m_lblUrlExamples";
170 			this.m_lblUrlExamples.Size = new System.Drawing.Size(255, 13);
171 			this.m_lblUrlExamples.TabIndex = 3;
172 			this.m_lblUrlExamples.Text = "Example: ftp://ftp.example.com/pub/Database.kdbx";
173 			//
174 			// m_lblUrlHints
175 			//
176 			this.m_lblUrlHints.Location = new System.Drawing.Point(80, 35);
177 			this.m_lblUrlHints.Name = "m_lblUrlHints";
178 			this.m_lblUrlHints.Size = new System.Drawing.Size(321, 29);
179 			this.m_lblUrlHints.TabIndex = 2;
180 			this.m_lblUrlHints.Text = "The complete URL must be specified, including protocol, server and full path to t" +
181 				"he file.";
182 			//
183 			// m_tabMain
184 			//
185 			this.m_tabMain.Controls.Add(this.m_tabConn);
186 			this.m_tabMain.Controls.Add(this.m_tabAdv);
187 			this.m_tabMain.Location = new System.Drawing.Point(13, 73);
188 			this.m_tabMain.Name = "m_tabMain";
189 			this.m_tabMain.SelectedIndex = 0;
190 			this.m_tabMain.Size = new System.Drawing.Size(423, 235);
191 			this.m_tabMain.TabIndex = 2;
192 			//
193 			// m_tabConn
194 			//
195 			this.m_tabConn.Controls.Add(this.m_tbUrl);
196 			this.m_tabConn.Controls.Add(this.m_lblUrlHints);
197 			this.m_tabConn.Controls.Add(this.m_lblUrl);
198 			this.m_tabConn.Controls.Add(this.m_lblUrlExamples);
199 			this.m_tabConn.Controls.Add(this.m_lblUserName);
200 			this.m_tabConn.Controls.Add(this.m_lblRemember);
201 			this.m_tabConn.Controls.Add(this.m_tbUserName);
202 			this.m_tabConn.Controls.Add(this.m_cmbCredSaveMode);
203 			this.m_tabConn.Controls.Add(this.m_lblPassword);
204 			this.m_tabConn.Controls.Add(this.m_tbPassword);
205 			this.m_tabConn.Controls.Add(this.m_lblCredNote);
206 			this.m_tabConn.Location = new System.Drawing.Point(4, 22);
207 			this.m_tabConn.Name = "m_tabConn";
208 			this.m_tabConn.Padding = new System.Windows.Forms.Padding(3);
209 			this.m_tabConn.Size = new System.Drawing.Size(415, 209);
210 			this.m_tabConn.TabIndex = 0;
211 			this.m_tabConn.Text = "Connection";
212 			this.m_tabConn.UseVisualStyleBackColor = true;
213 			//
214 			// m_tbPassword
215 			//
216 			this.m_tbPassword.Location = new System.Drawing.Point(282, 91);
217 			this.m_tbPassword.Name = "m_tbPassword";
218 			this.m_tbPassword.Size = new System.Drawing.Size(121, 20);
219 			this.m_tbPassword.TabIndex = 7;
220 			this.m_tbPassword.UseSystemPasswordChar = true;
221 			//
222 			// m_tabAdv
223 			//
224 			this.m_tabAdv.Controls.Add(this.m_pnlAdv);
225 			this.m_tabAdv.Location = new System.Drawing.Point(4, 22);
226 			this.m_tabAdv.Name = "m_tabAdv";
227 			this.m_tabAdv.Padding = new System.Windows.Forms.Padding(3);
228 			this.m_tabAdv.Size = new System.Drawing.Size(415, 209);
229 			this.m_tabAdv.TabIndex = 1;
230 			this.m_tabAdv.Text = "Advanced";
231 			this.m_tabAdv.UseVisualStyleBackColor = true;
232 			//
233 			// m_pnlAdv
234 			//
235 			this.m_pnlAdv.AutoScroll = true;
236 			this.m_pnlAdv.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
237 			this.m_pnlAdv.Location = new System.Drawing.Point(4, 6);
238 			this.m_pnlAdv.Name = "m_pnlAdv";
239 			this.m_pnlAdv.Size = new System.Drawing.Size(405, 198);
240 			this.m_pnlAdv.TabIndex = 0;
241 			//
242 			// IOConnectionForm
243 			//
244 			this.AcceptButton = this.m_btnOK;
245 			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
246 			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
247 			this.CancelButton = this.m_btnCancel;
248 			this.ClientSize = new System.Drawing.Size(447, 350);
249 			this.Controls.Add(this.m_tabMain);
250 			this.Controls.Add(this.m_btnHelp);
251 			this.Controls.Add(this.m_btnCancel);
252 			this.Controls.Add(this.m_btnOK);
253 			this.Controls.Add(this.m_bannerImage);
254 			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
255 			this.MaximizeBox = false;
256 			this.MinimizeBox = false;
257 			this.Name = "IOConnectionForm";
258 			this.ShowInTaskbar = false;
259 			this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
260 			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
261 			this.Text = "<DYN>";
262 			this.Load += new System.EventHandler(this.OnFormLoad);
263 			this.Shown += new System.EventHandler(this.OnFormShown);
264 			this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.OnFormClosed);
265 			((System.ComponentModel.ISupportInitialize)(this.m_bannerImage)).EndInit();
266 			this.m_tabMain.ResumeLayout(false);
267 			this.m_tabConn.ResumeLayout(false);
268 			this.m_tabConn.PerformLayout();
269 			this.m_tabAdv.ResumeLayout(false);
270 			this.ResumeLayout(false);
271 
272 		}
273 
274 		#endregion
275 
276 		private System.Windows.Forms.PictureBox m_bannerImage;
277 		private System.Windows.Forms.Button m_btnOK;
278 		private System.Windows.Forms.Button m_btnCancel;
279 		private System.Windows.Forms.Label m_lblUrl;
280 		private System.Windows.Forms.TextBox m_tbUrl;
281 		private System.Windows.Forms.Label m_lblUserName;
282 		private System.Windows.Forms.TextBox m_tbUserName;
283 		private System.Windows.Forms.Label m_lblPassword;
284 		private KeePass.UI.SecureTextBoxEx m_tbPassword;
285 		private System.Windows.Forms.Label m_lblCredNote;
286 		private System.Windows.Forms.Button m_btnHelp;
287 		private System.Windows.Forms.ComboBox m_cmbCredSaveMode;
288 		private System.Windows.Forms.Label m_lblRemember;
289 		private System.Windows.Forms.Label m_lblUrlExamples;
290 		private System.Windows.Forms.Label m_lblUrlHints;
291 		private System.Windows.Forms.TabControl m_tabMain;
292 		private System.Windows.Forms.TabPage m_tabConn;
293 		private System.Windows.Forms.TabPage m_tabAdv;
294 		private System.Windows.Forms.Panel m_pnlAdv;
295 	}
296 }