logging in with quick connect works now!

This commit is contained in:
random() 2025-05-15 21:05:32 -06:00
parent 70c2372535
commit 6235a69e43
10 changed files with 131 additions and 64 deletions

View file

@ -47,8 +47,9 @@
this.label6 = new System.Windows.Forms.Label();
this.tabControl1 = new System.Windows.Forms.TabControl();
this.tabPage2 = new System.Windows.Forms.TabPage();
this.button2 = new System.Windows.Forms.Button();
this.button1 = new System.Windows.Forms.Button();
this.label9 = new System.Windows.Forms.Label();
this.button4 = new System.Windows.Forms.Button();
this.textBox4 = new System.Windows.Forms.TextBox();
this.label5 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
@ -221,8 +222,8 @@
//
// tabControl1
//
this.tabControl1.Controls.Add(this.tabPage2);
this.tabControl1.Controls.Add(this.tabPage3);
this.tabControl1.Controls.Add(this.tabPage2);
this.tabControl1.Controls.Add(this.tabPage1);
this.tabControl1.Location = new System.Drawing.Point(1, 0);
this.tabControl1.Name = "tabControl1";
@ -232,8 +233,9 @@
//
// tabPage2
//
this.tabPage2.Controls.Add(this.button2);
this.tabPage2.Controls.Add(this.button1);
this.tabPage2.Controls.Add(this.label9);
this.tabPage2.Controls.Add(this.button4);
this.tabPage2.Controls.Add(this.textBox4);
this.tabPage2.Controls.Add(this.label5);
this.tabPage2.Controls.Add(this.label4);
@ -245,12 +247,32 @@
this.tabPage2.Text = "Quick Connect";
this.tabPage2.Click += new System.EventHandler(this.tabPage2_Click);
//
// button2
//
this.button2.Location = new System.Drawing.Point(71, 123);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(134, 23);
this.button2.TabIndex = 7;
this.button2.Text = "Save URL and Close";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// button1
//
this.button1.Location = new System.Drawing.Point(101, 65);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 6;
this.button1.Text = "Confirm";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// label9
//
this.label9.AutoEllipsis = true;
this.label9.AutoSize = true;
this.label9.FlatStyle = System.Windows.Forms.FlatStyle.System;
this.label9.Location = new System.Drawing.Point(7, 74);
this.label9.Location = new System.Drawing.Point(8, 70);
this.label9.MaximumSize = new System.Drawing.Size(260, 0);
this.label9.MinimumSize = new System.Drawing.Size(260, 0);
this.label9.Name = "label9";
@ -258,16 +280,6 @@
this.label9.TabIndex = 5;
this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// button4
//
this.button4.Location = new System.Drawing.Point(101, 116);
this.button4.Name = "button4";
this.button4.Size = new System.Drawing.Size(75, 23);
this.button4.TabIndex = 4;
this.button4.Text = "Submit";
this.button4.UseVisualStyleBackColor = true;
this.button4.Click += new System.EventHandler(this.button4_Click);
//
// textBox4
//
this.textBox4.Location = new System.Drawing.Point(8, 24);
@ -318,6 +330,7 @@
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Server Config";
this.TopMost = true;
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.ConfigForm_FormClosing);
this.Load += new System.EventHandler(this.ConfigForm_Load);
this.tabPage1.ResumeLayout(false);
this.tabPage1.PerformLayout();
@ -348,7 +361,6 @@
private System.Windows.Forms.Label label6;
private System.Windows.Forms.TabControl tabControl1;
private System.Windows.Forms.TabPage tabPage2;
private System.Windows.Forms.Button button4;
private System.Windows.Forms.TextBox textBox4;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.Label label4;
@ -356,5 +368,7 @@
private System.Windows.Forms.ToolTip toolTip1;
public System.Windows.Forms.TextBox textBox6;
public System.Windows.Forms.MaskedTextBox maskedTextBox2;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.Button button1;
}
}