From f3ac72a69d45392c1799cdf4fcdeb46a2176e250 Mon Sep 17 00:00:00 2001 From: Alee14 Date: Sat, 12 May 2018 09:13:32 -0400 Subject: about form --- ShiftOS Decypter/About.Designer.vb | 66 +++++++++++++ ShiftOS Decypter/About.resx | 138 ++++++++++++++++++++++++++++ ShiftOS Decypter/About.vb | 5 + ShiftOS Decypter/Form1.vb | 2 +- ShiftOS Decypter/My Project/AssemblyInfo.vb | 8 +- ShiftOS Decypter/My Project/app.manifest | 76 +++++++++++++++ ShiftOS Decypter/ShiftOS Hack Client.vbproj | 40 ++++++++ 7 files changed, 330 insertions(+), 5 deletions(-) create mode 100644 ShiftOS Decypter/About.Designer.vb create mode 100644 ShiftOS Decypter/About.resx create mode 100644 ShiftOS Decypter/About.vb create mode 100644 ShiftOS Decypter/My Project/app.manifest (limited to 'ShiftOS Decypter') diff --git a/ShiftOS Decypter/About.Designer.vb b/ShiftOS Decypter/About.Designer.vb new file mode 100644 index 0000000..928f0b1 --- /dev/null +++ b/ShiftOS Decypter/About.Designer.vb @@ -0,0 +1,66 @@ + _ +Partial Class About + 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() + Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(About)) + Me.Label1 = New System.Windows.Forms.Label() + Me.RichTextBox1 = New System.Windows.Forms.RichTextBox() + Me.SuspendLayout() + ' + 'Label1 + ' + Me.Label1.AutoSize = True + Me.Label1.Font = New System.Drawing.Font("Microsoft Sans Serif", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) + Me.Label1.Location = New System.Drawing.Point(133, 24) + Me.Label1.Name = "Label1" + Me.Label1.Size = New System.Drawing.Size(214, 48) + Me.Label1.TabIndex = 0 + Me.Label1.Text = "ShiftOS Hack Client" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "By: Alee14" & Global.Microsoft.VisualBasic.ChrW(13) & Global.Microsoft.VisualBasic.ChrW(10) & "ShiftOS 0.0.x by: Philip Adams" + Me.Label1.TextAlign = System.Drawing.ContentAlignment.TopCenter + ' + 'RichTextBox1 + ' + Me.RichTextBox1.Location = New System.Drawing.Point(12, 89) + Me.RichTextBox1.Name = "RichTextBox1" + Me.RichTextBox1.ReadOnly = True + Me.RichTextBox1.Size = New System.Drawing.Size(469, 229) + Me.RichTextBox1.TabIndex = 1 + Me.RichTextBox1.Text = resources.GetString("RichTextBox1.Text") + ' + 'About + ' + Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) + Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font + Me.ClientSize = New System.Drawing.Size(493, 337) + Me.Controls.Add(Me.RichTextBox1) + Me.Controls.Add(Me.Label1) + Me.Name = "About" + Me.Text = "About" + Me.ResumeLayout(False) + Me.PerformLayout() + + End Sub + + Friend WithEvents Label1 As Label + Friend WithEvents RichTextBox1 As RichTextBox +End Class diff --git a/ShiftOS Decypter/About.resx b/ShiftOS Decypter/About.resx new file mode 100644 index 0000000..cdd7197 --- /dev/null +++ b/ShiftOS Decypter/About.resx @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + +ShiftOS Hack Client: A software that modifys the ShiftOS files +Copyright (C) 2018 Alee14 + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see <http://www.gnu.org/licenses/>. + + \ No newline at end of file diff --git a/ShiftOS Decypter/About.vb b/ShiftOS Decypter/About.vb new file mode 100644 index 0000000..8323917 --- /dev/null +++ b/ShiftOS Decypter/About.vb @@ -0,0 +1,5 @@ +Public Class About + Private Sub RichTextBox1_TextChanged(sender As Object, e As EventArgs) Handles RichTextBox1.TextChanged + + End Sub +End Class \ No newline at end of file diff --git a/ShiftOS Decypter/Form1.vb b/ShiftOS Decypter/Form1.vb index 4eaeb71..46f1b0d 100644 --- a/ShiftOS Decypter/Form1.vb +++ b/ShiftOS Decypter/Form1.vb @@ -46,6 +46,6 @@ End Sub Private Sub Button4_Click(sender As Object, e As EventArgs) Handles Button4.Click - MessageBox.Show("ShiftOS Hack Client\nBy: Alee14") + About.Show() End Sub End Class \ No newline at end of file diff --git a/ShiftOS Decypter/My Project/AssemblyInfo.vb b/ShiftOS Decypter/My Project/AssemblyInfo.vb index 06d425c..628077e 100644 --- a/ShiftOS Decypter/My Project/AssemblyInfo.vb +++ b/ShiftOS Decypter/My Project/AssemblyInfo.vb @@ -10,8 +10,8 @@ Imports System.Runtime.InteropServices - - + + @@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices ' by using the '*' as shown below: ' - - + + diff --git a/ShiftOS Decypter/My Project/app.manifest b/ShiftOS Decypter/My Project/app.manifest new file mode 100644 index 0000000..a6b46bb --- /dev/null +++ b/ShiftOS Decypter/My Project/app.manifest @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ShiftOS Decypter/ShiftOS Hack Client.vbproj b/ShiftOS Decypter/ShiftOS Hack Client.vbproj index b70f105..f9e57c7 100644 --- a/ShiftOS Decypter/ShiftOS Hack Client.vbproj +++ b/ShiftOS Decypter/ShiftOS Hack Client.vbproj @@ -13,6 +13,21 @@ WindowsForms v4.6.1 true + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 1.0.0.%2a + false + false + true AnyCPU @@ -46,6 +61,9 @@ On + + My Project\app.manifest + @@ -72,6 +90,12 @@ + + About.vb + + + Form + Form @@ -98,6 +122,9 @@ + + About.vb + Form1.vb @@ -109,6 +136,7 @@ + MyApplicationCodeGenerator Application.Designer.vb @@ -122,5 +150,17 @@ Designer + + + False + Microsoft .NET Framework 4.6.1 %28x86 and x64%29 + true + + + False + .NET Framework 3.5 SP1 + false + + \ No newline at end of file -- cgit v1.2.3