111 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			111 lines
		
	
	
		
			3.8 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace RODBInterface
 | |
| {
 | |
| 	partial class InputBox
 | |
| 	{
 | |
| 		/// <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()
 | |
| 		{
 | |
| 			this.lblSqlConnectString = new System.Windows.Forms.Label();
 | |
| 			this.tbSqlConnectString = new System.Windows.Forms.TextBox();
 | |
| 			this.btnTestConnect = new System.Windows.Forms.Button();
 | |
| 			this.btnOk = new System.Windows.Forms.Button();
 | |
| 			this.btnCancel = new System.Windows.Forms.Button();
 | |
| 			this.SuspendLayout();
 | |
| 			// 
 | |
| 			// lblSqlConnectString
 | |
| 			// 
 | |
| 			this.lblSqlConnectString.AutoSize = true;
 | |
| 			this.lblSqlConnectString.BackColor = System.Drawing.Color.Transparent;
 | |
| 			this.lblSqlConnectString.Location = new System.Drawing.Point(12, 18);
 | |
| 			this.lblSqlConnectString.Name = "lblSqlConnectString";
 | |
| 			this.lblSqlConnectString.Size = new System.Drawing.Size(144, 17);
 | |
| 			this.lblSqlConnectString.TabIndex = 4;
 | |
| 			this.lblSqlConnectString.Text = "Sql Connection String";
 | |
| 			// 
 | |
| 			// tbSqlConnectString
 | |
| 			// 
 | |
| 			this.tbSqlConnectString.Location = new System.Drawing.Point(29, 49);
 | |
| 			this.tbSqlConnectString.Name = "tbSqlConnectString";
 | |
| 			this.tbSqlConnectString.Size = new System.Drawing.Size(620, 22);
 | |
| 			this.tbSqlConnectString.TabIndex = 5;
 | |
| 			// 
 | |
| 			// btnTestConnect
 | |
| 			// 
 | |
| 			this.btnTestConnect.Location = new System.Drawing.Point(300, 93);
 | |
| 			this.btnTestConnect.Name = "btnTestConnect";
 | |
| 			this.btnTestConnect.Size = new System.Drawing.Size(75, 42);
 | |
| 			this.btnTestConnect.TabIndex = 6;
 | |
| 			this.btnTestConnect.Text = "Test Connect";
 | |
| 			this.btnTestConnect.UseVisualStyleBackColor = true;
 | |
| 			this.btnTestConnect.Click += new System.EventHandler(this.btnTestConnect_Click);
 | |
| 			// 
 | |
| 			// btnOk
 | |
| 			// 
 | |
| 			this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
 | |
| 			this.btnOk.Location = new System.Drawing.Point(435, 103);
 | |
| 			this.btnOk.Name = "btnOk";
 | |
| 			this.btnOk.Size = new System.Drawing.Size(75, 23);
 | |
| 			this.btnOk.TabIndex = 7;
 | |
| 			this.btnOk.Text = "OK";
 | |
| 			this.btnOk.UseVisualStyleBackColor = true;
 | |
| 			this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
 | |
| 			// 
 | |
| 			// btnCancel
 | |
| 			// 
 | |
| 			this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
 | |
| 			this.btnCancel.Location = new System.Drawing.Point(571, 103);
 | |
| 			this.btnCancel.Name = "btnCancel";
 | |
| 			this.btnCancel.Size = new System.Drawing.Size(75, 23);
 | |
| 			this.btnCancel.TabIndex = 8;
 | |
| 			this.btnCancel.Text = "Cancel";
 | |
| 			this.btnCancel.UseVisualStyleBackColor = true;
 | |
| 			// 
 | |
| 			// InputBox
 | |
| 			// 
 | |
| 			this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
 | |
| 			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 | |
| 			this.ClientSize = new System.Drawing.Size(691, 157);
 | |
| 			this.Controls.Add(this.btnCancel);
 | |
| 			this.Controls.Add(this.btnOk);
 | |
| 			this.Controls.Add(this.btnTestConnect);
 | |
| 			this.Controls.Add(this.lblSqlConnectString);
 | |
| 			this.Controls.Add(this.tbSqlConnectString);
 | |
| 			this.Name = "InputBox";
 | |
| 			this.Text = "Sql Connection String";
 | |
| 			this.ResumeLayout(false);
 | |
| 			this.PerformLayout();
 | |
| 
 | |
| 		}
 | |
| 
 | |
| 		#endregion
 | |
| 
 | |
| 		private System.Windows.Forms.Label lblSqlConnectString;
 | |
| 		private System.Windows.Forms.TextBox tbSqlConnectString;
 | |
| 		private System.Windows.Forms.Button btnTestConnect;
 | |
| 		private System.Windows.Forms.Button btnOk;
 | |
| 		private System.Windows.Forms.Button btnCancel;
 | |
| 	}
 | |
| } |