fix first call of EDMIService

This commit is contained in:
Jonathan Jenne
2020-12-17 16:26:14 +01:00
parent 73679224f8
commit 448410fb29
6 changed files with 32 additions and 10 deletions

View File

@@ -34,6 +34,7 @@ Partial Class frmProcessCapture
Me.Label4 = New System.Windows.Forms.Label()
Me.Button2 = New System.Windows.Forms.Button()
Me.Button1 = New System.Windows.Forms.Button()
Me.chkIgnoreProcessName = New System.Windows.Forms.CheckBox()
Me.SuspendLayout()
'
'txtPID
@@ -77,7 +78,7 @@ Partial Class frmProcessCapture
'Label3
'
Me.Label3.Font = New System.Drawing.Font("Tahoma", 9.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label3.Location = New System.Drawing.Point(12, 98)
Me.Label3.Location = New System.Drawing.Point(12, 131)
Me.Label3.Name = "Label3"
Me.Label3.Size = New System.Drawing.Size(338, 42)
Me.Label3.TabIndex = 4
@@ -112,7 +113,7 @@ Partial Class frmProcessCapture
Me.Button2.DialogResult = System.Windows.Forms.DialogResult.Cancel
Me.Button2.Image = Global.DD_Clipboard_Watcher.My.Resources.Resources.cancel
Me.Button2.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
Me.Button2.Location = New System.Drawing.Point(191, 153)
Me.Button2.Location = New System.Drawing.Point(191, 176)
Me.Button2.Name = "Button2"
Me.Button2.Size = New System.Drawing.Size(159, 34)
Me.Button2.TabIndex = 0
@@ -125,18 +126,28 @@ Partial Class frmProcessCapture
Me.Button1.Enabled = False
Me.Button1.Image = Global.DD_Clipboard_Watcher.My.Resources.Resources.add
Me.Button1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft
Me.Button1.Location = New System.Drawing.Point(12, 153)
Me.Button1.Location = New System.Drawing.Point(12, 176)
Me.Button1.Name = "Button1"
Me.Button1.Size = New System.Drawing.Size(159, 34)
Me.Button1.TabIndex = 0
Me.Button1.Text = "Fenster zuordnen"
Me.Button1.UseVisualStyleBackColor = True
'
'chkIgnoreProcessName
'
Me.chkIgnoreProcessName.Location = New System.Drawing.Point(12, 85)
Me.chkIgnoreProcessName.Name = "chkIgnoreProcessName"
Me.chkIgnoreProcessName.Size = New System.Drawing.Size(338, 24)
Me.chkIgnoreProcessName.TabIndex = 5
Me.chkIgnoreProcessName.Text = "Prozess-/Fenster-Erkennung überspringen"
Me.chkIgnoreProcessName.UseVisualStyleBackColor = True
'
'frmProcessCapture
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(362, 199)
Me.ClientSize = New System.Drawing.Size(362, 222)
Me.Controls.Add(Me.chkIgnoreProcessName)
Me.Controls.Add(Me.Label3)
Me.Controls.Add(Me.Label4)
Me.Controls.Add(Me.Label2)
@@ -146,7 +157,7 @@ Partial Class frmProcessCapture
Me.Controls.Add(Me.txtPID)
Me.Controls.Add(Me.Button2)
Me.Controls.Add(Me.Button1)
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.IconOptions.Icon = CType(resources.GetObject("frmProcessCapture.IconOptions.Icon"), System.Drawing.Icon)
Me.Name = "frmProcessCapture"
Me.Text = "Prozess Auswertung"
Me.TopMost = True
@@ -164,4 +175,5 @@ Partial Class frmProcessCapture
Friend WithEvents Label4 As Label
Friend WithEvents Button2 As Button
Friend WithEvents Button1 As Button
Friend WithEvents chkIgnoreProcessName As CheckBox
End Class