_ Partial Class ChangelogViewer Inherits System.Windows.Forms.Form 'Form overrides dispose to clean up the component list. _ 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. _ Private Sub InitializeComponent() Me.RichTextBox1 = New System.Windows.Forms.RichTextBox() Me.Label1 = New System.Windows.Forms.Label() Me.SuspendLayout() ' 'RichTextBox1 ' Me.RichTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.None Me.RichTextBox1.Font = New System.Drawing.Font("Microsoft Sans Serif", 10.15!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.RichTextBox1.Location = New System.Drawing.Point(1, 1) Me.RichTextBox1.Name = "RichTextBox1" Me.RichTextBox1.Size = New System.Drawing.Size(270, 197) Me.RichTextBox1.TabIndex = 0 Me.RichTextBox1.Text = "Reading..." ' 'Label1 ' Me.Label1.AutoSize = True Me.Label1.Location = New System.Drawing.Point(316, 75) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(122, 17) Me.Label1.TabIndex = 1 Me.Label1.Text = "no waifu = no laifu" ' 'ChangelogViewer ' Me.AutoScaleDimensions = New System.Drawing.SizeF(8.0!, 16.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(868, 473) Me.Controls.Add(Me.RichTextBox1) Me.Controls.Add(Me.Label1) Me.Name = "ChangelogViewer" Me.Text = "Changelog" Me.ResumeLayout(False) Me.PerformLayout() End Sub Friend WithEvents RichTextBox1 As RichTextBox Friend WithEvents Label1 As Label End Class