we can actually get a quick connect code now, and authenticating by username and password works!
This commit is contained in:
parent
55e3babc5b
commit
d5017d32ba
96 changed files with 381 additions and 724 deletions
27
WindowsFormsApplication2/ConfigForm.Designer.cs
generated
27
WindowsFormsApplication2/ConfigForm.Designer.cs
generated
|
@ -28,6 +28,7 @@
|
|||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
this.components = new System.ComponentModel.Container();
|
||||
this.tabPage1 = new System.Windows.Forms.TabPage();
|
||||
this.label1 = new System.Windows.Forms.Label();
|
||||
this.button3 = new System.Windows.Forms.Button();
|
||||
|
@ -51,6 +52,7 @@
|
|||
this.textBox4 = new System.Windows.Forms.TextBox();
|
||||
this.label5 = new System.Windows.Forms.Label();
|
||||
this.label4 = new System.Windows.Forms.Label();
|
||||
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
|
||||
this.tabPage1.SuspendLayout();
|
||||
this.tabPage3.SuspendLayout();
|
||||
this.tabControl1.SuspendLayout();
|
||||
|
@ -100,6 +102,7 @@
|
|||
this.textBox1.Name = "textBox1";
|
||||
this.textBox1.Size = new System.Drawing.Size(261, 20);
|
||||
this.textBox1.TabIndex = 1;
|
||||
this.textBox1.MouseHover += new System.EventHandler(this.textBox1_MouseHover);
|
||||
//
|
||||
// textBox2
|
||||
//
|
||||
|
@ -156,7 +159,7 @@
|
|||
//
|
||||
// button5
|
||||
//
|
||||
this.button5.Location = new System.Drawing.Point(103, 126);
|
||||
this.button5.Location = new System.Drawing.Point(101, 126);
|
||||
this.button5.Name = "button5";
|
||||
this.button5.Size = new System.Drawing.Size(75, 23);
|
||||
this.button5.TabIndex = 6;
|
||||
|
@ -195,6 +198,7 @@
|
|||
this.textBox5.Size = new System.Drawing.Size(260, 20);
|
||||
this.textBox5.TabIndex = 1;
|
||||
this.textBox5.TextChanged += new System.EventHandler(this.textBox5_TextChanged);
|
||||
this.textBox5.MouseHover += new System.EventHandler(this.textBox5_MouseHover);
|
||||
//
|
||||
// label7
|
||||
//
|
||||
|
@ -270,6 +274,8 @@
|
|||
this.textBox4.Name = "textBox4";
|
||||
this.textBox4.Size = new System.Drawing.Size(260, 20);
|
||||
this.textBox4.TabIndex = 3;
|
||||
this.textBox4.MouseEnter += new System.EventHandler(this.textBox4_MouseEnter);
|
||||
this.textBox4.MouseHover += new System.EventHandler(this.textBox4_MouseHover);
|
||||
//
|
||||
// label5
|
||||
//
|
||||
|
@ -284,13 +290,21 @@
|
|||
// label4
|
||||
//
|
||||
this.label4.AutoSize = true;
|
||||
this.label4.Location = new System.Drawing.Point(85, 47);
|
||||
this.label4.Location = new System.Drawing.Point(84, 47);
|
||||
this.label4.Name = "label4";
|
||||
this.label4.Size = new System.Drawing.Size(106, 13);
|
||||
this.label4.Size = new System.Drawing.Size(109, 13);
|
||||
this.label4.TabIndex = 1;
|
||||
this.label4.Text = "Quick Connect Code";
|
||||
this.label4.Text = "Quick Connect Code:";
|
||||
this.label4.Click += new System.EventHandler(this.label4_Click_1);
|
||||
//
|
||||
// toolTip1
|
||||
//
|
||||
this.toolTip1.AutoPopDelay = 5000;
|
||||
this.toolTip1.InitialDelay = 1000;
|
||||
this.toolTip1.ReshowDelay = 100;
|
||||
this.toolTip1.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info;
|
||||
this.toolTip1.ToolTipTitle = "Formatting Requirements";
|
||||
//
|
||||
// ConfigForm
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
|
@ -328,9 +342,7 @@
|
|||
private System.Windows.Forms.Label label3;
|
||||
private System.Windows.Forms.TabPage tabPage3;
|
||||
private System.Windows.Forms.Button button5;
|
||||
private System.Windows.Forms.MaskedTextBox maskedTextBox2;
|
||||
private System.Windows.Forms.Label label8;
|
||||
private System.Windows.Forms.TextBox textBox6;
|
||||
private System.Windows.Forms.TextBox textBox5;
|
||||
private System.Windows.Forms.Label label7;
|
||||
private System.Windows.Forms.Label label6;
|
||||
|
@ -341,5 +353,8 @@
|
|||
private System.Windows.Forms.Label label5;
|
||||
private System.Windows.Forms.Label label4;
|
||||
public System.Windows.Forms.Label label9;
|
||||
private System.Windows.Forms.ToolTip toolTip1;
|
||||
public System.Windows.Forms.TextBox textBox6;
|
||||
public System.Windows.Forms.MaskedTextBox maskedTextBox2;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue