_ Partial Class Form1 Inherits System.Windows.Forms.Form 'Form overrides dispose to clean up the component list. _ Protected Overrides Sub Dispose(ByVal disposing As Boolean) Try If disposing AndAlso components IsNot Nothing Then components.Dispose() End If Finally MyBase.Dispose(disposing) End Try End Sub 'Required by the Windows Form Designer Private components As System.ComponentModel.IContainer 'NOTE: The following procedure is required by the Windows Form Designer 'It can be modified using the Windows Form Designer. 'Do not modify it using the code editor. _ Private Sub InitializeComponent() Me.Button1 = New System.Windows.Forms.Button() Me.txtOut = New System.Windows.Forms.TextBox() Me.Button2 = New System.Windows.Forms.Button() Me.Button3 = New System.Windows.Forms.Button() Me.txtMinVers = New System.Windows.Forms.TextBox() Me.txtCodApp = New System.Windows.Forms.TextBox() Me.Label1 = New System.Windows.Forms.Label() Me.Label2 = New System.Windows.Forms.Label() Me.Label3 = New System.Windows.Forms.Label() Me.txtMaxVers = New System.Windows.Forms.TextBox() Me.Button4 = New System.Windows.Forms.Button() Me.SuspendLayout() ' 'Button1 ' Me.Button1.Location = New System.Drawing.Point(12, 12) Me.Button1.Name = "Button1" Me.Button1.Size = New System.Drawing.Size(133, 23) Me.Button1.TabIndex = 0 Me.Button1.Text = "Server Test" Me.Button1.UseVisualStyleBackColor = True ' 'txtOut ' Me.txtOut.Location = New System.Drawing.Point(181, 58) Me.txtOut.Multiline = True Me.txtOut.Name = "txtOut" Me.txtOut.Size = New System.Drawing.Size(607, 380) Me.txtOut.TabIndex = 1 ' 'Button2 ' Me.Button2.Location = New System.Drawing.Point(12, 56) Me.Button2.Name = "Button2" Me.Button2.Size = New System.Drawing.Size(133, 23) Me.Button2.TabIndex = 2 Me.Button2.Text = "Get All Releases" Me.Button2.UseVisualStyleBackColor = True ' 'Button3 ' Me.Button3.Location = New System.Drawing.Point(12, 95) Me.Button3.Name = "Button3" Me.Button3.Size = New System.Drawing.Size(133, 23) Me.Button3.TabIndex = 3 Me.Button3.Text = "Get Vers From" Me.Button3.UseVisualStyleBackColor = True ' 'txtMinVers ' Me.txtMinVers.Location = New System.Drawing.Point(449, 14) Me.txtMinVers.Name = "txtMinVers" Me.txtMinVers.Size = New System.Drawing.Size(70, 20) Me.txtMinVers.TabIndex = 4 Me.txtMinVers.Text = "2.5.5.0" ' 'txtCodApp ' Me.txtCodApp.Location = New System.Drawing.Point(226, 12) Me.txtCodApp.Name = "txtCodApp" Me.txtCodApp.Size = New System.Drawing.Size(133, 20) Me.txtCodApp.TabIndex = 5 Me.txtCodApp.Text = "EgtBeamWall" ' 'Label1 ' Me.Label1.AutoSize = True Me.Label1.Location = New System.Drawing.Point(178, 17) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(45, 13) Me.Label1.TabIndex = 6 Me.Label1.Text = "CodApp" ' 'Label2 ' Me.Label2.AutoSize = True Me.Label2.Location = New System.Drawing.Point(398, 17) Me.Label2.Name = "Label2" Me.Label2.Size = New System.Drawing.Size(51, 13) Me.Label2.TabIndex = 7 Me.Label2.Text = "Min Vers:" ' 'Label3 ' Me.Label3.AutoSize = True Me.Label3.Location = New System.Drawing.Point(547, 17) Me.Label3.Name = "Label3" Me.Label3.Size = New System.Drawing.Size(54, 13) Me.Label3.TabIndex = 9 Me.Label3.Text = "Max Vers:" ' 'txtMaxVers ' Me.txtMaxVers.Location = New System.Drawing.Point(598, 14) Me.txtMaxVers.Name = "txtMaxVers" Me.txtMaxVers.Size = New System.Drawing.Size(70, 20) Me.txtMaxVers.TabIndex = 8 Me.txtMaxVers.Text = "2.5.8.999" ' 'Button4 ' Me.Button4.Location = New System.Drawing.Point(12, 139) Me.Button4.Name = "Button4" Me.Button4.Size = New System.Drawing.Size(133, 23) Me.Button4.TabIndex = 10 Me.Button4.Text = "Get Vers From Limit" Me.Button4.UseVisualStyleBackColor = True ' 'Form1 ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(800, 450) Me.Controls.Add(Me.Button4) Me.Controls.Add(Me.Label3) Me.Controls.Add(Me.txtMaxVers) Me.Controls.Add(Me.Label2) Me.Controls.Add(Me.Label1) Me.Controls.Add(Me.txtCodApp) Me.Controls.Add(Me.txtMinVers) Me.Controls.Add(Me.Button3) Me.Controls.Add(Me.Button2) Me.Controls.Add(Me.txtOut) Me.Controls.Add(Me.Button1) Me.Name = "Form1" Me.Text = "Form1" Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents Button1 As Button Friend WithEvents txtOut As TextBox Friend WithEvents Button2 As Button Friend WithEvents Button3 As Button Friend WithEvents txtMinVers As TextBox Friend WithEvents txtCodApp As TextBox Friend WithEvents Label1 As Label Friend WithEvents Label2 As Label Friend WithEvents Label3 As Label Friend WithEvents txtMaxVers As TextBox Friend WithEvents Button4 As Button End Class