Remove handle when control capture form is closed /o\
This commit is contained in:
parent
c93008c3ed
commit
a7483358e8
@ -1,6 +1,6 @@
|
||||
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
|
||||
Partial Class frmControlCapture
|
||||
Inherits System.Windows.Forms.Form
|
||||
Inherits DevExpress.XtraEditors.XtraForm
|
||||
|
||||
'Das Formular überschreibt den Löschvorgang, um die Komponentenliste zu bereinigen.
|
||||
<System.Diagnostics.DebuggerNonUserCode()>
|
||||
@ -49,7 +49,7 @@ Partial Class frmControlCapture
|
||||
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)
|
||||
Me.Label3.Text = "Auswertung läuft"
|
||||
'
|
||||
'btnOK
|
||||
'
|
||||
@ -123,9 +123,9 @@ Partial Class frmControlCapture
|
||||
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.Size = New System.Drawing.Size(255, 13)
|
||||
Me.Label1.TabIndex = 15
|
||||
Me.Label1.Text = "Markieren Sie Text in einem Feld und Kopieren Sie einen Text"
|
||||
Me.Label1.Text = "Markieren und kopieren Sie einen Text in einem Feld"
|
||||
'
|
||||
'frmControlCapture
|
||||
'
|
||||
|
||||
@ -46,6 +46,10 @@ Public Class frmControlCapture
|
||||
AddHandler Watcher2.Changed, AddressOf Watcher_Changed
|
||||
End Sub
|
||||
|
||||
Private Sub frmControlCapture_FormClosing(sender As Object, e As FormClosingEventArgs) Handles Me.FormClosing
|
||||
RemoveHandler Watcher2.Changed, AddressOf Watcher_Changed
|
||||
End Sub
|
||||
|
||||
Private Sub Watcher_Changed(sender As Object, e As String)
|
||||
Try
|
||||
' === CONTROL NAME ===
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user