3e51ab18d2
- aggiunto numero di processi da avviare in ini - aggiunta possibilita' di partenza processi all'avvio in ini - aggiunto timer per reset della lista dei process - gestita chiusura dell'ambiente egt
424 lines
17 KiB
VB.net
424 lines
17 KiB
VB.net
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
|
|
Partial Class ProcMan
|
|
Inherits System.Windows.Forms.Form
|
|
|
|
'Form overrides dispose to clean up the component list.
|
|
<System.Diagnostics.DebuggerNonUserCode()> _
|
|
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.
|
|
<System.Diagnostics.DebuggerStepThrough()> _
|
|
Private Sub InitializeComponent()
|
|
Me.components = New System.ComponentModel.Container()
|
|
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(ProcMan))
|
|
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.btnResetQueue = New System.Windows.Forms.Button()
|
|
Me.txtOut = New System.Windows.Forms.TextBox()
|
|
Me.btnQueueStatus = New System.Windows.Forms.Button()
|
|
Me.StartProcess = New System.Windows.Forms.Button()
|
|
Me.StopProcess = New System.Windows.Forms.Button()
|
|
Me.StatusStrip1 = New System.Windows.Forms.StatusStrip()
|
|
Me.tsProgBar = New System.Windows.Forms.ToolStripProgressBar()
|
|
Me.txtQueue = New System.Windows.Forms.TextBox()
|
|
Me.Label1 = New System.Windows.Forms.Label()
|
|
Me.txtNumThread = New System.Windows.Forms.TextBox()
|
|
Me.lblRunning = New System.Windows.Forms.Label()
|
|
Me.TimerUI = New System.Windows.Forms.Timer(Me.components)
|
|
Me.TimerProgBar = New System.Windows.Forms.Timer(Me.components)
|
|
Me.LISTThreadStatus = New System.Windows.Forms.ListView()
|
|
Me.chThread = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader)
|
|
Me.chTime = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader)
|
|
Me.chOther = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader)
|
|
Me.GroupBox1 = New System.Windows.Forms.GroupBox()
|
|
Me.ThreadCurrentStatusList = New System.Windows.Forms.ListView()
|
|
Me.ColumnHeader1 = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader)
|
|
Me.ColumnHeader2 = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader)
|
|
Me.ColumnHeader4 = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader)
|
|
Me.ColumnHeader3 = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader)
|
|
Me.chkStatAggr = New System.Windows.Forms.CheckBox()
|
|
Me.btnExportStats = New System.Windows.Forms.Button()
|
|
Me.chkAutoRestart = New System.Windows.Forms.CheckBox()
|
|
Me.TimerCheck = New System.Windows.Forms.Timer(Me.components)
|
|
Me.Button1 = New System.Windows.Forms.Button()
|
|
Me.TimerResetProcessing = New System.Windows.Forms.Timer(Me.components)
|
|
Me.StatusStrip1.SuspendLayout()
|
|
Me.GroupBox1.SuspendLayout()
|
|
Me.SuspendLayout()
|
|
'
|
|
'btnTestPing
|
|
'
|
|
Me.btnTestPing.Location = New System.Drawing.Point(19, 20)
|
|
Me.btnTestPing.Margin = New System.Windows.Forms.Padding(4, 5, 4, 5)
|
|
Me.btnTestPing.Name = "btnTestPing"
|
|
Me.btnTestPing.Size = New System.Drawing.Size(112, 35)
|
|
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(172, 28)
|
|
Me.lblpingTest.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
|
|
Me.lblpingTest.Name = "lblpingTest"
|
|
Me.lblpingTest.Size = New System.Drawing.Size(36, 20)
|
|
Me.lblpingTest.TabIndex = 1
|
|
Me.lblpingTest.Text = "???"
|
|
'
|
|
'lblTestAlive
|
|
'
|
|
Me.lblTestAlive.AutoSize = True
|
|
Me.lblTestAlive.Location = New System.Drawing.Point(411, 28)
|
|
Me.lblTestAlive.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
|
|
Me.lblTestAlive.Name = "lblTestAlive"
|
|
Me.lblTestAlive.Size = New System.Drawing.Size(36, 20)
|
|
Me.lblTestAlive.TabIndex = 3
|
|
Me.lblTestAlive.Text = "???"
|
|
'
|
|
'btnTestAlive
|
|
'
|
|
Me.btnTestAlive.Location = New System.Drawing.Point(258, 20)
|
|
Me.btnTestAlive.Margin = New System.Windows.Forms.Padding(4, 5, 4, 5)
|
|
Me.btnTestAlive.Name = "btnTestAlive"
|
|
Me.btnTestAlive.Size = New System.Drawing.Size(112, 35)
|
|
Me.btnTestAlive.TabIndex = 2
|
|
Me.btnTestAlive.Text = "Test Alive"
|
|
Me.btnTestAlive.UseVisualStyleBackColor = True
|
|
'
|
|
'btnResetQueue
|
|
'
|
|
Me.btnResetQueue.Location = New System.Drawing.Point(19, 251)
|
|
Me.btnResetQueue.Margin = New System.Windows.Forms.Padding(4, 5, 4, 5)
|
|
Me.btnResetQueue.Name = "btnResetQueue"
|
|
Me.btnResetQueue.Size = New System.Drawing.Size(112, 35)
|
|
Me.btnResetQueue.TabIndex = 6
|
|
Me.btnResetQueue.Text = "Reset Q"
|
|
Me.btnResetQueue.UseVisualStyleBackColor = True
|
|
'
|
|
'txtOut
|
|
'
|
|
Me.txtOut.BackColor = System.Drawing.SystemColors.ControlDarkDark
|
|
Me.txtOut.Font = New System.Drawing.Font("Microsoft Sans Serif", 7.0!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
|
|
Me.txtOut.ForeColor = System.Drawing.Color.Yellow
|
|
Me.txtOut.Location = New System.Drawing.Point(18, 300)
|
|
Me.txtOut.Margin = New System.Windows.Forms.Padding(4, 5, 4, 5)
|
|
Me.txtOut.MinimumSize = New System.Drawing.Size(88, 183)
|
|
Me.txtOut.Multiline = True
|
|
Me.txtOut.Name = "txtOut"
|
|
Me.txtOut.Size = New System.Drawing.Size(111, 215)
|
|
Me.txtOut.TabIndex = 7
|
|
Me.txtOut.Text = "---"
|
|
'
|
|
'btnQueueStatus
|
|
'
|
|
Me.btnQueueStatus.Location = New System.Drawing.Point(19, 99)
|
|
Me.btnQueueStatus.Margin = New System.Windows.Forms.Padding(4, 5, 4, 5)
|
|
Me.btnQueueStatus.Name = "btnQueueStatus"
|
|
Me.btnQueueStatus.Size = New System.Drawing.Size(112, 35)
|
|
Me.btnQueueStatus.TabIndex = 8
|
|
Me.btnQueueStatus.Text = "Stato Queue"
|
|
Me.btnQueueStatus.UseVisualStyleBackColor = True
|
|
'
|
|
'StartProcess
|
|
'
|
|
Me.StartProcess.Location = New System.Drawing.Point(19, 29)
|
|
Me.StartProcess.Margin = New System.Windows.Forms.Padding(4, 5, 4, 5)
|
|
Me.StartProcess.Name = "StartProcess"
|
|
Me.StartProcess.Size = New System.Drawing.Size(112, 35)
|
|
Me.StartProcess.TabIndex = 9
|
|
Me.StartProcess.Text = "Start"
|
|
Me.StartProcess.UseVisualStyleBackColor = True
|
|
'
|
|
'StopProcess
|
|
'
|
|
Me.StopProcess.Location = New System.Drawing.Point(366, 28)
|
|
Me.StopProcess.Margin = New System.Windows.Forms.Padding(4, 5, 4, 5)
|
|
Me.StopProcess.Name = "StopProcess"
|
|
Me.StopProcess.Size = New System.Drawing.Size(112, 35)
|
|
Me.StopProcess.TabIndex = 10
|
|
Me.StopProcess.Text = "Stop"
|
|
Me.StopProcess.UseVisualStyleBackColor = True
|
|
'
|
|
'StatusStrip1
|
|
'
|
|
Me.StatusStrip1.ImageScalingSize = New System.Drawing.Size(20, 20)
|
|
Me.StatusStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.tsProgBar})
|
|
Me.StatusStrip1.Location = New System.Drawing.Point(0, 659)
|
|
Me.StatusStrip1.Name = "StatusStrip1"
|
|
Me.StatusStrip1.Padding = New System.Windows.Forms.Padding(1, 0, 21, 0)
|
|
Me.StatusStrip1.Size = New System.Drawing.Size(828, 26)
|
|
Me.StatusStrip1.TabIndex = 11
|
|
Me.StatusStrip1.Text = "StatusStrip1"
|
|
'
|
|
'tsProgBar
|
|
'
|
|
Me.tsProgBar.Name = "tsProgBar"
|
|
Me.tsProgBar.Size = New System.Drawing.Size(150, 18)
|
|
Me.tsProgBar.Step = 1
|
|
'
|
|
'txtQueue
|
|
'
|
|
Me.txtQueue.BackColor = System.Drawing.SystemColors.ControlDarkDark
|
|
Me.txtQueue.Font = New System.Drawing.Font("Microsoft Sans Serif", 7.0!)
|
|
Me.txtQueue.ForeColor = System.Drawing.SystemColors.Window
|
|
Me.txtQueue.Location = New System.Drawing.Point(19, 142)
|
|
Me.txtQueue.Margin = New System.Windows.Forms.Padding(4, 5, 4, 5)
|
|
Me.txtQueue.Multiline = True
|
|
Me.txtQueue.Name = "txtQueue"
|
|
Me.txtQueue.Size = New System.Drawing.Size(111, 96)
|
|
Me.txtQueue.TabIndex = 12
|
|
Me.txtQueue.Text = "Q Status:"
|
|
'
|
|
'Label1
|
|
'
|
|
Me.Label1.AutoSize = True
|
|
Me.Label1.Location = New System.Drawing.Point(148, 38)
|
|
Me.Label1.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
|
|
Me.Label1.Name = "Label1"
|
|
Me.Label1.Size = New System.Drawing.Size(44, 20)
|
|
Me.Label1.TabIndex = 13
|
|
Me.Label1.Text = "num:"
|
|
'
|
|
'txtNumThread
|
|
'
|
|
Me.txtNumThread.Location = New System.Drawing.Point(192, 32)
|
|
Me.txtNumThread.Margin = New System.Windows.Forms.Padding(4, 5, 4, 5)
|
|
Me.txtNumThread.Name = "txtNumThread"
|
|
Me.txtNumThread.Size = New System.Drawing.Size(46, 26)
|
|
Me.txtNumThread.TabIndex = 14
|
|
Me.txtNumThread.Text = "0"
|
|
Me.txtNumThread.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
|
|
'
|
|
'lblRunning
|
|
'
|
|
Me.lblRunning.AutoSize = True
|
|
Me.lblRunning.Location = New System.Drawing.Point(249, 38)
|
|
Me.lblRunning.Margin = New System.Windows.Forms.Padding(4, 0, 4, 0)
|
|
Me.lblRunning.MinimumSize = New System.Drawing.Size(112, 0)
|
|
Me.lblRunning.Name = "lblRunning"
|
|
Me.lblRunning.Size = New System.Drawing.Size(112, 20)
|
|
Me.lblRunning.TabIndex = 15
|
|
Me.lblRunning.Text = "running: -"
|
|
Me.lblRunning.TextAlign = System.Drawing.ContentAlignment.MiddleCenter
|
|
'
|
|
'TimerUI
|
|
'
|
|
Me.TimerUI.Interval = 800
|
|
'
|
|
'TimerProgBar
|
|
'
|
|
'
|
|
'LISTThreadStatus
|
|
'
|
|
Me.LISTThreadStatus.Columns.AddRange(New System.Windows.Forms.ColumnHeader() {Me.chThread, Me.chTime, Me.chOther})
|
|
Me.LISTThreadStatus.HideSelection = False
|
|
Me.LISTThreadStatus.Location = New System.Drawing.Point(19, 74)
|
|
Me.LISTThreadStatus.Margin = New System.Windows.Forms.Padding(4, 5, 4, 5)
|
|
Me.LISTThreadStatus.Name = "LISTThreadStatus"
|
|
Me.LISTThreadStatus.Size = New System.Drawing.Size(602, 215)
|
|
Me.LISTThreadStatus.TabIndex = 16
|
|
Me.LISTThreadStatus.UseCompatibleStateImageBehavior = False
|
|
Me.LISTThreadStatus.View = System.Windows.Forms.View.Details
|
|
'
|
|
'chThread
|
|
'
|
|
Me.chThread.Text = "Thread"
|
|
Me.chThread.Width = 100
|
|
'
|
|
'chTime
|
|
'
|
|
Me.chTime.Text = "Time"
|
|
Me.chTime.Width = 100
|
|
'
|
|
'chOther
|
|
'
|
|
Me.chOther.Text = "Other"
|
|
Me.chOther.Width = 100
|
|
'
|
|
'GroupBox1
|
|
'
|
|
Me.GroupBox1.Controls.Add(Me.ThreadCurrentStatusList)
|
|
Me.GroupBox1.Controls.Add(Me.chkStatAggr)
|
|
Me.GroupBox1.Controls.Add(Me.LISTThreadStatus)
|
|
Me.GroupBox1.Controls.Add(Me.lblRunning)
|
|
Me.GroupBox1.Controls.Add(Me.txtNumThread)
|
|
Me.GroupBox1.Controls.Add(Me.StopProcess)
|
|
Me.GroupBox1.Controls.Add(Me.Label1)
|
|
Me.GroupBox1.Controls.Add(Me.StartProcess)
|
|
Me.GroupBox1.Location = New System.Drawing.Point(177, 99)
|
|
Me.GroupBox1.Margin = New System.Windows.Forms.Padding(4, 5, 4, 5)
|
|
Me.GroupBox1.Name = "GroupBox1"
|
|
Me.GroupBox1.Padding = New System.Windows.Forms.Padding(4, 5, 4, 5)
|
|
Me.GroupBox1.Size = New System.Drawing.Size(633, 548)
|
|
Me.GroupBox1.TabIndex = 17
|
|
Me.GroupBox1.TabStop = False
|
|
Me.GroupBox1.Text = "Threads"
|
|
'
|
|
'ThreadCurrentStatusList
|
|
'
|
|
Me.ThreadCurrentStatusList.Columns.AddRange(New System.Windows.Forms.ColumnHeader() {Me.ColumnHeader1, Me.ColumnHeader2, Me.ColumnHeader4, Me.ColumnHeader3})
|
|
Me.ThreadCurrentStatusList.HideSelection = False
|
|
Me.ThreadCurrentStatusList.Location = New System.Drawing.Point(19, 321)
|
|
Me.ThreadCurrentStatusList.Margin = New System.Windows.Forms.Padding(4, 5, 4, 5)
|
|
Me.ThreadCurrentStatusList.Name = "ThreadCurrentStatusList"
|
|
Me.ThreadCurrentStatusList.Size = New System.Drawing.Size(602, 215)
|
|
Me.ThreadCurrentStatusList.TabIndex = 18
|
|
Me.ThreadCurrentStatusList.UseCompatibleStateImageBehavior = False
|
|
Me.ThreadCurrentStatusList.View = System.Windows.Forms.View.Details
|
|
'
|
|
'ColumnHeader1
|
|
'
|
|
Me.ColumnHeader1.Text = "Thread"
|
|
Me.ColumnHeader1.Width = 100
|
|
'
|
|
'ColumnHeader2
|
|
'
|
|
Me.ColumnHeader2.Text = "Thread Status"
|
|
Me.ColumnHeader2.Width = 100
|
|
'
|
|
'ColumnHeader4
|
|
'
|
|
Me.ColumnHeader4.DisplayIndex = 3
|
|
Me.ColumnHeader4.Text = "Thread Phase"
|
|
Me.ColumnHeader4.Width = 100
|
|
'
|
|
'ColumnHeader3
|
|
'
|
|
Me.ColumnHeader3.DisplayIndex = 2
|
|
Me.ColumnHeader3.Text = "Process Status"
|
|
Me.ColumnHeader3.Width = 100
|
|
'
|
|
'chkStatAggr
|
|
'
|
|
Me.chkStatAggr.AutoSize = True
|
|
Me.chkStatAggr.Checked = True
|
|
Me.chkStatAggr.CheckState = System.Windows.Forms.CheckState.Checked
|
|
Me.chkStatAggr.Location = New System.Drawing.Point(489, 32)
|
|
Me.chkStatAggr.Margin = New System.Windows.Forms.Padding(4, 5, 4, 5)
|
|
Me.chkStatAggr.Name = "chkStatAggr"
|
|
Me.chkStatAggr.Size = New System.Drawing.Size(111, 24)
|
|
Me.chkStatAggr.TabIndex = 17
|
|
Me.chkStatAggr.Text = "Aggr Stats"
|
|
Me.chkStatAggr.UseVisualStyleBackColor = True
|
|
'
|
|
'btnExportStats
|
|
'
|
|
Me.btnExportStats.Location = New System.Drawing.Point(688, 20)
|
|
Me.btnExportStats.Margin = New System.Windows.Forms.Padding(4, 5, 4, 5)
|
|
Me.btnExportStats.Name = "btnExportStats"
|
|
Me.btnExportStats.Size = New System.Drawing.Size(112, 35)
|
|
Me.btnExportStats.TabIndex = 18
|
|
Me.btnExportStats.Text = "Export Stats"
|
|
Me.btnExportStats.UseVisualStyleBackColor = True
|
|
'
|
|
'chkAutoRestart
|
|
'
|
|
Me.chkAutoRestart.AutoSize = True
|
|
Me.chkAutoRestart.Location = New System.Drawing.Point(523, 26)
|
|
Me.chkAutoRestart.Margin = New System.Windows.Forms.Padding(4, 5, 4, 5)
|
|
Me.chkAutoRestart.Name = "chkAutoRestart"
|
|
Me.chkAutoRestart.Size = New System.Drawing.Size(122, 24)
|
|
Me.chkAutoRestart.TabIndex = 19
|
|
Me.chkAutoRestart.Text = "AutoRestart"
|
|
Me.chkAutoRestart.UseVisualStyleBackColor = True
|
|
'
|
|
'TimerCheck
|
|
'
|
|
Me.TimerCheck.Interval = 30000
|
|
'
|
|
'Button1
|
|
'
|
|
Me.Button1.Location = New System.Drawing.Point(688, 65)
|
|
Me.Button1.Margin = New System.Windows.Forms.Padding(4, 5, 4, 5)
|
|
Me.Button1.Name = "Button1"
|
|
Me.Button1.Size = New System.Drawing.Size(112, 35)
|
|
Me.Button1.TabIndex = 20
|
|
Me.Button1.Text = "Kill All Procs"
|
|
Me.Button1.UseVisualStyleBackColor = True
|
|
'
|
|
'TimerResetProcessing
|
|
'
|
|
Me.TimerResetProcessing.Interval = 3000
|
|
'
|
|
'ProcMan
|
|
'
|
|
Me.AutoScaleDimensions = New System.Drawing.SizeF(9.0!, 20.0!)
|
|
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
|
|
Me.ClientSize = New System.Drawing.Size(828, 685)
|
|
Me.Controls.Add(Me.Button1)
|
|
Me.Controls.Add(Me.chkAutoRestart)
|
|
Me.Controls.Add(Me.btnExportStats)
|
|
Me.Controls.Add(Me.GroupBox1)
|
|
Me.Controls.Add(Me.txtQueue)
|
|
Me.Controls.Add(Me.StatusStrip1)
|
|
Me.Controls.Add(Me.btnQueueStatus)
|
|
Me.Controls.Add(Me.txtOut)
|
|
Me.Controls.Add(Me.btnResetQueue)
|
|
Me.Controls.Add(Me.lblTestAlive)
|
|
Me.Controls.Add(Me.btnTestAlive)
|
|
Me.Controls.Add(Me.lblpingTest)
|
|
Me.Controls.Add(Me.btnTestPing)
|
|
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
|
|
Me.Margin = New System.Windows.Forms.Padding(4, 5, 4, 5)
|
|
Me.Name = "ProcMan"
|
|
Me.Text = "MainForm"
|
|
Me.StatusStrip1.ResumeLayout(False)
|
|
Me.StatusStrip1.PerformLayout()
|
|
Me.GroupBox1.ResumeLayout(False)
|
|
Me.GroupBox1.PerformLayout()
|
|
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 btnResetQueue As Button
|
|
Friend WithEvents txtOut As TextBox
|
|
Friend WithEvents btnQueueStatus As Button
|
|
Friend WithEvents StartProcess As Button
|
|
Friend WithEvents StopProcess As Button
|
|
Friend WithEvents StatusStrip1 As StatusStrip
|
|
Friend WithEvents tsProgBar As ToolStripProgressBar
|
|
Friend WithEvents txtQueue As TextBox
|
|
Friend WithEvents Label1 As Label
|
|
Friend WithEvents txtNumThread As TextBox
|
|
Friend WithEvents lblRunning As Label
|
|
Friend WithEvents TimerUI As Timer
|
|
Friend WithEvents TimerProgBar As Timer
|
|
Friend WithEvents LISTThreadStatus As ListView
|
|
Friend WithEvents GroupBox1 As GroupBox
|
|
Friend WithEvents chThread As ColumnHeader
|
|
Friend WithEvents chTime As ColumnHeader
|
|
Friend WithEvents chOther As ColumnHeader
|
|
Friend WithEvents chkStatAggr As CheckBox
|
|
Friend WithEvents btnExportStats As Button
|
|
Friend WithEvents chkAutoRestart As CheckBox
|
|
Friend WithEvents TimerCheck As Timer
|
|
Friend WithEvents ThreadCurrentStatusList As ListView
|
|
Friend WithEvents ColumnHeader1 As ColumnHeader
|
|
Friend WithEvents ColumnHeader2 As ColumnHeader
|
|
Friend WithEvents ColumnHeader3 As ColumnHeader
|
|
Friend WithEvents ColumnHeader4 As ColumnHeader
|
|
Friend WithEvents Button1 As Button
|
|
Friend WithEvents TimerResetProcessing As Timer
|
|
End Class
|