Partial Class frmControlCapture Inherits System.Windows.Forms.Form 'Das Formular überschreibt den Löschvorgang, um die Komponentenliste zu bereinigen. 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 'Wird vom Windows Form-Designer benötigt. Private components As System.ComponentModel.IContainer 'Hinweis: Die folgende Prozedur ist für den Windows Form-Designer erforderlich. 'Das Bearbeiten ist mit dem Windows Form-Designer möglich. 'Das Bearbeiten mit dem Code-Editor ist nicht möglich. Private Sub InitializeComponent() Me.components = New System.ComponentModel.Container() Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmControlCapture)) Me.Timer1 = New System.Windows.Forms.Timer(Me.components) Me.Label3 = New System.Windows.Forms.Label() Me.btnOK = New System.Windows.Forms.Button() Me.btnCancel = New System.Windows.Forms.Button() Me.rbControlName = New System.Windows.Forms.RadioButton() Me.rbControlPosition = New System.Windows.Forms.RadioButton() Me.txtControlName = New System.Windows.Forms.TextBox() Me.txtControlBounds = New System.Windows.Forms.TextBox() Me.Label1 = New System.Windows.Forms.Label() Me.SuspendLayout() ' 'Timer1 ' Me.Timer1.Enabled = True Me.Timer1.Interval = 1000 ' 'Label3 ' Me.Label3.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _ Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.Label3.Font = New System.Drawing.Font("Tahoma", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.Label3.Location = New System.Drawing.Point(9, 141) Me.Label3.Name = "Label3" Me.Label3.Size = New System.Drawing.Size(383, 27) Me.Label3.TabIndex = 11 Me.Label3.Text = "Auswertung von aktivem Feld läuft!" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) ' 'btnOK ' Me.btnOK.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles) Me.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK Me.btnOK.Image = Global.DD_Clipboard_Watcher.My.Resources.Resources.add Me.btnOK.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft Me.btnOK.Location = New System.Drawing.Point(12, 190) Me.btnOK.Name = "btnOK" Me.btnOK.Size = New System.Drawing.Size(159, 34) Me.btnOK.TabIndex = 0 Me.btnOK.Text = "Feld zuordnen" Me.btnOK.UseVisualStyleBackColor = True ' 'btnCancel ' Me.btnCancel.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel Me.btnCancel.Image = Global.DD_Clipboard_Watcher.My.Resources.Resources.cancel Me.btnCancel.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft Me.btnCancel.Location = New System.Drawing.Point(236, 190) Me.btnCancel.Name = "btnCancel" Me.btnCancel.Size = New System.Drawing.Size(159, 34) Me.btnCancel.TabIndex = 0 Me.btnCancel.Text = "Abbruch" Me.btnCancel.UseVisualStyleBackColor = True ' 'rbControlName ' Me.rbControlName.AutoSize = True Me.rbControlName.Checked = True Me.rbControlName.Location = New System.Drawing.Point(12, 12) Me.rbControlName.Name = "rbControlName" Me.rbControlName.Size = New System.Drawing.Size(90, 17) Me.rbControlName.TabIndex = 14 Me.rbControlName.TabStop = True Me.rbControlName.Text = "Control Name" Me.rbControlName.UseVisualStyleBackColor = True ' 'rbControlPosition ' Me.rbControlPosition.AutoSize = True Me.rbControlPosition.Location = New System.Drawing.Point(12, 36) Me.rbControlPosition.Name = "rbControlPosition" Me.rbControlPosition.Size = New System.Drawing.Size(100, 17) Me.rbControlPosition.TabIndex = 14 Me.rbControlPosition.Text = "Control Position" Me.rbControlPosition.UseVisualStyleBackColor = True ' 'txtControlName ' Me.txtControlName.Location = New System.Drawing.Point(152, 8) Me.txtControlName.Name = "txtControlName" Me.txtControlName.ReadOnly = True Me.txtControlName.Size = New System.Drawing.Size(243, 21) Me.txtControlName.TabIndex = 0 ' 'txtControlBounds ' Me.txtControlBounds.Location = New System.Drawing.Point(152, 35) Me.txtControlBounds.Multiline = True Me.txtControlBounds.Name = "txtControlBounds" Me.txtControlBounds.ReadOnly = True Me.txtControlBounds.Size = New System.Drawing.Size(240, 88) Me.txtControlBounds.TabIndex = 1 ' 'Label1 ' Me.Label1.Anchor = CType(((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left) _ Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles) Me.Label1.AutoSize = True Me.Label1.Location = New System.Drawing.Point(9, 168) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(298, 13) Me.Label1.TabIndex = 15 Me.Label1.Text = "Markieren Sie Text in einem Feld und Kopieren Sie einen Text" ' 'frmControlCapture ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(407, 236) Me.Controls.Add(Me.Label1) Me.Controls.Add(Me.txtControlBounds) Me.Controls.Add(Me.txtControlName) Me.Controls.Add(Me.rbControlPosition) Me.Controls.Add(Me.rbControlName) Me.Controls.Add(Me.Label3) Me.Controls.Add(Me.btnCancel) Me.Controls.Add(Me.btnOK) Me.Font = New System.Drawing.Font("Tahoma", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon) Me.MaximizeBox = False Me.MinimizeBox = False Me.Name = "frmControlCapture" Me.ShowIcon = False Me.Text = "Feld Auswertung" Me.TopMost = True Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents Timer1 As Timer Friend WithEvents Label3 As Label Friend WithEvents btnOK As Button Friend WithEvents btnCancel As Button Friend WithEvents rbControlName As RadioButton Friend WithEvents rbControlPosition As RadioButton Friend WithEvents txtControlName As TextBox Friend WithEvents txtControlBounds As TextBox Friend WithEvents Label1 As Label End Class