_ 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.btnTestPing = New System.Windows.Forms.Button() Me.lblpingTest = New System.Windows.Forms.Label() Me.lblTestAlive = New System.Windows.Forms.Label() Me.btnTestAlive = New System.Windows.Forms.Button() Me.btnFullTest = New System.Windows.Forms.Button() Me.btnResetQueue = New System.Windows.Forms.Button() Me.txtOut = New System.Windows.Forms.TextBox() Me.btnQueueStatus = New System.Windows.Forms.Button() Me.SuspendLayout() ' 'btnTestPing ' Me.btnTestPing.Location = New System.Drawing.Point(13, 13) Me.btnTestPing.Name = "btnTestPing" Me.btnTestPing.Size = New System.Drawing.Size(75, 23) Me.btnTestPing.TabIndex = 0 Me.btnTestPing.Text = "Test Ping" Me.btnTestPing.UseVisualStyleBackColor = True ' 'lblpingTest ' Me.lblpingTest.AutoSize = True Me.lblpingTest.Location = New System.Drawing.Point(115, 18) Me.lblpingTest.Name = "lblpingTest" Me.lblpingTest.Size = New System.Drawing.Size(25, 13) Me.lblpingTest.TabIndex = 1 Me.lblpingTest.Text = "???" ' 'lblTestAlive ' Me.lblTestAlive.AutoSize = True Me.lblTestAlive.Location = New System.Drawing.Point(431, 18) Me.lblTestAlive.Name = "lblTestAlive" Me.lblTestAlive.Size = New System.Drawing.Size(25, 13) Me.lblTestAlive.TabIndex = 3 Me.lblTestAlive.Text = "???" ' 'btnTestAlive ' Me.btnTestAlive.Location = New System.Drawing.Point(329, 13) Me.btnTestAlive.Name = "btnTestAlive" Me.btnTestAlive.Size = New System.Drawing.Size(75, 23) Me.btnTestAlive.TabIndex = 2 Me.btnTestAlive.Text = "Test Alive" Me.btnTestAlive.UseVisualStyleBackColor = True ' 'btnFullTest ' Me.btnFullTest.Location = New System.Drawing.Point(12, 104) Me.btnFullTest.Name = "btnFullTest" Me.btnFullTest.Size = New System.Drawing.Size(75, 23) Me.btnFullTest.TabIndex = 4 Me.btnFullTest.Text = "Full Test" Me.btnFullTest.UseVisualStyleBackColor = True ' 'btnResetQueue ' Me.btnResetQueue.Location = New System.Drawing.Point(13, 228) Me.btnResetQueue.Name = "btnResetQueue" Me.btnResetQueue.Size = New System.Drawing.Size(75, 23) Me.btnResetQueue.TabIndex = 6 Me.btnResetQueue.Text = "Reset Queue" Me.btnResetQueue.UseVisualStyleBackColor = True ' 'txtOut ' Me.txtOut.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.txtOut.BackColor = System.Drawing.SystemColors.ControlDarkDark Me.txtOut.ForeColor = System.Drawing.Color.Yellow Me.txtOut.Location = New System.Drawing.Point(109, 64) Me.txtOut.MinimumSize = New System.Drawing.Size(650, 400) Me.txtOut.Multiline = True Me.txtOut.Name = "txtOut" Me.txtOut.ScrollBars = System.Windows.Forms.ScrollBars.Vertical Me.txtOut.Size = New System.Drawing.Size(650, 400) Me.txtOut.TabIndex = 7 Me.txtOut.Text = "---" ' 'btnQueueStatus ' Me.btnQueueStatus.Location = New System.Drawing.Point(13, 64) Me.btnQueueStatus.Name = "btnQueueStatus" Me.btnQueueStatus.Size = New System.Drawing.Size(75, 23) Me.btnQueueStatus.TabIndex = 8 Me.btnQueueStatus.Text = "Stato Queue" Me.btnQueueStatus.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(764, 472) Me.Controls.Add(Me.btnQueueStatus) Me.Controls.Add(Me.txtOut) Me.Controls.Add(Me.btnResetQueue) Me.Controls.Add(Me.btnFullTest) Me.Controls.Add(Me.lblTestAlive) Me.Controls.Add(Me.btnTestAlive) Me.Controls.Add(Me.lblpingTest) Me.Controls.Add(Me.btnTestPing) Me.Name = "Form1" Me.Text = "Form1" Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents btnTestPing As Button Friend WithEvents lblpingTest As Label Friend WithEvents lblTestAlive As Label Friend WithEvents btnTestAlive As Button Friend WithEvents btnFullTest As Button Friend WithEvents btnResetQueue As Button Friend WithEvents txtOut As TextBox Friend WithEvents btnQueueStatus As Button End Class