_ Partial Class main 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.StartButton = New System.Windows.Forms.Button() Me.LogText = New System.Windows.Forms.TextBox() Me.Label1 = New System.Windows.Forms.Label() Me.TapInput = New System.Windows.Forms.NumericUpDown() Me.Label2 = New System.Windows.Forms.Label() Me.DragInput = New System.Windows.Forms.NumericUpDown() CType(Me.TapInput, System.ComponentModel.ISupportInitialize).BeginInit() CType(Me.DragInput, System.ComponentModel.ISupportInitialize).BeginInit() Me.SuspendLayout() ' 'StartButton ' Me.StartButton.BackColor = System.Drawing.Color.Lime Me.StartButton.Location = New System.Drawing.Point(12, 12) Me.StartButton.Name = "StartButton" Me.StartButton.Size = New System.Drawing.Size(75, 23) Me.StartButton.TabIndex = 0 Me.StartButton.Text = "Start" Me.StartButton.UseVisualStyleBackColor = False ' 'LogText ' Me.LogText.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _ Or System.Windows.Forms.AnchorStyles.Left) _ Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.LogText.Location = New System.Drawing.Point(12, 41) Me.LogText.MaxLength = 1000 Me.LogText.Multiline = True Me.LogText.Name = "LogText" Me.LogText.ReadOnly = True Me.LogText.ScrollBars = System.Windows.Forms.ScrollBars.Vertical Me.LogText.Size = New System.Drawing.Size(531, 94) Me.LogText.TabIndex = 1 ' 'Label1 ' Me.Label1.AutoSize = True Me.Label1.Location = New System.Drawing.Point(93, 17) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(96, 13) Me.Label1.TabIndex = 2 Me.Label1.Text = "Tap tolerance (px):" ' 'TapInput ' Me.TapInput.Location = New System.Drawing.Point(195, 14) Me.TapInput.Name = "TapInput" Me.TapInput.Size = New System.Drawing.Size(57, 20) Me.TapInput.TabIndex = 3 Me.TapInput.Value = New Decimal(New Integer() {5, 0, 0, 0}) ' 'Label2 ' Me.Label2.AutoSize = True Me.Label2.Location = New System.Drawing.Point(258, 17) Me.Label2.Name = "Label2" Me.Label2.Size = New System.Drawing.Size(83, 13) Me.Label2.TabIndex = 4 Me.Label2.Text = "Drag delay (ms):" ' 'DragInput ' Me.DragInput.Increment = New Decimal(New Integer() {100, 0, 0, 0}) Me.DragInput.Location = New System.Drawing.Point(347, 14) Me.DragInput.Maximum = New Decimal(New Integer() {2000, 0, 0, 0}) Me.DragInput.Minimum = New Decimal(New Integer() {100, 0, 0, 0}) Me.DragInput.Name = "DragInput" Me.DragInput.Size = New System.Drawing.Size(57, 20) Me.DragInput.TabIndex = 5 Me.DragInput.Value = New Decimal(New Integer() {300, 0, 0, 0}) ' 'main ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(555, 147) Me.Controls.Add(Me.DragInput) Me.Controls.Add(Me.Label2) Me.Controls.Add(Me.TapInput) Me.Controls.Add(Me.Label1) Me.Controls.Add(Me.LogText) Me.Controls.Add(Me.StartButton) Me.Name = "main" Me.Text = "Form1" CType(Me.TapInput, System.ComponentModel.ISupportInitialize).EndInit() CType(Me.DragInput, System.ComponentModel.ISupportInitialize).EndInit() Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents StartButton As System.Windows.Forms.Button Friend WithEvents LogText As System.Windows.Forms.TextBox Friend WithEvents Label1 As System.Windows.Forms.Label Friend WithEvents TapInput As System.Windows.Forms.NumericUpDown Friend WithEvents Label2 As System.Windows.Forms.Label Friend WithEvents DragInput As System.Windows.Forms.NumericUpDown End Class