Click here to Skip to main content
15,896,606 members
Articles / Programming Languages / Visual Basic

Application dashboard for tracking .NET application performance

Rate me:
Please Sign up or sign in to vote.
3.39/5 (12 votes)
26 Jul 2006CPOL 94.6K   3.1K   50  
Provides graphical feedback on the performance (memory usage, garbage collection, threads, exceptions, loaded classes) of a .NET application.
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class SettingsForm
    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)
        If disposing AndAlso components IsNot Nothing Then
            components.Dispose()
        End If
        MyBase.Dispose(disposing)
    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.TableLayoutPanel1 = New System.Windows.Forms.TableLayoutPanel
        Me.OK_Button = New System.Windows.Forms.Button
        Me.Cancel_Button = New System.Windows.Forms.Button
        Me.Label1 = New System.Windows.Forms.Label
        Me.ComboBox_ApplicationInstances = New System.Windows.Forms.ComboBox
        Me.GroupBox_DialSettings = New System.Windows.Forms.GroupBox
        Me.Label6 = New System.Windows.Forms.Label
        Me.Label5 = New System.Windows.Forms.Label
        Me.Label4 = New System.Windows.Forms.Label
        Me.Label3 = New System.Windows.Forms.Label
        Me.Label2 = New System.Windows.Forms.Label
        Me.Label7 = New System.Windows.Forms.Label
        Me.Label8 = New System.Windows.Forms.Label
        Me.Label9 = New System.Windows.Forms.Label
        Me.Label10 = New System.Windows.Forms.Label
        Me.Label11 = New System.Windows.Forms.Label
        Me.TextBox_Min_Memory = New System.Windows.Forms.TextBox
        Me.TextBox_Min_Garbage = New System.Windows.Forms.TextBox
        Me.TextBox_Min_Exceptions = New System.Windows.Forms.TextBox
        Me.TextBox_Min_Classes = New System.Windows.Forms.TextBox
        Me.TextBox_Min_Threads = New System.Windows.Forms.TextBox
        Me.TextBox_Max_Threads = New System.Windows.Forms.TextBox
        Me.TextBox_Max_Classes = New System.Windows.Forms.TextBox
        Me.TextBox_Max_Exceptions = New System.Windows.Forms.TextBox
        Me.TextBox_Max_Garbage = New System.Windows.Forms.TextBox
        Me.TextBox_Max_Memory = New System.Windows.Forms.TextBox
        Me.Label12 = New System.Windows.Forms.Label
        Me.Label13 = New System.Windows.Forms.Label
        Me.Label14 = New System.Windows.Forms.Label
        Me.Label15 = New System.Windows.Forms.Label
        Me.Label16 = New System.Windows.Forms.Label
        Me.TableLayoutPanel1.SuspendLayout()
        Me.GroupBox_DialSettings.SuspendLayout()
        Me.SuspendLayout()
        '
        'TableLayoutPanel1
        '
        Me.TableLayoutPanel1.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.TableLayoutPanel1.ColumnCount = 2
        Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50.0!))
        Me.TableLayoutPanel1.ColumnStyles.Add(New System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50.0!))
        Me.TableLayoutPanel1.Controls.Add(Me.OK_Button, 0, 0)
        Me.TableLayoutPanel1.Controls.Add(Me.Cancel_Button, 1, 0)
        Me.TableLayoutPanel1.Location = New System.Drawing.Point(277, 274)
        Me.TableLayoutPanel1.Name = "TableLayoutPanel1"
        Me.TableLayoutPanel1.RowCount = 1
        Me.TableLayoutPanel1.RowStyles.Add(New System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50.0!))
        Me.TableLayoutPanel1.Size = New System.Drawing.Size(146, 29)
        Me.TableLayoutPanel1.TabIndex = 0
        '
        'OK_Button
        '
        Me.OK_Button.Anchor = System.Windows.Forms.AnchorStyles.None
        Me.OK_Button.Location = New System.Drawing.Point(3, 3)
        Me.OK_Button.Name = "OK_Button"
        Me.OK_Button.Size = New System.Drawing.Size(67, 23)
        Me.OK_Button.TabIndex = 0
        Me.OK_Button.Text = "OK"
        '
        'Cancel_Button
        '
        Me.Cancel_Button.Anchor = System.Windows.Forms.AnchorStyles.None
        Me.Cancel_Button.DialogResult = System.Windows.Forms.DialogResult.Cancel
        Me.Cancel_Button.Location = New System.Drawing.Point(76, 3)
        Me.Cancel_Button.Name = "Cancel_Button"
        Me.Cancel_Button.Size = New System.Drawing.Size(67, 23)
        Me.Cancel_Button.TabIndex = 1
        Me.Cancel_Button.Text = "Cancel"
        '
        'Label1
        '
        Me.Label1.AutoSize = True
        Me.Label1.Location = New System.Drawing.Point(13, 13)
        Me.Label1.Name = "Label1"
        Me.Label1.Size = New System.Drawing.Size(106, 13)
        Me.Label1.TabIndex = 1
        Me.Label1.Text = "Application to watch:"
        '
        'ComboBox_ApplicationInstances
        '
        Me.ComboBox_ApplicationInstances.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
        Me.ComboBox_ApplicationInstances.FormattingEnabled = True
        Me.ComboBox_ApplicationInstances.Location = New System.Drawing.Point(125, 10)
        Me.ComboBox_ApplicationInstances.Name = "ComboBox_ApplicationInstances"
        Me.ComboBox_ApplicationInstances.Size = New System.Drawing.Size(298, 21)
        Me.ComboBox_ApplicationInstances.TabIndex = 2
        '
        'GroupBox_DialSettings
        '
        Me.GroupBox_DialSettings.Controls.Add(Me.TextBox_Max_Threads)
        Me.GroupBox_DialSettings.Controls.Add(Me.TextBox_Max_Classes)
        Me.GroupBox_DialSettings.Controls.Add(Me.TextBox_Max_Exceptions)
        Me.GroupBox_DialSettings.Controls.Add(Me.TextBox_Max_Garbage)
        Me.GroupBox_DialSettings.Controls.Add(Me.TextBox_Max_Memory)
        Me.GroupBox_DialSettings.Controls.Add(Me.Label12)
        Me.GroupBox_DialSettings.Controls.Add(Me.Label13)
        Me.GroupBox_DialSettings.Controls.Add(Me.Label14)
        Me.GroupBox_DialSettings.Controls.Add(Me.Label15)
        Me.GroupBox_DialSettings.Controls.Add(Me.Label16)
        Me.GroupBox_DialSettings.Controls.Add(Me.TextBox_Min_Threads)
        Me.GroupBox_DialSettings.Controls.Add(Me.TextBox_Min_Classes)
        Me.GroupBox_DialSettings.Controls.Add(Me.TextBox_Min_Exceptions)
        Me.GroupBox_DialSettings.Controls.Add(Me.TextBox_Min_Garbage)
        Me.GroupBox_DialSettings.Controls.Add(Me.TextBox_Min_Memory)
        Me.GroupBox_DialSettings.Controls.Add(Me.Label11)
        Me.GroupBox_DialSettings.Controls.Add(Me.Label10)
        Me.GroupBox_DialSettings.Controls.Add(Me.Label9)
        Me.GroupBox_DialSettings.Controls.Add(Me.Label8)
        Me.GroupBox_DialSettings.Controls.Add(Me.Label7)
        Me.GroupBox_DialSettings.Controls.Add(Me.Label6)
        Me.GroupBox_DialSettings.Controls.Add(Me.Label5)
        Me.GroupBox_DialSettings.Controls.Add(Me.Label4)
        Me.GroupBox_DialSettings.Controls.Add(Me.Label3)
        Me.GroupBox_DialSettings.Controls.Add(Me.Label2)
        Me.GroupBox_DialSettings.Location = New System.Drawing.Point(13, 43)
        Me.GroupBox_DialSettings.Name = "GroupBox_DialSettings"
        Me.GroupBox_DialSettings.Size = New System.Drawing.Size(407, 225)
        Me.GroupBox_DialSettings.TabIndex = 3
        Me.GroupBox_DialSettings.TabStop = False
        Me.GroupBox_DialSettings.Text = "Dial Settings"
        '
        'Label6
        '
        Me.Label6.AutoSize = True
        Me.Label6.Location = New System.Drawing.Point(6, 138)
        Me.Label6.Name = "Label6"
        Me.Label6.Size = New System.Drawing.Size(52, 13)
        Me.Label6.TabIndex = 4
        Me.Label6.Text = "Threads :"
        '
        'Label5
        '
        Me.Label5.AutoSize = True
        Me.Label5.Location = New System.Drawing.Point(6, 111)
        Me.Label5.Name = "Label5"
        Me.Label5.Size = New System.Drawing.Size(85, 13)
        Me.Label5.TabIndex = 3
        Me.Label5.Text = "Classes Loaded:"
        '
        'Label4
        '
        Me.Label4.AutoSize = True
        Me.Label4.Location = New System.Drawing.Point(7, 82)
        Me.Label4.Name = "Label4"
        Me.Label4.Size = New System.Drawing.Size(62, 13)
        Me.Label4.TabIndex = 2
        Me.Label4.Text = "Exceptions:"
        '
        'Label3
        '
        Me.Label3.AutoSize = True
        Me.Label3.Location = New System.Drawing.Point(6, 51)
        Me.Label3.Name = "Label3"
        Me.Label3.Size = New System.Drawing.Size(100, 13)
        Me.Label3.TabIndex = 1
        Me.Label3.Text = "Garbage Collection:"
        '
        'Label2
        '
        Me.Label2.AutoSize = True
        Me.Label2.Location = New System.Drawing.Point(7, 20)
        Me.Label2.Name = "Label2"
        Me.Label2.Size = New System.Drawing.Size(69, 13)
        Me.Label2.TabIndex = 0
        Me.Label2.Text = "Memory Use:"
        '
        'Label7
        '
        Me.Label7.AutoSize = True
        Me.Label7.ForeColor = System.Drawing.Color.Navy
        Me.Label7.Location = New System.Drawing.Point(109, 20)
        Me.Label7.Name = "Label7"
        Me.Label7.Size = New System.Drawing.Size(27, 13)
        Me.Label7.TabIndex = 5
        Me.Label7.Text = "Min:"
        '
        'Label8
        '
        Me.Label8.AutoSize = True
        Me.Label8.ForeColor = System.Drawing.Color.Navy
        Me.Label8.Location = New System.Drawing.Point(109, 51)
        Me.Label8.Name = "Label8"
        Me.Label8.Size = New System.Drawing.Size(27, 13)
        Me.Label8.TabIndex = 6
        Me.Label8.Text = "Min:"
        '
        'Label9
        '
        Me.Label9.AutoSize = True
        Me.Label9.ForeColor = System.Drawing.Color.Navy
        Me.Label9.Location = New System.Drawing.Point(109, 82)
        Me.Label9.Name = "Label9"
        Me.Label9.Size = New System.Drawing.Size(27, 13)
        Me.Label9.TabIndex = 7
        Me.Label9.Text = "Min:"
        '
        'Label10
        '
        Me.Label10.AutoSize = True
        Me.Label10.ForeColor = System.Drawing.Color.Navy
        Me.Label10.Location = New System.Drawing.Point(109, 111)
        Me.Label10.Name = "Label10"
        Me.Label10.Size = New System.Drawing.Size(27, 13)
        Me.Label10.TabIndex = 8
        Me.Label10.Text = "Min:"
        '
        'Label11
        '
        Me.Label11.AutoSize = True
        Me.Label11.ForeColor = System.Drawing.Color.Navy
        Me.Label11.Location = New System.Drawing.Point(109, 138)
        Me.Label11.Name = "Label11"
        Me.Label11.Size = New System.Drawing.Size(27, 13)
        Me.Label11.TabIndex = 9
        Me.Label11.Text = "Min:"
        '
        'TextBox_Min_Memory
        '
        Me.TextBox_Min_Memory.Location = New System.Drawing.Point(143, 20)
        Me.TextBox_Min_Memory.MaxLength = 6
        Me.TextBox_Min_Memory.Name = "TextBox_Min_Memory"
        Me.TextBox_Min_Memory.Size = New System.Drawing.Size(63, 20)
        Me.TextBox_Min_Memory.TabIndex = 10
        Me.TextBox_Min_Memory.Text = "0"
        Me.TextBox_Min_Memory.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
        Me.TextBox_Min_Memory.WordWrap = False
        '
        'TextBox_Min_Garbage
        '
        Me.TextBox_Min_Garbage.Location = New System.Drawing.Point(143, 51)
        Me.TextBox_Min_Garbage.MaxLength = 6
        Me.TextBox_Min_Garbage.Name = "TextBox_Min_Garbage"
        Me.TextBox_Min_Garbage.Size = New System.Drawing.Size(63, 20)
        Me.TextBox_Min_Garbage.TabIndex = 11
        Me.TextBox_Min_Garbage.Text = "0"
        Me.TextBox_Min_Garbage.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
        Me.TextBox_Min_Garbage.WordWrap = False
        '
        'TextBox_Min_Exceptions
        '
        Me.TextBox_Min_Exceptions.Location = New System.Drawing.Point(143, 82)
        Me.TextBox_Min_Exceptions.MaxLength = 6
        Me.TextBox_Min_Exceptions.Name = "TextBox_Min_Exceptions"
        Me.TextBox_Min_Exceptions.Size = New System.Drawing.Size(63, 20)
        Me.TextBox_Min_Exceptions.TabIndex = 12
        Me.TextBox_Min_Exceptions.Text = "0"
        Me.TextBox_Min_Exceptions.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
        Me.TextBox_Min_Exceptions.WordWrap = False
        '
        'TextBox_Min_Classes
        '
        Me.TextBox_Min_Classes.Location = New System.Drawing.Point(143, 111)
        Me.TextBox_Min_Classes.MaxLength = 6
        Me.TextBox_Min_Classes.Name = "TextBox_Min_Classes"
        Me.TextBox_Min_Classes.Size = New System.Drawing.Size(63, 20)
        Me.TextBox_Min_Classes.TabIndex = 13
        Me.TextBox_Min_Classes.Text = "0"
        Me.TextBox_Min_Classes.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
        Me.TextBox_Min_Classes.WordWrap = False
        '
        'TextBox_Min_Threads
        '
        Me.TextBox_Min_Threads.Location = New System.Drawing.Point(143, 138)
        Me.TextBox_Min_Threads.MaxLength = 6
        Me.TextBox_Min_Threads.Name = "TextBox_Min_Threads"
        Me.TextBox_Min_Threads.Size = New System.Drawing.Size(63, 20)
        Me.TextBox_Min_Threads.TabIndex = 14
        Me.TextBox_Min_Threads.Text = "0"
        Me.TextBox_Min_Threads.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
        Me.TextBox_Min_Threads.WordWrap = False
        '
        'TextBox_Max_Threads
        '
        Me.TextBox_Max_Threads.Location = New System.Drawing.Point(288, 138)
        Me.TextBox_Max_Threads.MaxLength = 6
        Me.TextBox_Max_Threads.Name = "TextBox_Max_Threads"
        Me.TextBox_Max_Threads.Size = New System.Drawing.Size(63, 20)
        Me.TextBox_Max_Threads.TabIndex = 24
        Me.TextBox_Max_Threads.Text = "0"
        Me.TextBox_Max_Threads.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
        Me.TextBox_Max_Threads.WordWrap = False
        '
        'TextBox_Max_Classes
        '
        Me.TextBox_Max_Classes.Location = New System.Drawing.Point(288, 111)
        Me.TextBox_Max_Classes.MaxLength = 6
        Me.TextBox_Max_Classes.Name = "TextBox_Max_Classes"
        Me.TextBox_Max_Classes.Size = New System.Drawing.Size(63, 20)
        Me.TextBox_Max_Classes.TabIndex = 23
        Me.TextBox_Max_Classes.Text = "0"
        Me.TextBox_Max_Classes.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
        Me.TextBox_Max_Classes.WordWrap = False
        '
        'TextBox_Max_Exceptions
        '
        Me.TextBox_Max_Exceptions.Location = New System.Drawing.Point(288, 82)
        Me.TextBox_Max_Exceptions.MaxLength = 6
        Me.TextBox_Max_Exceptions.Name = "TextBox_Max_Exceptions"
        Me.TextBox_Max_Exceptions.Size = New System.Drawing.Size(63, 20)
        Me.TextBox_Max_Exceptions.TabIndex = 22
        Me.TextBox_Max_Exceptions.Text = "0"
        Me.TextBox_Max_Exceptions.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
        Me.TextBox_Max_Exceptions.WordWrap = False
        '
        'TextBox_Max_Garbage
        '
        Me.TextBox_Max_Garbage.Location = New System.Drawing.Point(288, 51)
        Me.TextBox_Max_Garbage.MaxLength = 6
        Me.TextBox_Max_Garbage.Name = "TextBox_Max_Garbage"
        Me.TextBox_Max_Garbage.Size = New System.Drawing.Size(63, 20)
        Me.TextBox_Max_Garbage.TabIndex = 21
        Me.TextBox_Max_Garbage.Text = "0"
        Me.TextBox_Max_Garbage.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
        Me.TextBox_Max_Garbage.WordWrap = False
        '
        'TextBox_Max_Memory
        '
        Me.TextBox_Max_Memory.Location = New System.Drawing.Point(288, 20)
        Me.TextBox_Max_Memory.MaxLength = 6
        Me.TextBox_Max_Memory.Name = "TextBox_Max_Memory"
        Me.TextBox_Max_Memory.Size = New System.Drawing.Size(63, 20)
        Me.TextBox_Max_Memory.TabIndex = 20
        Me.TextBox_Max_Memory.Text = "0"
        Me.TextBox_Max_Memory.TextAlign = System.Windows.Forms.HorizontalAlignment.Right
        Me.TextBox_Max_Memory.WordWrap = False
        '
        'Label12
        '
        Me.Label12.AutoSize = True
        Me.Label12.ForeColor = System.Drawing.Color.Navy
        Me.Label12.Location = New System.Drawing.Point(254, 138)
        Me.Label12.Name = "Label12"
        Me.Label12.Size = New System.Drawing.Size(30, 13)
        Me.Label12.TabIndex = 19
        Me.Label12.Text = "Max:"
        '
        'Label13
        '
        Me.Label13.AutoSize = True
        Me.Label13.ForeColor = System.Drawing.Color.Navy
        Me.Label13.Location = New System.Drawing.Point(254, 111)
        Me.Label13.Name = "Label13"
        Me.Label13.Size = New System.Drawing.Size(30, 13)
        Me.Label13.TabIndex = 18
        Me.Label13.Text = "Max:"
        '
        'Label14
        '
        Me.Label14.AutoSize = True
        Me.Label14.ForeColor = System.Drawing.Color.Navy
        Me.Label14.Location = New System.Drawing.Point(254, 82)
        Me.Label14.Name = "Label14"
        Me.Label14.Size = New System.Drawing.Size(30, 13)
        Me.Label14.TabIndex = 17
        Me.Label14.Text = "Max:"
        '
        'Label15
        '
        Me.Label15.AutoSize = True
        Me.Label15.ForeColor = System.Drawing.Color.Navy
        Me.Label15.Location = New System.Drawing.Point(254, 51)
        Me.Label15.Name = "Label15"
        Me.Label15.Size = New System.Drawing.Size(30, 13)
        Me.Label15.TabIndex = 16
        Me.Label15.Text = "Max:"
        '
        'Label16
        '
        Me.Label16.AutoSize = True
        Me.Label16.ForeColor = System.Drawing.Color.Navy
        Me.Label16.Location = New System.Drawing.Point(254, 20)
        Me.Label16.Name = "Label16"
        Me.Label16.Size = New System.Drawing.Size(30, 13)
        Me.Label16.TabIndex = 15
        Me.Label16.Text = "Max:"
        '
        'SettingsForm
        '
        Me.AcceptButton = Me.OK_Button
        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
        Me.CancelButton = Me.Cancel_Button
        Me.ClientSize = New System.Drawing.Size(435, 315)
        Me.Controls.Add(Me.GroupBox_DialSettings)
        Me.Controls.Add(Me.ComboBox_ApplicationInstances)
        Me.Controls.Add(Me.Label1)
        Me.Controls.Add(Me.TableLayoutPanel1)
        Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog
        Me.MaximizeBox = False
        Me.MinimizeBox = False
        Me.Name = "SettingsForm"
        Me.ShowInTaskbar = False
        Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent
        Me.Text = "Application Dashboard Settings"
        Me.TableLayoutPanel1.ResumeLayout(False)
        Me.GroupBox_DialSettings.ResumeLayout(False)
        Me.GroupBox_DialSettings.PerformLayout()
        Me.ResumeLayout(False)
        Me.PerformLayout()

    End Sub
    Friend WithEvents TableLayoutPanel1 As System.Windows.Forms.TableLayoutPanel
    Friend WithEvents OK_Button As System.Windows.Forms.Button
    Friend WithEvents Cancel_Button As System.Windows.Forms.Button
    Friend WithEvents Label1 As System.Windows.Forms.Label
    Friend WithEvents ComboBox_ApplicationInstances As System.Windows.Forms.ComboBox
    Friend WithEvents GroupBox_DialSettings As System.Windows.Forms.GroupBox
    Friend WithEvents Label2 As System.Windows.Forms.Label
    Friend WithEvents Label3 As System.Windows.Forms.Label
    Friend WithEvents Label4 As System.Windows.Forms.Label
    Friend WithEvents Label5 As System.Windows.Forms.Label
    Friend WithEvents Label6 As System.Windows.Forms.Label
    Friend WithEvents Label7 As System.Windows.Forms.Label
    Friend WithEvents TextBox_Max_Threads As System.Windows.Forms.TextBox
    Friend WithEvents TextBox_Max_Classes As System.Windows.Forms.TextBox
    Friend WithEvents TextBox_Max_Exceptions As System.Windows.Forms.TextBox
    Friend WithEvents TextBox_Max_Garbage As System.Windows.Forms.TextBox
    Friend WithEvents TextBox_Max_Memory As System.Windows.Forms.TextBox
    Friend WithEvents Label12 As System.Windows.Forms.Label
    Friend WithEvents Label13 As System.Windows.Forms.Label
    Friend WithEvents Label14 As System.Windows.Forms.Label
    Friend WithEvents Label15 As System.Windows.Forms.Label
    Friend WithEvents Label16 As System.Windows.Forms.Label
    Friend WithEvents TextBox_Min_Threads As System.Windows.Forms.TextBox
    Friend WithEvents TextBox_Min_Classes As System.Windows.Forms.TextBox
    Friend WithEvents TextBox_Min_Exceptions As System.Windows.Forms.TextBox
    Friend WithEvents TextBox_Min_Garbage As System.Windows.Forms.TextBox
    Friend WithEvents TextBox_Min_Memory As System.Windows.Forms.TextBox
    Friend WithEvents Label11 As System.Windows.Forms.Label
    Friend WithEvents Label10 As System.Windows.Forms.Label
    Friend WithEvents Label9 As System.Windows.Forms.Label
    Friend WithEvents Label8 As System.Windows.Forms.Label

End Class

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Ireland Ireland
C# / SQL Server developer
Microsoft MVP (Azure) 2017
Microsoft MVP (Visual Basic) 2006, 2007

Comments and Discussions