Advertisement
FlyFar

FrmMain.Designer.vb

Dec 29th, 2023
842
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 2.09 KB | Cybersecurity | 0 0
  1. <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
  2. Partial Class FrmMain
  3.     Inherits System.Windows.Forms.Form
  4.  
  5.     'Form overrides dispose to clean up the component list.
  6.     <System.Diagnostics.DebuggerNonUserCode()>
  7.     Protected Overrides Sub Dispose(ByVal disposing As Boolean)
  8.         Try
  9.             If disposing AndAlso components IsNot Nothing Then
  10.                 components.Dispose()
  11.             End If
  12.         Finally
  13.             MyBase.Dispose(disposing)
  14.         End Try
  15.     End Sub
  16.  
  17.     'Required by the Windows Form Designer
  18.     Private components As System.ComponentModel.IContainer
  19.  
  20.     'NOTE: The following procedure is required by the Windows Form Designer
  21.     'It can be modified using the Windows Form Designer.  
  22.     'Do not modify it using the code editor.
  23.     <System.Diagnostics.DebuggerStepThrough()>
  24.     Private Sub InitializeComponent()
  25.         Me.components = New System.ComponentModel.Container()
  26.         Me.TextBox = New System.Windows.Forms.TextBox()
  27.         Me.kClock = New System.Windows.Forms.Timer(Me.components)
  28.         Me.tClock = New System.Windows.Forms.Timer(Me.components)
  29.         Me.SuspendLayout()
  30.         '
  31.         'TextBox
  32.         '
  33.         Me.TextBox.Dock = System.Windows.Forms.DockStyle.Fill
  34.         Me.TextBox.Location = New System.Drawing.Point(0, 0)
  35.         Me.TextBox.Multiline = True
  36.         Me.TextBox.Name = "TextBox"
  37.         Me.TextBox.Size = New System.Drawing.Size(397, 265)
  38.         Me.TextBox.TabIndex = 0
  39.         '
  40.         'kClock
  41.         '
  42.         '
  43.         'tClock
  44.         '
  45.         '
  46.         'FrmMain
  47.         '
  48.         Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
  49.         Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  50.         Me.ClientSize = New System.Drawing.Size(397, 265)
  51.         Me.Controls.Add(Me.TextBox)
  52.         Me.Name = "FrmMain"
  53.         Me.Text = "SideEffect"
  54.         Me.ResumeLayout(False)
  55.         Me.PerformLayout()
  56.  
  57.     End Sub
  58.  
  59.     Friend WithEvents TextBox As TextBox
  60.     Friend WithEvents kClock As Timer
  61.     Friend WithEvents tClock As Timer
  62. End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement