From 54355f9686a5a07f27de5cd3444b87509df2fd2f Mon Sep 17 00:00:00 2001 From: EverythingWindows Date: Sun, 13 Nov 2022 15:15:05 +0700 Subject: Changed from Environment.NewLine to dedicated NewLine module thoroughly, Fixing a bug on always asks for update, Slowly migrating from full Terminal-dependant to Console-based --- .../MainForms/DebugWindow.Designer.vb | 82 ++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 ShiftOS-TheRevival/MainForms/DebugWindow.Designer.vb (limited to 'ShiftOS-TheRevival/MainForms/DebugWindow.Designer.vb') diff --git a/ShiftOS-TheRevival/MainForms/DebugWindow.Designer.vb b/ShiftOS-TheRevival/MainForms/DebugWindow.Designer.vb new file mode 100644 index 0000000..c8a0429 --- /dev/null +++ b/ShiftOS-TheRevival/MainForms/DebugWindow.Designer.vb @@ -0,0 +1,82 @@ + _ +Partial Class DebugWindow + 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.TextBox1 = New System.Windows.Forms.TextBox() + Me.Label1 = New System.Windows.Forms.Label() + Me.Button1 = New System.Windows.Forms.Button() + Me.SuspendLayout() + ' + 'TextBox1 + ' + Me.TextBox1.Location = New System.Drawing.Point(12, 49) + Me.TextBox1.Multiline = True + Me.TextBox1.Name = "TextBox1" + Me.TextBox1.ReadOnly = True + Me.TextBox1.Size = New System.Drawing.Size(760, 500) + Me.TextBox1.TabIndex = 0 + Me.TextBox1.Text = "=====SHIFTOS ANTIBUGSPAP=====" + ' + 'Label1 + ' + Me.Label1.AutoSize = True + Me.Label1.Font = New System.Drawing.Font("Microsoft Sans Serif", 24.0!, System.Drawing.FontStyle.Bold) + Me.Label1.Location = New System.Drawing.Point(12, 9) + Me.Label1.Name = "Label1" + Me.Label1.Size = New System.Drawing.Size(551, 37) + Me.Label1.TabIndex = 1 + Me.Label1.Text = "ShiftOS-TheRevival Debug Window" + ' + 'Button1 + ' + Me.Button1.Location = New System.Drawing.Point(697, 20) + Me.Button1.Name = "Button1" + Me.Button1.Size = New System.Drawing.Size(75, 23) + Me.Button1.TabIndex = 2 + Me.Button1.Text = "Copy All" + Me.Button1.UseVisualStyleBackColor = True + ' + 'DebugWindow + ' + Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) + Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font + Me.ClientSize = New System.Drawing.Size(784, 561) + Me.Controls.Add(Me.Button1) + Me.Controls.Add(Me.Label1) + Me.Controls.Add(Me.TextBox1) + Me.MaximizeBox = False + Me.MinimizeBox = False + Me.Name = "DebugWindow" + Me.ShowIcon = False + Me.ShowInTaskbar = False + Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen + Me.Text = "DebugWindow" + Me.ResumeLayout(False) + Me.PerformLayout() + + End Sub + + Friend WithEvents TextBox1 As TextBox + Friend WithEvents Label1 As Label + Friend WithEvents Button1 As Button +End Class -- cgit v1.2.3