diff --git a/TimeHACK.Engine/BSODCreator.cs b/Histacom2.Engine/BSODCreator.cs similarity index 94% rename from TimeHACK.Engine/BSODCreator.cs rename to Histacom2.Engine/BSODCreator.cs index 6c49b7b..fb693a9 100644 --- a/TimeHACK.Engine/BSODCreator.cs +++ b/Histacom2.Engine/BSODCreator.cs @@ -1,54 +1,54 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Forms; -using TimeHACK.Engine.Template; - -namespace TimeHACK.Engine -{ - public class BSODCreator - { - public static System.Drawing.Text.PrivateFontCollection pfc = new System.Drawing.Text.PrivateFontCollection(); - - public enum BSODCauses - { - Testing, - WimpEnding, - PiracyEnding, - } - - public Win9XBSOD throw9XBSOD(bool except, BSODCauses type) - { - pfc.AddFontFile($@"{SaveSystem.GameDirectory}\Data\windows_command_prompt.ttf"); - Win9XBSOD bsod = new Win9XBSOD(); - foreach (Control ctrl in bsod.Controls) { - ctrl.Font = new System.Drawing.Font(pfc.Families[0], 20F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((0))); - } - bsod.TopMost = true; - bsod.FormBorderStyle = FormBorderStyle.None; - bsod.WindowState = FormWindowState.Maximized; - switch (type) - { - case BSODCauses.Testing: - bsod.textBox1.Text = "This is the testing type of BSOD. Hurrah."; - break; - case BSODCauses.WimpEnding: - bsod.textBox1.Text = "An unknown but fatal exception has occured in the program \"wchat98.exe\". The current processes will be terminated."; - break; - case BSODCauses.PiracyEnding: - bsod.textBox1.Text = "Vital elements of Windows were removed, but recovered. However, your data has been lost."; - bsod.BackColor = System.Drawing.Color.Black; - foreach (Control ctrl in bsod.Controls) ctrl.ForeColor = System.Drawing.Color.Silver; - bsod.label1.BackColor = System.Drawing.Color.Silver; - bsod.label1.ForeColor = System.Drawing.Color.Black; - break; - default: - break; - } - bsod.Show(); - return bsod; - } - } -} +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; +using Histacom2.Engine.Template; + +namespace Histacom2.Engine +{ + public class BSODCreator + { + public static System.Drawing.Text.PrivateFontCollection pfc = new System.Drawing.Text.PrivateFontCollection(); + + public enum BSODCauses + { + Testing, + WimpEnding, + PiracyEnding, + } + + public Win9XBSOD throw9XBSOD(bool except, BSODCauses type) + { + pfc.AddFontFile($@"{SaveSystem.GameDirectory}\Data\windows_command_prompt.ttf"); + Win9XBSOD bsod = new Win9XBSOD(); + foreach (Control ctrl in bsod.Controls) { + ctrl.Font = new System.Drawing.Font(pfc.Families[0], 20F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((0))); + } + bsod.TopMost = true; + bsod.FormBorderStyle = FormBorderStyle.None; + bsod.WindowState = FormWindowState.Maximized; + switch (type) + { + case BSODCauses.Testing: + bsod.textBox1.Text = "This is the testing type of BSOD. Hurrah."; + break; + case BSODCauses.WimpEnding: + bsod.textBox1.Text = "An unknown but fatal exception has occured in the program \"wchat98.exe\". The current processes will be terminated."; + break; + case BSODCauses.PiracyEnding: + bsod.textBox1.Text = "Vital elements of Windows were removed, but recovered. However, your data has been lost."; + bsod.BackColor = System.Drawing.Color.Black; + foreach (Control ctrl in bsod.Controls) ctrl.ForeColor = System.Drawing.Color.Silver; + bsod.label1.BackColor = System.Drawing.Color.Silver; + bsod.label1.ForeColor = System.Drawing.Color.Black; + break; + default: + break; + } + bsod.Show(); + return bsod; + } + } +} diff --git a/TimeHACK.Engine/DesktopController.cs b/Histacom2.Engine/DesktopController.cs similarity index 98% rename from TimeHACK.Engine/DesktopController.cs rename to Histacom2.Engine/DesktopController.cs index 2cfdcf3..8ea9775 100644 --- a/TimeHACK.Engine/DesktopController.cs +++ b/Histacom2.Engine/DesktopController.cs @@ -7,7 +7,7 @@ using System.IO; using Newtonsoft.Json; -namespace TimeHACK.Engine +namespace Histacom2.Engine { public static class DesktopController { diff --git a/TimeHACK.Engine/FileDialogBoxManager.cs b/Histacom2.Engine/FileDialogBoxManager.cs similarity index 97% rename from TimeHACK.Engine/FileDialogBoxManager.cs rename to Histacom2.Engine/FileDialogBoxManager.cs index f6d30ae..a862bc7 100644 --- a/TimeHACK.Engine/FileDialogBoxManager.cs +++ b/Histacom2.Engine/FileDialogBoxManager.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; using System.Windows.Forms; -namespace TimeHACK.Engine +namespace Histacom2.Engine { public static class FileDialogBoxManager { diff --git a/TimeHACK.Engine/TimeHACK.Engine.csproj b/Histacom2.Engine/Histacom2.Engine.csproj similarity index 98% rename from TimeHACK.Engine/TimeHACK.Engine.csproj rename to Histacom2.Engine/Histacom2.Engine.csproj index 056d4dc..beb4aa2 100644 --- a/TimeHACK.Engine/TimeHACK.Engine.csproj +++ b/Histacom2.Engine/Histacom2.Engine.csproj @@ -7,8 +7,8 @@ {9477B70F-2D32-4E1D-857B-4624A1DEEB1B} Library Properties - TimeHACK.Engine - TimeHACK.Engine + Histacom2.Engine + Histacom2.Engine v4.5.2 512 diff --git a/TimeHACK.Engine/MessageParser.cs b/Histacom2.Engine/MessageParser.cs similarity index 97% rename from TimeHACK.Engine/MessageParser.cs rename to Histacom2.Engine/MessageParser.cs index 6a13ae6..ff798c0 100644 --- a/TimeHACK.Engine/MessageParser.cs +++ b/Histacom2.Engine/MessageParser.cs @@ -5,7 +5,7 @@ using System.Text; using System.Threading.Tasks; -namespace TimeHACK.Engine +namespace Histacom2.Engine { public class MessageParser { diff --git a/TimeHACK.Engine/Paintbrush.cs b/Histacom2.Engine/Paintbrush.cs similarity index 98% rename from TimeHACK.Engine/Paintbrush.cs rename to Histacom2.Engine/Paintbrush.cs index a8a6b54..320b80d 100644 --- a/TimeHACK.Engine/Paintbrush.cs +++ b/Histacom2.Engine/Paintbrush.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; using System.Windows.Forms; -namespace TimeHACK.Engine +namespace Histacom2.Engine { public class Paintbrush { diff --git a/TimeHACK.Engine/Properties/AssemblyInfo.cs b/Histacom2.Engine/Properties/AssemblyInfo.cs similarity index 93% rename from TimeHACK.Engine/Properties/AssemblyInfo.cs rename to Histacom2.Engine/Properties/AssemblyInfo.cs index 85e2b5d..1ffcdd7 100644 --- a/TimeHACK.Engine/Properties/AssemblyInfo.cs +++ b/Histacom2.Engine/Properties/AssemblyInfo.cs @@ -5,11 +5,11 @@ // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. -[assembly: AssemblyTitle("TimeHACK.Engine")] +[assembly: AssemblyTitle("Histacom2.Engine")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("TimeHACK.Engine")] +[assembly: AssemblyProduct("Histacom2.Engine")] [assembly: AssemblyCopyright("Copyright © 2017")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] diff --git a/TimeHACK.Engine/Properties/Resources.Designer.cs b/Histacom2.Engine/Properties/Resources.Designer.cs similarity index 99% rename from TimeHACK.Engine/Properties/Resources.Designer.cs rename to Histacom2.Engine/Properties/Resources.Designer.cs index ea06c47..7a4cdf6 100644 --- a/TimeHACK.Engine/Properties/Resources.Designer.cs +++ b/Histacom2.Engine/Properties/Resources.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace TimeHACK.Engine.Properties { +namespace Histacom2.Engine.Properties { using System; @@ -39,7 +39,7 @@ internal Resources() { public static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("TimeHACK.Engine.Properties.Resources", typeof(Resources).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Histacom2.Engine.Properties.Resources", typeof(Resources).Assembly); resourceMan = temp; } return resourceMan; diff --git a/TimeHACK.Engine/Properties/Resources.resx b/Histacom2.Engine/Properties/Resources.resx similarity index 100% rename from TimeHACK.Engine/Properties/Resources.resx rename to Histacom2.Engine/Properties/Resources.resx diff --git a/TimeHACK.Engine/Resources/CHORD.WAV b/Histacom2.Engine/Resources/CHORD.WAV similarity index 100% rename from TimeHACK.Engine/Resources/CHORD.WAV rename to Histacom2.Engine/Resources/CHORD.WAV diff --git a/TimeHACK.Engine/Resources/Icon128x.ico b/Histacom2.Engine/Resources/Icon128x.ico similarity index 100% rename from TimeHACK.Engine/Resources/Icon128x.ico rename to Histacom2.Engine/Resources/Icon128x.ico diff --git a/TimeHACK.Engine/Resources/Win95PlusDangerousCreaturesAsterisk.wav b/Histacom2.Engine/Resources/Win95PlusDangerousCreaturesAsterisk.wav similarity index 100% rename from TimeHACK.Engine/Resources/Win95PlusDangerousCreaturesAsterisk.wav rename to Histacom2.Engine/Resources/Win95PlusDangerousCreaturesAsterisk.wav diff --git a/TimeHACK.Engine/Resources/Win95PlusDangerousCreaturesCritStop.wav b/Histacom2.Engine/Resources/Win95PlusDangerousCreaturesCritStop.wav similarity index 100% rename from TimeHACK.Engine/Resources/Win95PlusDangerousCreaturesCritStop.wav rename to Histacom2.Engine/Resources/Win95PlusDangerousCreaturesCritStop.wav diff --git a/TimeHACK.Engine/Resources/Win95PlusDangerousCreaturesExclamation.wav b/Histacom2.Engine/Resources/Win95PlusDangerousCreaturesExclamation.wav similarity index 100% rename from TimeHACK.Engine/Resources/Win95PlusDangerousCreaturesExclamation.wav rename to Histacom2.Engine/Resources/Win95PlusDangerousCreaturesExclamation.wav diff --git a/TimeHACK.Engine/Resources/Win95PlusDangerousCreaturesProgError.wav b/Histacom2.Engine/Resources/Win95PlusDangerousCreaturesProgError.wav similarity index 100% rename from TimeHACK.Engine/Resources/Win95PlusDangerousCreaturesProgError.wav rename to Histacom2.Engine/Resources/Win95PlusDangerousCreaturesProgError.wav diff --git a/TimeHACK.Engine/Resources/Win95PlusDangerousCreaturesQuestion.wav b/Histacom2.Engine/Resources/Win95PlusDangerousCreaturesQuestion.wav similarity index 100% rename from TimeHACK.Engine/Resources/Win95PlusDangerousCreaturesQuestion.wav rename to Histacom2.Engine/Resources/Win95PlusDangerousCreaturesQuestion.wav diff --git a/TimeHACK.Engine/Resources/Win95PlusDangerousCreaturesStart.WAV b/Histacom2.Engine/Resources/Win95PlusDangerousCreaturesStart.WAV similarity index 100% rename from TimeHACK.Engine/Resources/Win95PlusDangerousCreaturesStart.WAV rename to Histacom2.Engine/Resources/Win95PlusDangerousCreaturesStart.WAV diff --git a/TimeHACK.Engine/Resources/Win95PlusDangerousCreaturesWallpaper.JPG b/Histacom2.Engine/Resources/Win95PlusDangerousCreaturesWallpaper.JPG similarity index 100% rename from TimeHACK.Engine/Resources/Win95PlusDangerousCreaturesWallpaper.JPG rename to Histacom2.Engine/Resources/Win95PlusDangerousCreaturesWallpaper.JPG diff --git a/TimeHACK.Engine/Resources/Win95PlusInsideComputerAsterisk.wav b/Histacom2.Engine/Resources/Win95PlusInsideComputerAsterisk.wav similarity index 100% rename from TimeHACK.Engine/Resources/Win95PlusInsideComputerAsterisk.wav rename to Histacom2.Engine/Resources/Win95PlusInsideComputerAsterisk.wav diff --git a/TimeHACK.Engine/Resources/Win95PlusInsideComputerStart.wav b/Histacom2.Engine/Resources/Win95PlusInsideComputerStart.wav similarity index 100% rename from TimeHACK.Engine/Resources/Win95PlusInsideComputerStart.wav rename to Histacom2.Engine/Resources/Win95PlusInsideComputerStart.wav diff --git a/TimeHACK.Engine/Resources/Win95PlusInsideComputerStop.wav b/Histacom2.Engine/Resources/Win95PlusInsideComputerStop.wav similarity index 100% rename from TimeHACK.Engine/Resources/Win95PlusInsideComputerStop.wav rename to Histacom2.Engine/Resources/Win95PlusInsideComputerStop.wav diff --git a/TimeHACK.Engine/Resources/Win95PlusInsideComputerWallpaper.jpg b/Histacom2.Engine/Resources/Win95PlusInsideComputerWallpaper.jpg similarity index 100% rename from TimeHACK.Engine/Resources/Win95PlusInsideComputerWallpaper.jpg rename to Histacom2.Engine/Resources/Win95PlusInsideComputerWallpaper.jpg diff --git a/TimeHACK.Engine/Resources/Win95Start.wav b/Histacom2.Engine/Resources/Win95Start.wav similarity index 100% rename from TimeHACK.Engine/Resources/Win95Start.wav rename to Histacom2.Engine/Resources/Win95Start.wav diff --git a/TimeHACK.Engine/Resources/Win95Stop.wav b/Histacom2.Engine/Resources/Win95Stop.wav similarity index 100% rename from TimeHACK.Engine/Resources/Win95Stop.wav rename to Histacom2.Engine/Resources/Win95Stop.wav diff --git a/TimeHACK.Engine/Resources/Win98Start.wav b/Histacom2.Engine/Resources/Win98Start.wav similarity index 100% rename from TimeHACK.Engine/Resources/Win98Start.wav rename to Histacom2.Engine/Resources/Win98Start.wav diff --git a/TimeHACK.Engine/Resources/Win98Stop.WAV b/Histacom2.Engine/Resources/Win98Stop.WAV similarity index 100% rename from TimeHACK.Engine/Resources/Win98Stop.WAV rename to Histacom2.Engine/Resources/Win98Stop.WAV diff --git a/TimeHACK.Engine/Resources/WinAboutSeparator95.png b/Histacom2.Engine/Resources/WinAboutSeparator95.png similarity index 100% rename from TimeHACK.Engine/Resources/WinAboutSeparator95.png rename to Histacom2.Engine/Resources/WinAboutSeparator95.png diff --git a/TimeHACK.Engine/Resources/WinClassic/Window/BottomLeft.png b/Histacom2.Engine/Resources/WinClassic/Window/BottomLeft.png similarity index 100% rename from TimeHACK.Engine/Resources/WinClassic/Window/BottomLeft.png rename to Histacom2.Engine/Resources/WinClassic/Window/BottomLeft.png diff --git a/TimeHACK.Engine/Resources/WinClassic/Window/BottomRight.png b/Histacom2.Engine/Resources/WinClassic/Window/BottomRight.png similarity index 100% rename from TimeHACK.Engine/Resources/WinClassic/Window/BottomRight.png rename to Histacom2.Engine/Resources/WinClassic/Window/BottomRight.png diff --git a/TimeHACK.Engine/Resources/WinClassic/Window/BottomSide.png b/Histacom2.Engine/Resources/WinClassic/Window/BottomSide.png similarity index 100% rename from TimeHACK.Engine/Resources/WinClassic/Window/BottomSide.png rename to Histacom2.Engine/Resources/WinClassic/Window/BottomSide.png diff --git a/TimeHACK.Engine/Resources/WinClassic/Window/LeftSide.png b/Histacom2.Engine/Resources/WinClassic/Window/LeftSide.png similarity index 100% rename from TimeHACK.Engine/Resources/WinClassic/Window/LeftSide.png rename to Histacom2.Engine/Resources/WinClassic/Window/LeftSide.png diff --git a/TimeHACK.Engine/Resources/WinClassic/Window/LeviWindows.ttf b/Histacom2.Engine/Resources/WinClassic/Window/LeviWindows.ttf similarity index 100% rename from TimeHACK.Engine/Resources/WinClassic/Window/LeviWindows.ttf rename to Histacom2.Engine/Resources/WinClassic/Window/LeviWindows.ttf diff --git a/TimeHACK.Engine/Resources/WinClassic/Window/RightSide.png b/Histacom2.Engine/Resources/WinClassic/Window/RightSide.png similarity index 100% rename from TimeHACK.Engine/Resources/WinClassic/Window/RightSide.png rename to Histacom2.Engine/Resources/WinClassic/Window/RightSide.png diff --git a/TimeHACK.Engine/Resources/WinClassic/Window/TopLeft.png b/Histacom2.Engine/Resources/WinClassic/Window/TopLeft.png similarity index 100% rename from TimeHACK.Engine/Resources/WinClassic/Window/TopLeft.png rename to Histacom2.Engine/Resources/WinClassic/Window/TopLeft.png diff --git a/TimeHACK.Engine/Resources/WinClassic/Window/TopRight.png b/Histacom2.Engine/Resources/WinClassic/Window/TopRight.png similarity index 100% rename from TimeHACK.Engine/Resources/WinClassic/Window/TopRight.png rename to Histacom2.Engine/Resources/WinClassic/Window/TopRight.png diff --git a/TimeHACK.Engine/Resources/WinClassic/Window/TopSide.png b/Histacom2.Engine/Resources/WinClassic/Window/TopSide.png similarity index 100% rename from TimeHACK.Engine/Resources/WinClassic/Window/TopSide.png rename to Histacom2.Engine/Resources/WinClassic/Window/TopSide.png diff --git a/TimeHACK.Engine/Resources/WinClassic/Window/Win95Error.png b/Histacom2.Engine/Resources/WinClassic/Window/Win95Error.png similarity index 100% rename from TimeHACK.Engine/Resources/WinClassic/Window/Win95Error.png rename to Histacom2.Engine/Resources/WinClassic/Window/Win95Error.png diff --git a/TimeHACK.Engine/Resources/WinClassic/Window/Win95Info.png b/Histacom2.Engine/Resources/WinClassic/Window/Win95Info.png similarity index 100% rename from TimeHACK.Engine/Resources/WinClassic/Window/Win95Info.png rename to Histacom2.Engine/Resources/WinClassic/Window/Win95Info.png diff --git a/TimeHACK.Engine/Resources/WinClassic/Window/Win95Question.png b/Histacom2.Engine/Resources/WinClassic/Window/Win95Question.png similarity index 100% rename from TimeHACK.Engine/Resources/WinClassic/Window/Win95Question.png rename to Histacom2.Engine/Resources/WinClassic/Window/Win95Question.png diff --git a/TimeHACK.Engine/Resources/WinClassic/Window/Win95Warning.png b/Histacom2.Engine/Resources/WinClassic/Window/Win95Warning.png similarity index 100% rename from TimeHACK.Engine/Resources/WinClassic/Window/Win95Warning.png rename to Histacom2.Engine/Resources/WinClassic/Window/Win95Warning.png diff --git a/TimeHACK.Engine/Resources/WinClassic/Window/WinClassicClose.png b/Histacom2.Engine/Resources/WinClassic/Window/WinClassicClose.png similarity index 100% rename from TimeHACK.Engine/Resources/WinClassic/Window/WinClassicClose.png rename to Histacom2.Engine/Resources/WinClassic/Window/WinClassicClose.png diff --git a/TimeHACK.Engine/Resources/WinClassic/Window/WinClassicMax.png b/Histacom2.Engine/Resources/WinClassic/Window/WinClassicMax.png similarity index 100% rename from TimeHACK.Engine/Resources/WinClassic/Window/WinClassicMax.png rename to Histacom2.Engine/Resources/WinClassic/Window/WinClassicMax.png diff --git a/TimeHACK.Engine/Resources/WinClassic/Window/WinClassicMin.png b/Histacom2.Engine/Resources/WinClassic/Window/WinClassicMin.png similarity index 100% rename from TimeHACK.Engine/Resources/WinClassic/Window/WinClassicMin.png rename to Histacom2.Engine/Resources/WinClassic/Window/WinClassicMin.png diff --git a/TimeHACK.Engine/Resources/WinClassic/Window/WinClassicRestore.png b/Histacom2.Engine/Resources/WinClassic/Window/WinClassicRestore.png similarity index 100% rename from TimeHACK.Engine/Resources/WinClassic/Window/WinClassicRestore.png rename to Histacom2.Engine/Resources/WinClassic/Window/WinClassicRestore.png diff --git a/TimeHACK.Engine/Resources/WinClassic/Window/nullIcon.png b/Histacom2.Engine/Resources/WinClassic/Window/nullIcon.png similarity index 100% rename from TimeHACK.Engine/Resources/WinClassic/Window/nullIcon.png rename to Histacom2.Engine/Resources/WinClassic/Window/nullIcon.png diff --git a/TimeHACK.Engine/Resources/WinClassic/Window/pjBg6mKP.bmp b/Histacom2.Engine/Resources/WinClassic/Window/pjBg6mKP.bmp similarity index 100% rename from TimeHACK.Engine/Resources/WinClassic/Window/pjBg6mKP.bmp rename to Histacom2.Engine/Resources/WinClassic/Window/pjBg6mKP.bmp diff --git a/TimeHACK.Engine/Resources/WinClassic/Window/windows_command_prompt.ttf b/Histacom2.Engine/Resources/WinClassic/Window/windows_command_prompt.ttf similarity index 100% rename from TimeHACK.Engine/Resources/WinClassic/Window/windows_command_prompt.ttf rename to Histacom2.Engine/Resources/WinClassic/Window/windows_command_prompt.ttf diff --git a/TimeHACK.Engine/SaveSystem.cs b/Histacom2.Engine/SaveSystem.cs similarity index 99% rename from TimeHACK.Engine/SaveSystem.cs rename to Histacom2.Engine/SaveSystem.cs index 6b8a90d..ef98c10 100644 --- a/TimeHACK.Engine/SaveSystem.cs +++ b/Histacom2.Engine/SaveSystem.cs @@ -18,7 +18,7 @@ using System.Text.RegularExpressions; using System.Runtime.InteropServices; -namespace TimeHACK.Engine +namespace Histacom2.Engine { public static class SaveSystem { @@ -37,7 +37,7 @@ public static string GameDirectory { get { - return Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "TimeHACK"); + return Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "Histacom2"); } } @@ -379,7 +379,7 @@ public static Save ReadSave(string fname) var read = new BinaryReader(fobj); fobj.Read(header, 0, magic.Length); if (!magic.SequenceEqual(header)) - throw new InvalidDataException("This is not a TimeHACK binary save"); + throw new InvalidDataException("This is not a Histacom2 binary save"); int numprops = read.ReadInt32(); var bools = new List(); // Holy code duplication, Batman. diff --git a/TimeHACK.Engine/TaskBarController.cs b/Histacom2.Engine/TaskBarController.cs similarity index 98% rename from TimeHACK.Engine/TaskBarController.cs rename to Histacom2.Engine/TaskBarController.cs index 8bd1694..e784941 100644 --- a/TimeHACK.Engine/TaskBarController.cs +++ b/Histacom2.Engine/TaskBarController.cs @@ -2,7 +2,7 @@ using System.Windows.Forms; using System.Drawing; -namespace TimeHACK.Engine +namespace Histacom2.Engine { public class TaskBarController { diff --git a/TimeHACK.Engine/Template/AboutBox95.Designer.cs b/Histacom2.Engine/Template/AboutBox95.Designer.cs similarity index 97% rename from TimeHACK.Engine/Template/AboutBox95.Designer.cs rename to Histacom2.Engine/Template/AboutBox95.Designer.cs index 0606d2c..359ef3f 100644 --- a/TimeHACK.Engine/Template/AboutBox95.Designer.cs +++ b/Histacom2.Engine/Template/AboutBox95.Designer.cs @@ -1,4 +1,4 @@ -namespace TimeHACK.Engine.Template +namespace Histacom2.Engine.Template { partial class AboutBox95 { @@ -84,7 +84,7 @@ private void InitializeComponent() // // pictureBox2 // - this.pictureBox2.Image = global::TimeHACK.Engine.Properties.Resources.WinAboutSeparator95; + this.pictureBox2.Image = global::Histacom2.Engine.Properties.Resources.WinAboutSeparator95; this.pictureBox2.Location = new System.Drawing.Point(76, 154); this.pictureBox2.Name = "pictureBox2"; this.pictureBox2.Size = new System.Drawing.Size(250, 2); diff --git a/TimeHACK.Engine/Template/AboutBox95.cs b/Histacom2.Engine/Template/AboutBox95.cs similarity index 92% rename from TimeHACK.Engine/Template/AboutBox95.cs rename to Histacom2.Engine/Template/AboutBox95.cs index 33c40e4..1accc56 100644 --- a/TimeHACK.Engine/Template/AboutBox95.cs +++ b/Histacom2.Engine/Template/AboutBox95.cs @@ -1,7 +1,7 @@ using System; using System.Windows.Forms; -namespace TimeHACK.Engine.Template +namespace Histacom2.Engine.Template { public partial class AboutBox95 : UserControl { diff --git a/TimeHACK.Engine/Template/AboutBox95.resx b/Histacom2.Engine/Template/AboutBox95.resx similarity index 100% rename from TimeHACK.Engine/Template/AboutBox95.resx rename to Histacom2.Engine/Template/AboutBox95.resx diff --git a/TimeHACK.Engine/Template/Infobox95.Designer.cs b/Histacom2.Engine/Template/Infobox95.Designer.cs similarity index 98% rename from TimeHACK.Engine/Template/Infobox95.Designer.cs rename to Histacom2.Engine/Template/Infobox95.Designer.cs index f9d89c7..0bccf85 100644 --- a/TimeHACK.Engine/Template/Infobox95.Designer.cs +++ b/Histacom2.Engine/Template/Infobox95.Designer.cs @@ -1,4 +1,4 @@ -namespace TimeHACK.Engine.Template +namespace Histacom2.Engine.Template { partial class Infobox95 { @@ -86,7 +86,7 @@ private void InitializeComponent() // pictureBox1 // this.pictureBox1.ErrorImage = null; - this.pictureBox1.Image = global::TimeHACK.Engine.Properties.Resources.Win95Warning; + this.pictureBox1.Image = global::Histacom2.Engine.Properties.Resources.Win95Warning; this.pictureBox1.InitialImage = null; this.pictureBox1.Location = new System.Drawing.Point(15, 16); this.pictureBox1.Name = "pictureBox1"; diff --git a/TimeHACK.Engine/Template/Infobox95.cs b/Histacom2.Engine/Template/Infobox95.cs similarity index 98% rename from TimeHACK.Engine/Template/Infobox95.cs rename to Histacom2.Engine/Template/Infobox95.cs index 314d8d3..f0ed0db 100644 --- a/TimeHACK.Engine/Template/Infobox95.cs +++ b/Histacom2.Engine/Template/Infobox95.cs @@ -4,7 +4,7 @@ using System.Runtime.InteropServices; using System.Windows.Forms; -namespace TimeHACK.Engine.Template +namespace Histacom2.Engine.Template { public partial class Infobox95 : UserControl { diff --git a/TimeHACK.Engine/Template/Infobox95.resx b/Histacom2.Engine/Template/Infobox95.resx similarity index 100% rename from TimeHACK.Engine/Template/Infobox95.resx rename to Histacom2.Engine/Template/Infobox95.resx diff --git a/TimeHACK.Engine/Template/Win9XBSOD.Designer.cs b/Histacom2.Engine/Template/Win9XBSOD.Designer.cs similarity index 97% rename from TimeHACK.Engine/Template/Win9XBSOD.Designer.cs rename to Histacom2.Engine/Template/Win9XBSOD.Designer.cs index 67f596a..bbd37c2 100644 --- a/TimeHACK.Engine/Template/Win9XBSOD.Designer.cs +++ b/Histacom2.Engine/Template/Win9XBSOD.Designer.cs @@ -1,141 +1,141 @@ -namespace TimeHACK.Engine.Template -{ - partial class Win9XBSOD - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.label1 = new System.Windows.Forms.Label(); - this.textBox1 = new System.Windows.Forms.TextBox(); - this.textBox2 = new System.Windows.Forms.TextBox(); - this.textBox3 = new System.Windows.Forms.TextBox(); - this.panel1 = new System.Windows.Forms.Panel(); - this.panel1.SuspendLayout(); - this.SuspendLayout(); - // - // label1 - // - this.label1.Anchor = System.Windows.Forms.AnchorStyles.None; - this.label1.AutoSize = true; - this.label1.BackColor = System.Drawing.Color.Silver; - this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label1.ForeColor = System.Drawing.Color.Blue; - this.label1.Location = new System.Drawing.Point(549, 185); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(138, 31); - this.label1.TabIndex = 0; - this.label1.Text = " Windows "; - // - // textBox1 - // - this.textBox1.Anchor = System.Windows.Forms.AnchorStyles.None; - this.textBox1.BackColor = System.Drawing.Color.Blue; - this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None; - this.textBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.textBox1.ForeColor = System.Drawing.Color.White; - this.textBox1.Location = new System.Drawing.Point(186, 272); - this.textBox1.Multiline = true; - this.textBox1.Name = "textBox1"; - this.textBox1.ReadOnly = true; - this.textBox1.Size = new System.Drawing.Size(947, 81); - this.textBox1.TabIndex = 0; - this.textBox1.TabStop = false; - this.textBox1.Text = "A fatal exception 0E has occured at 0028:C0034B23. The current application will " + - "be terminated."; - // - // textBox2 - // - this.textBox2.Anchor = System.Windows.Forms.AnchorStyles.None; - this.textBox2.BackColor = System.Drawing.Color.Blue; - this.textBox2.BorderStyle = System.Windows.Forms.BorderStyle.None; - this.textBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.textBox2.ForeColor = System.Drawing.Color.White; - this.textBox2.Location = new System.Drawing.Point(205, 377); - this.textBox2.Multiline = true; - this.textBox2.Name = "textBox2"; - this.textBox2.ReadOnly = true; - this.textBox2.Size = new System.Drawing.Size(947, 101); - this.textBox2.TabIndex = 1; - this.textBox2.TabStop = false; - this.textBox2.Text = "* Press any key to rewind time to before the crash.\r\n* Press ESC to shutdown yo" + - "ur computer. You will lose any\r\n unsaved data in all applications."; - // - // textBox3 - // - this.textBox3.Anchor = System.Windows.Forms.AnchorStyles.None; - this.textBox3.BackColor = System.Drawing.Color.Blue; - this.textBox3.BorderStyle = System.Windows.Forms.BorderStyle.None; - this.textBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.textBox3.ForeColor = System.Drawing.Color.White; - this.textBox3.Location = new System.Drawing.Point(439, 506); - this.textBox3.Multiline = true; - this.textBox3.Name = "textBox3"; - this.textBox3.ReadOnly = true; - this.textBox3.Size = new System.Drawing.Size(382, 34); - this.textBox3.TabIndex = 2; - this.textBox3.TabStop = false; - this.textBox3.Text = "Press any key to rewind _"; - // - // panel1 - // - this.panel1.Controls.Add(this.label1); - this.panel1.Controls.Add(this.textBox3); - this.panel1.Controls.Add(this.textBox1); - this.panel1.Controls.Add(this.textBox2); - this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; - this.panel1.Location = new System.Drawing.Point(0, 0); - this.panel1.Name = "panel1"; - this.panel1.Size = new System.Drawing.Size(1280, 720); - this.panel1.TabIndex = 3; - // - // Win9XBSOD - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.Blue; - this.ClientSize = new System.Drawing.Size(1280, 720); - this.Controls.Add(this.panel1); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; - this.Name = "Win9XBSOD"; - this.Tag = "ignoreFormOnTaskbar"; - this.Text = "Win9XBSOD"; - this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Win9XBSOD_FormClosed); - this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Win9XBSOD_KeyDown); - this.panel1.ResumeLayout(false); - this.panel1.PerformLayout(); - this.ResumeLayout(false); - - } - - #endregion - - internal System.Windows.Forms.Label label1; - internal System.Windows.Forms.TextBox textBox1; - internal System.Windows.Forms.TextBox textBox2; - internal System.Windows.Forms.TextBox textBox3; - private System.Windows.Forms.Panel panel1; - } +namespace Histacom2.Engine.Template +{ + partial class Win9XBSOD + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.label1 = new System.Windows.Forms.Label(); + this.textBox1 = new System.Windows.Forms.TextBox(); + this.textBox2 = new System.Windows.Forms.TextBox(); + this.textBox3 = new System.Windows.Forms.TextBox(); + this.panel1 = new System.Windows.Forms.Panel(); + this.panel1.SuspendLayout(); + this.SuspendLayout(); + // + // label1 + // + this.label1.Anchor = System.Windows.Forms.AnchorStyles.None; + this.label1.AutoSize = true; + this.label1.BackColor = System.Drawing.Color.Silver; + this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label1.ForeColor = System.Drawing.Color.Blue; + this.label1.Location = new System.Drawing.Point(549, 185); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(138, 31); + this.label1.TabIndex = 0; + this.label1.Text = " Windows "; + // + // textBox1 + // + this.textBox1.Anchor = System.Windows.Forms.AnchorStyles.None; + this.textBox1.BackColor = System.Drawing.Color.Blue; + this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.textBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.textBox1.ForeColor = System.Drawing.Color.White; + this.textBox1.Location = new System.Drawing.Point(186, 272); + this.textBox1.Multiline = true; + this.textBox1.Name = "textBox1"; + this.textBox1.ReadOnly = true; + this.textBox1.Size = new System.Drawing.Size(947, 81); + this.textBox1.TabIndex = 0; + this.textBox1.TabStop = false; + this.textBox1.Text = "A fatal exception 0E has occured at 0028:C0034B23. The current application will " + + "be terminated."; + // + // textBox2 + // + this.textBox2.Anchor = System.Windows.Forms.AnchorStyles.None; + this.textBox2.BackColor = System.Drawing.Color.Blue; + this.textBox2.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.textBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.textBox2.ForeColor = System.Drawing.Color.White; + this.textBox2.Location = new System.Drawing.Point(205, 377); + this.textBox2.Multiline = true; + this.textBox2.Name = "textBox2"; + this.textBox2.ReadOnly = true; + this.textBox2.Size = new System.Drawing.Size(947, 101); + this.textBox2.TabIndex = 1; + this.textBox2.TabStop = false; + this.textBox2.Text = "* Press any key to rewind time to before the crash.\r\n* Press ESC to shutdown yo" + + "ur computer. You will lose any\r\n unsaved data in all applications."; + // + // textBox3 + // + this.textBox3.Anchor = System.Windows.Forms.AnchorStyles.None; + this.textBox3.BackColor = System.Drawing.Color.Blue; + this.textBox3.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.textBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.textBox3.ForeColor = System.Drawing.Color.White; + this.textBox3.Location = new System.Drawing.Point(439, 506); + this.textBox3.Multiline = true; + this.textBox3.Name = "textBox3"; + this.textBox3.ReadOnly = true; + this.textBox3.Size = new System.Drawing.Size(382, 34); + this.textBox3.TabIndex = 2; + this.textBox3.TabStop = false; + this.textBox3.Text = "Press any key to rewind _"; + // + // panel1 + // + this.panel1.Controls.Add(this.label1); + this.panel1.Controls.Add(this.textBox3); + this.panel1.Controls.Add(this.textBox1); + this.panel1.Controls.Add(this.textBox2); + this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel1.Location = new System.Drawing.Point(0, 0); + this.panel1.Name = "panel1"; + this.panel1.Size = new System.Drawing.Size(1280, 720); + this.panel1.TabIndex = 3; + // + // Win9XBSOD + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.Blue; + this.ClientSize = new System.Drawing.Size(1280, 720); + this.Controls.Add(this.panel1); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; + this.Name = "Win9XBSOD"; + this.Tag = "ignoreFormOnTaskbar"; + this.Text = "Win9XBSOD"; + this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Win9XBSOD_FormClosed); + this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Win9XBSOD_KeyDown); + this.panel1.ResumeLayout(false); + this.panel1.PerformLayout(); + this.ResumeLayout(false); + + } + + #endregion + + internal System.Windows.Forms.Label label1; + internal System.Windows.Forms.TextBox textBox1; + internal System.Windows.Forms.TextBox textBox2; + internal System.Windows.Forms.TextBox textBox3; + private System.Windows.Forms.Panel panel1; + } } \ No newline at end of file diff --git a/TimeHACK.Engine/Template/Win9XBSOD.cs b/Histacom2.Engine/Template/Win9XBSOD.cs similarity index 96% rename from TimeHACK.Engine/Template/Win9XBSOD.cs rename to Histacom2.Engine/Template/Win9XBSOD.cs index acf5e07..dd3d2ca 100644 --- a/TimeHACK.Engine/Template/Win9XBSOD.cs +++ b/Histacom2.Engine/Template/Win9XBSOD.cs @@ -8,7 +8,7 @@ using System.Threading.Tasks; using System.Windows.Forms; -namespace TimeHACK.Engine.Template +namespace Histacom2.Engine.Template { public partial class Win9XBSOD : Form { diff --git a/TimeHACK.Engine/UI/ClassicButton.resx b/Histacom2.Engine/Template/Win9XBSOD.resx similarity index 100% rename from TimeHACK.Engine/UI/ClassicButton.resx rename to Histacom2.Engine/Template/Win9XBSOD.resx diff --git a/TimeHACK.Engine/Template/WinClassic.Designer.cs b/Histacom2.Engine/Template/WinClassic.Designer.cs similarity index 99% rename from TimeHACK.Engine/Template/WinClassic.Designer.cs rename to Histacom2.Engine/Template/WinClassic.Designer.cs index 2dd94e5..be76be6 100644 --- a/TimeHACK.Engine/Template/WinClassic.Designer.cs +++ b/Histacom2.Engine/Template/WinClassic.Designer.cs @@ -1,4 +1,4 @@ -namespace TimeHACK.Engine.Template +namespace Histacom2.Engine.Template { partial class WinClassic { diff --git a/TimeHACK.Engine/Template/WinClassic.cs b/Histacom2.Engine/Template/WinClassic.cs similarity index 99% rename from TimeHACK.Engine/Template/WinClassic.cs rename to Histacom2.Engine/Template/WinClassic.cs index 75398dd..4c495bc 100644 --- a/TimeHACK.Engine/Template/WinClassic.cs +++ b/Histacom2.Engine/Template/WinClassic.cs @@ -3,7 +3,7 @@ using System.Runtime.InteropServices; using System.Windows.Forms; -namespace TimeHACK.Engine.Template +namespace Histacom2.Engine.Template { public partial class WinClassic : Form { diff --git a/TimeHACK.Engine/Template/WinClassic.resx b/Histacom2.Engine/Template/WinClassic.resx similarity index 100% rename from TimeHACK.Engine/Template/WinClassic.resx rename to Histacom2.Engine/Template/WinClassic.resx diff --git a/TimeHACK.Engine/Theme.cs b/Histacom2.Engine/Theme.cs similarity index 99% rename from TimeHACK.Engine/Theme.cs rename to Histacom2.Engine/Theme.cs index 43d9661..6c1efef 100644 --- a/TimeHACK.Engine/Theme.cs +++ b/Histacom2.Engine/Theme.cs @@ -6,7 +6,7 @@ using System.Text; using System.Threading.Tasks; -namespace TimeHACK.Engine +namespace Histacom2.Engine { public class Theme { diff --git a/TimeHACK.Engine/UI/ClassicButton.Designer.cs b/Histacom2.Engine/UI/ClassicButton.Designer.cs similarity index 99% rename from TimeHACK.Engine/UI/ClassicButton.Designer.cs rename to Histacom2.Engine/UI/ClassicButton.Designer.cs index b6033b2..c76bba0 100644 --- a/TimeHACK.Engine/UI/ClassicButton.Designer.cs +++ b/Histacom2.Engine/UI/ClassicButton.Designer.cs @@ -1,4 +1,4 @@ -namespace TimeHACK.Engine.UI +namespace Histacom2.Engine.UI { partial class ClassicButton { diff --git a/TimeHACK.Engine/UI/ClassicButton.cs b/Histacom2.Engine/UI/ClassicButton.cs similarity index 98% rename from TimeHACK.Engine/UI/ClassicButton.cs rename to Histacom2.Engine/UI/ClassicButton.cs index e61b564..26629a8 100644 --- a/TimeHACK.Engine/UI/ClassicButton.cs +++ b/Histacom2.Engine/UI/ClassicButton.cs @@ -8,7 +8,7 @@ using System.Threading.Tasks; using System.Windows.Forms; -namespace TimeHACK.Engine.UI +namespace Histacom2.Engine.UI { public partial class ClassicButton : UserControl { diff --git a/TimeHACK.Main/AchievementBox.resx b/Histacom2.Engine/UI/ClassicButton.resx similarity index 100% rename from TimeHACK.Main/AchievementBox.resx rename to Histacom2.Engine/UI/ClassicButton.resx diff --git a/TimeHACK.Engine/UI/IProgressBar.cs b/Histacom2.Engine/UI/IProgressBar.cs similarity index 99% rename from TimeHACK.Engine/UI/IProgressBar.cs rename to Histacom2.Engine/UI/IProgressBar.cs index d16debf..071da18 100644 --- a/TimeHACK.Engine/UI/IProgressBar.cs +++ b/Histacom2.Engine/UI/IProgressBar.cs @@ -6,7 +6,7 @@ using System.Threading.Tasks; using System.Windows.Forms; -namespace TimeHACK.UI +namespace Histacom2.UI { public class ProgressBar : Control { diff --git a/TimeHACK.Engine/WindowManager.cs b/Histacom2.Engine/WindowManager.cs similarity index 98% rename from TimeHACK.Engine/WindowManager.cs rename to Histacom2.Engine/WindowManager.cs index e206303..2306d5d 100644 --- a/TimeHACK.Engine/WindowManager.cs +++ b/Histacom2.Engine/WindowManager.cs @@ -1,10 +1,10 @@ using System; using System.Windows.Forms; using System.Drawing; -using TimeHACK.Engine.Template; +using Histacom2.Engine.Template; using System.Media; -namespace TimeHACK.Engine +namespace Histacom2.Engine { public class WindowManager { diff --git a/TimeHACK.Engine/packages.config b/Histacom2.Engine/packages.config similarity index 100% rename from TimeHACK.Engine/packages.config rename to Histacom2.Engine/packages.config diff --git a/TimeHACK.Main/AchievementBox.Designer.cs b/Histacom2/AchievementBox.Designer.cs similarity index 95% rename from TimeHACK.Main/AchievementBox.Designer.cs rename to Histacom2/AchievementBox.Designer.cs index db26cb3..2f9aea7 100644 --- a/TimeHACK.Main/AchievementBox.Designer.cs +++ b/Histacom2/AchievementBox.Designer.cs @@ -1,4 +1,4 @@ -namespace TimeHACK +namespace Histacom2 { partial class AchievementBox { @@ -50,7 +50,7 @@ private void InitializeComponent() // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackgroundImage = global::TimeHACK.Properties.Resources.EndingPiracy; + this.BackgroundImage = global::Histacom2.Properties.Resources.EndingPiracy; this.ClientSize = new System.Drawing.Size(202, 102); this.Controls.Add(this.button1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; diff --git a/TimeHACK.Main/AchievementBox.cs b/Histacom2/AchievementBox.cs similarity index 97% rename from TimeHACK.Main/AchievementBox.cs rename to Histacom2/AchievementBox.cs index 7c85b79..e6d714a 100644 --- a/TimeHACK.Main/AchievementBox.cs +++ b/Histacom2/AchievementBox.cs @@ -8,9 +8,9 @@ using System.Threading; using System.Threading.Tasks; using System.Windows.Forms; -using TimeHACK.Engine; +using Histacom2.Engine; -namespace TimeHACK +namespace Histacom2 { public partial class AchievementBox : Form { diff --git a/TimeHACK.Main/GlobalPrograms/WinClassicNotepad.resx b/Histacom2/AchievementBox.resx similarity index 100% rename from TimeHACK.Main/GlobalPrograms/WinClassicNotepad.resx rename to Histacom2/AchievementBox.resx diff --git a/TimeHACK.Main/AchievementScreen.Designer.cs b/Histacom2/AchievementScreen.Designer.cs similarity index 99% rename from TimeHACK.Main/AchievementScreen.Designer.cs rename to Histacom2/AchievementScreen.Designer.cs index 337c33a..5edbe9a 100644 --- a/TimeHACK.Main/AchievementScreen.Designer.cs +++ b/Histacom2/AchievementScreen.Designer.cs @@ -1,4 +1,4 @@ -namespace TimeHACK +namespace Histacom2 { partial class AchievementScreen { diff --git a/TimeHACK.Main/AchievementScreen.cs b/Histacom2/AchievementScreen.cs similarity index 96% rename from TimeHACK.Main/AchievementScreen.cs rename to Histacom2/AchievementScreen.cs index 0aafbe0..23db93a 100644 --- a/TimeHACK.Main/AchievementScreen.cs +++ b/Histacom2/AchievementScreen.cs @@ -7,9 +7,9 @@ using System.Text; using System.Threading.Tasks; using System.Windows.Forms; -using TimeHACK.Engine; +using Histacom2.Engine; -namespace TimeHACK +namespace Histacom2 { public partial class AchievementScreen : Form { diff --git a/TimeHACK.Main/AchievementScreen.resx b/Histacom2/AchievementScreen.resx similarity index 100% rename from TimeHACK.Main/AchievementScreen.resx rename to Histacom2/AchievementScreen.resx diff --git a/TimeHACK.Main/GlobalPrograms/WinClassicCalculator.Designer.cs b/Histacom2/GlobalPrograms/WinClassicCalculator.Designer.cs similarity index 99% rename from TimeHACK.Main/GlobalPrograms/WinClassicCalculator.Designer.cs rename to Histacom2/GlobalPrograms/WinClassicCalculator.Designer.cs index 70ad0a2..6f03978 100644 --- a/TimeHACK.Main/GlobalPrograms/WinClassicCalculator.Designer.cs +++ b/Histacom2/GlobalPrograms/WinClassicCalculator.Designer.cs @@ -1,4 +1,4 @@ -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { partial class WinClassicCalculator { @@ -548,7 +548,7 @@ private void InitializeComponent() // // pictureBox1 // - this.pictureBox1.BackgroundImage = global::TimeHACK.Properties.Resources.ie4_hsplitter; + this.pictureBox1.BackgroundImage = global::Histacom2.Properties.Resources.ie4_hsplitter; this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.pictureBox1.Location = new System.Drawing.Point(1, 24); this.pictureBox1.Name = "pictureBox1"; diff --git a/TimeHACK.Main/GlobalPrograms/WinClassicCalculator.cs b/Histacom2/GlobalPrograms/WinClassicCalculator.cs similarity index 98% rename from TimeHACK.Main/GlobalPrograms/WinClassicCalculator.cs rename to Histacom2/GlobalPrograms/WinClassicCalculator.cs index 71ded89..7f04e85 100644 --- a/TimeHACK.Main/GlobalPrograms/WinClassicCalculator.cs +++ b/Histacom2/GlobalPrograms/WinClassicCalculator.cs @@ -7,9 +7,9 @@ using System.Text; using System.Threading.Tasks; using System.Windows.Forms; -using TimeHACK.Engine; +using Histacom2.Engine; -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { public partial class WinClassicCalculator : UserControl { diff --git a/TimeHACK.Main/GlobalPrograms/WinClassicCalculator.resx b/Histacom2/GlobalPrograms/WinClassicCalculator.resx similarity index 100% rename from TimeHACK.Main/GlobalPrograms/WinClassicCalculator.resx rename to Histacom2/GlobalPrograms/WinClassicCalculator.resx diff --git a/TimeHACK.Main/GlobalPrograms/WinClassicDownloader.Designer.cs b/Histacom2/GlobalPrograms/WinClassicDownloader.Designer.cs similarity index 99% rename from TimeHACK.Main/GlobalPrograms/WinClassicDownloader.Designer.cs rename to Histacom2/GlobalPrograms/WinClassicDownloader.Designer.cs index 425466a..a3ae890 100644 --- a/TimeHACK.Main/GlobalPrograms/WinClassicDownloader.Designer.cs +++ b/Histacom2/GlobalPrograms/WinClassicDownloader.Designer.cs @@ -1,4 +1,4 @@ -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { partial class WinClassicDownloader { diff --git a/TimeHACK.Main/GlobalPrograms/WinClassicDownloader.cs b/Histacom2/GlobalPrograms/WinClassicDownloader.cs similarity index 97% rename from TimeHACK.Main/GlobalPrograms/WinClassicDownloader.cs rename to Histacom2/GlobalPrograms/WinClassicDownloader.cs index 567b8e6..f454bdb 100644 --- a/TimeHACK.Main/GlobalPrograms/WinClassicDownloader.cs +++ b/Histacom2/GlobalPrograms/WinClassicDownloader.cs @@ -1,9 +1,9 @@ using System; using System.IO; using System.Windows.Forms; -using static TimeHACK.Engine.SaveSystem; +using static Histacom2.Engine.SaveSystem; -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { public partial class WinClassicDownloader : UserControl { diff --git a/TimeHACK.Main/GlobalPrograms/WinClassicDownloader.resx b/Histacom2/GlobalPrograms/WinClassicDownloader.resx similarity index 100% rename from TimeHACK.Main/GlobalPrograms/WinClassicDownloader.resx rename to Histacom2/GlobalPrograms/WinClassicDownloader.resx diff --git a/TimeHACK.Main/GlobalPrograms/WinClassicNotepad.Designer.cs b/Histacom2/GlobalPrograms/WinClassicNotepad.Designer.cs similarity index 95% rename from TimeHACK.Main/GlobalPrograms/WinClassicNotepad.Designer.cs rename to Histacom2/GlobalPrograms/WinClassicNotepad.Designer.cs index bd614eb..113ace9 100644 --- a/TimeHACK.Main/GlobalPrograms/WinClassicNotepad.Designer.cs +++ b/Histacom2/GlobalPrograms/WinClassicNotepad.Designer.cs @@ -1,4 +1,4 @@ -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { partial class WinClassicNotepad { @@ -73,7 +73,7 @@ private void InitializeComponent() // fileToolStripMenuItem // this.fileToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.fileToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.fileToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.fileToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.newToolStripMenuItem, @@ -90,7 +90,7 @@ private void InitializeComponent() // newToolStripMenuItem // this.newToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.newToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.newToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.newToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.newToolStripMenuItem.Name = "newToolStripMenuItem"; this.newToolStripMenuItem.Size = new System.Drawing.Size(142, 22); @@ -99,7 +99,7 @@ private void InitializeComponent() // openToolStripMenuItem // this.openToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.openToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.openToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.openToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.openToolStripMenuItem.Name = "openToolStripMenuItem"; this.openToolStripMenuItem.Size = new System.Drawing.Size(142, 22); @@ -109,7 +109,7 @@ private void InitializeComponent() // saveToolStripMenuItem // this.saveToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.saveToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.saveToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.saveToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.saveToolStripMenuItem.Name = "saveToolStripMenuItem"; this.saveToolStripMenuItem.Size = new System.Drawing.Size(142, 22); @@ -119,7 +119,7 @@ private void InitializeComponent() // saveAsToolStripMenuItem // this.saveAsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.saveAsToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.saveAsToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.saveAsToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem"; this.saveAsToolStripMenuItem.Size = new System.Drawing.Size(142, 22); @@ -128,7 +128,7 @@ private void InitializeComponent() // pageSetupToolStripMenuItem // this.pageSetupToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.pageSetupToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.pageSetupToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.pageSetupToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.pageSetupToolStripMenuItem.Name = "pageSetupToolStripMenuItem"; this.pageSetupToolStripMenuItem.Size = new System.Drawing.Size(142, 22); @@ -137,7 +137,7 @@ private void InitializeComponent() // printToolStripMenuItem // this.printToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.printToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.printToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.printToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.printToolStripMenuItem.Name = "printToolStripMenuItem"; this.printToolStripMenuItem.Size = new System.Drawing.Size(142, 22); @@ -146,7 +146,7 @@ private void InitializeComponent() // exitToolStripMenuItem // this.exitToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.exitToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.exitToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.exitToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; this.exitToolStripMenuItem.Size = new System.Drawing.Size(142, 22); @@ -156,7 +156,7 @@ private void InitializeComponent() // editToolStripMenuItem // this.editToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.editToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.editToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.editToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.undoToolStripMenuItem, @@ -174,7 +174,7 @@ private void InitializeComponent() // undoToolStripMenuItem // this.undoToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.undoToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.undoToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.undoToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.undoToolStripMenuItem.Name = "undoToolStripMenuItem"; this.undoToolStripMenuItem.Size = new System.Drawing.Size(134, 22); @@ -184,7 +184,7 @@ private void InitializeComponent() // cutToolStripMenuItem // this.cutToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.cutToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.cutToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.cutToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.cutToolStripMenuItem.Name = "cutToolStripMenuItem"; this.cutToolStripMenuItem.Size = new System.Drawing.Size(134, 22); @@ -194,7 +194,7 @@ private void InitializeComponent() // copyToolStripMenuItem // this.copyToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.copyToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.copyToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.copyToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.copyToolStripMenuItem.Name = "copyToolStripMenuItem"; this.copyToolStripMenuItem.Size = new System.Drawing.Size(134, 22); @@ -204,7 +204,7 @@ private void InitializeComponent() // pasteToolStripMenuItem // this.pasteToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.pasteToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.pasteToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.pasteToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.pasteToolStripMenuItem.Name = "pasteToolStripMenuItem"; this.pasteToolStripMenuItem.Size = new System.Drawing.Size(134, 22); @@ -214,7 +214,7 @@ private void InitializeComponent() // deleteToolStripMenuItem // this.deleteToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.deleteToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.deleteToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.deleteToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem"; this.deleteToolStripMenuItem.Size = new System.Drawing.Size(134, 22); @@ -224,7 +224,7 @@ private void InitializeComponent() // selectAllToolStripMenuItem // this.selectAllToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.selectAllToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.selectAllToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.selectAllToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.selectAllToolStripMenuItem.Name = "selectAllToolStripMenuItem"; this.selectAllToolStripMenuItem.Size = new System.Drawing.Size(134, 22); @@ -234,7 +234,7 @@ private void InitializeComponent() // timeDateToolStripMenuItem // this.timeDateToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.timeDateToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.timeDateToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.timeDateToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.timeDateToolStripMenuItem.Name = "timeDateToolStripMenuItem"; this.timeDateToolStripMenuItem.Size = new System.Drawing.Size(134, 22); @@ -244,7 +244,7 @@ private void InitializeComponent() // wordWrapToolStripMenuItem // this.wordWrapToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.wordWrapToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.wordWrapToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.wordWrapToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.wordWrapToolStripMenuItem.CheckOnClick = true; this.wordWrapToolStripMenuItem.Name = "wordWrapToolStripMenuItem"; @@ -255,7 +255,7 @@ private void InitializeComponent() // searchToolStripMenuItem // this.searchToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.searchToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.searchToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.searchToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.searchToolStripMenuItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.searchToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { @@ -268,7 +268,7 @@ private void InitializeComponent() // findToolStripMenuItem // this.findToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.findToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.findToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.findToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.findToolStripMenuItem.Name = "findToolStripMenuItem"; this.findToolStripMenuItem.Size = new System.Drawing.Size(124, 22); @@ -277,7 +277,7 @@ private void InitializeComponent() // findNextToolStripMenuItem // this.findNextToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.findNextToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.findNextToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.findNextToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.findNextToolStripMenuItem.Name = "findNextToolStripMenuItem"; this.findNextToolStripMenuItem.Size = new System.Drawing.Size(124, 22); @@ -286,7 +286,7 @@ private void InitializeComponent() // helpToolStripMenuItem // this.helpToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.helpToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.helpToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.helpToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.helpToolStripMenuItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { @@ -299,7 +299,7 @@ private void InitializeComponent() // helpTopicsToolStripMenuItem // this.helpTopicsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.helpTopicsToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.helpTopicsToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.helpTopicsToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.helpTopicsToolStripMenuItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.helpTopicsToolStripMenuItem.Name = "helpTopicsToolStripMenuItem"; @@ -309,7 +309,7 @@ private void InitializeComponent() // aboutNotepadToolStripMenuItem // this.aboutNotepadToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.aboutNotepadToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.aboutNotepadToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.aboutNotepadToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.aboutNotepadToolStripMenuItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.aboutNotepadToolStripMenuItem.Name = "aboutNotepadToolStripMenuItem"; diff --git a/TimeHACK.Main/GlobalPrograms/WinClassicNotepad.cs b/Histacom2/GlobalPrograms/WinClassicNotepad.cs similarity index 97% rename from TimeHACK.Main/GlobalPrograms/WinClassicNotepad.cs rename to Histacom2/GlobalPrograms/WinClassicNotepad.cs index 8e3726d..0ed0bb7 100644 --- a/TimeHACK.Main/GlobalPrograms/WinClassicNotepad.cs +++ b/Histacom2/GlobalPrograms/WinClassicNotepad.cs @@ -7,11 +7,11 @@ using System.Text; using System.Threading.Tasks; using System.Windows.Forms; -using TimeHACK.Engine; -using static TimeHACK.Engine.FileDialogBoxManager; +using Histacom2.Engine; +using static Histacom2.Engine.FileDialogBoxManager; using System.IO; -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { public partial class WinClassicNotepad : UserControl { diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/GuessTheNumber.resx b/Histacom2/GlobalPrograms/WinClassicNotepad.resx similarity index 100% rename from TimeHACK.Main/OS/Win95/Win95Apps/GuessTheNumber.resx rename to Histacom2/GlobalPrograms/WinClassicNotepad.resx diff --git a/TimeHACK.Main/TimeHACK.Main.csproj b/Histacom2/Histacom2.csproj similarity index 98% rename from TimeHACK.Main/TimeHACK.Main.csproj rename to Histacom2/Histacom2.csproj index 93748f1..70f8ee6 100644 --- a/TimeHACK.Main/TimeHACK.Main.csproj +++ b/Histacom2/Histacom2.csproj @@ -7,8 +7,8 @@ {B958AA5F-8AED-456C-9C07-9E4C6C027042} WinExe Properties - TimeHACK - TimeHACK + Histacom2 + Histacom2 v4.5.2 512 true @@ -28,8 +28,8 @@ HistacomCS HistacomCS Development Team publish.htm - 0 - 1.0.1.0 + 3 + 2.0.0.3 true true true @@ -55,7 +55,7 @@ 4 - TimeHACK.Program + Histacom2.Program true @@ -262,6 +262,11 @@ WinClassicWindowsExplorer.cs + + True + True + Resources.resx + Form @@ -336,11 +341,6 @@ - - True - True - Resources.resx - Form @@ -450,8 +450,7 @@ WebChat1998.cs - ResXFileCodeGenerator - WebChat19981.Designer.cs + Designer FRMWinClassicAddressBookNewFolder.cs @@ -472,9 +471,9 @@ Win95TaskBarItem.cs - ResXFileCodeGenerator + PublicResXFileCodeGenerator Designer - Resources.Designer.cs + Resources1.Designer.cs SaveFileTroubleShooter.cs @@ -612,6 +611,7 @@ + @@ -704,12 +704,11 @@ - + {9477b70f-2d32-4e1d-857b-4624a1deeb1b} - TimeHACK.Engine + Histacom2.Engine - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 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 - - - 17, 17 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + + + 17, 17 + \ No newline at end of file diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/MineSweeper/Square.cs b/Histacom2/OS/Win95/Win95Apps/MineSweeper/Square.cs similarity index 99% rename from TimeHACK.Main/OS/Win95/Win95Apps/MineSweeper/Square.cs rename to Histacom2/OS/Win95/Win95Apps/MineSweeper/Square.cs index fc1e38f..4f80240 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/MineSweeper/Square.cs +++ b/Histacom2/OS/Win95/Win95Apps/MineSweeper/Square.cs @@ -2,9 +2,9 @@ using System.Drawing; using System.Threading.Tasks; using System.Windows.Forms; -using TimeHACK.Engine; +using Histacom2.Engine; -namespace TimeHACK.OS.Win95.Win95Apps.MineSweeper +namespace Histacom2.OS.Win95.Win95Apps.MineSweeper { class Square { diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/MineSweeper/WinClassicMinesweeper.Designer.cs b/Histacom2/OS/Win95/Win95Apps/MineSweeper/WinClassicMinesweeper.Designer.cs similarity index 98% rename from TimeHACK.Main/OS/Win95/Win95Apps/MineSweeper/WinClassicMinesweeper.Designer.cs rename to Histacom2/OS/Win95/Win95Apps/MineSweeper/WinClassicMinesweeper.Designer.cs index 0cb1d2f..bcb16de 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/MineSweeper/WinClassicMinesweeper.Designer.cs +++ b/Histacom2/OS/Win95/Win95Apps/MineSweeper/WinClassicMinesweeper.Designer.cs @@ -1,4 +1,4 @@ -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { partial class WinClassicMinesweeper { @@ -68,7 +68,7 @@ private void InitializeComponent() this.labelBombs.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.labelBombs.Font = new System.Drawing.Font("Lemon\'s LCD", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.labelBombs.ForeColor = System.Drawing.Color.Red; - this.labelBombs.Image = global::TimeHACK.Properties.Resources.MinesweepNumBox; + this.labelBombs.Image = global::Histacom2.Properties.Resources.MinesweepNumBox; this.labelBombs.Location = new System.Drawing.Point(3, 6); this.labelBombs.Name = "labelBombs"; this.labelBombs.Size = new System.Drawing.Size(56, 25); @@ -81,7 +81,7 @@ private void InitializeComponent() this.labelTime.BackColor = System.Drawing.Color.Silver; this.labelTime.Font = new System.Drawing.Font("Lemon\'s LCD", 15F); this.labelTime.ForeColor = System.Drawing.Color.Red; - this.labelTime.Image = global::TimeHACK.Properties.Resources.MinesweepNumBox; + this.labelTime.Image = global::Histacom2.Properties.Resources.MinesweepNumBox; this.labelTime.Location = new System.Drawing.Point(75, 6); this.labelTime.Margin = new System.Windows.Forms.Padding(0); this.labelTime.Name = "labelTime"; @@ -253,7 +253,7 @@ private void InitializeComponent() // // helpToolStripMenuItem // - this.helpToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.helpToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.helpToolStripMenuItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.helpTopicsToolStripMenuItem, @@ -288,7 +288,7 @@ private void InitializeComponent() // button1 // this.button1.BackColor = System.Drawing.Color.Silver; - this.button1.BackgroundImage = global::TimeHACK.Properties.Resources.WinClassicMinesweeperSmile; + this.button1.BackgroundImage = global::Histacom2.Properties.Resources.WinClassicMinesweeperSmile; this.button1.FlatAppearance.BorderColor = System.Drawing.Color.Gray; this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.button1.Location = new System.Drawing.Point(54, 5); diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/MineSweeper/WinClassicMinesweeper.cs b/Histacom2/OS/Win95/Win95Apps/MineSweeper/WinClassicMinesweeper.cs similarity index 97% rename from TimeHACK.Main/OS/Win95/Win95Apps/MineSweeper/WinClassicMinesweeper.cs rename to Histacom2/OS/Win95/Win95Apps/MineSweeper/WinClassicMinesweeper.cs index d7f9d18..9b6595c 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/MineSweeper/WinClassicMinesweeper.cs +++ b/Histacom2/OS/Win95/Win95Apps/MineSweeper/WinClassicMinesweeper.cs @@ -7,12 +7,12 @@ using System.Text; using System.Threading.Tasks; using System.Windows.Forms; -using TimeHACK.OS.Win95.Win95Apps.MineSweeper; -using TimeHACK.Engine; +using Histacom2.OS.Win95.Win95Apps.MineSweeper; +using Histacom2.Engine; using System.Threading; -using TimeHACK.Engine.Template; +using Histacom2.Engine.Template; -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { public partial class WinClassicMinesweeper : UserControl { diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/MineSweeper/WinClassicMinesweeper.resx b/Histacom2/OS/Win95/Win95Apps/MineSweeper/WinClassicMinesweeper.resx similarity index 100% rename from TimeHACK.Main/OS/Win95/Win95Apps/MineSweeper/WinClassicMinesweeper.resx rename to Histacom2/OS/Win95/Win95Apps/MineSweeper/WinClassicMinesweeper.resx diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack1.cs b/Histacom2/OS/Win95/Win95Apps/Story/Hack1.cs similarity index 97% rename from TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack1.cs rename to Histacom2/OS/Win95/Win95Apps/Story/Hack1.cs index 86e6334..54716e5 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack1.cs +++ b/Histacom2/OS/Win95/Win95Apps/Story/Hack1.cs @@ -8,10 +8,10 @@ using System.Threading; using System.Threading.Tasks; using System.Windows.Forms; -using TimeHACK.Engine; -using TimeHACK.Engine.Template; +using Histacom2.Engine; +using Histacom2.Engine.Template; -namespace TimeHACK.OS.Win95.Win95Apps.Story +namespace Histacom2.OS.Win95.Win95Apps.Story { static class Hack1 : Object { diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack2.cs b/Histacom2/OS/Win95/Win95Apps/Story/Hack2.cs similarity index 99% rename from TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack2.cs rename to Histacom2/OS/Win95/Win95Apps/Story/Hack2.cs index e064ce0..1dc99da 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/Story/Hack2.cs +++ b/Histacom2/OS/Win95/Win95Apps/Story/Hack2.cs @@ -3,11 +3,11 @@ using System.Media; using System.Threading.Tasks; using System.Windows.Forms; -using TimeHACK.Engine; -using TimeHACK.Engine.Template; -using TimeHACK.OS.Win98; +using Histacom2.Engine; +using Histacom2.Engine.Template; +using Histacom2.OS.Win98; -namespace TimeHACK.OS.Win95.Win95Apps.Story +namespace Histacom2.OS.Win95.Win95Apps.Story { public class Hack2 : object { diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.Designer.cs b/Histacom2/OS/Win95/Win95Apps/WebChat1998.Designer.cs similarity index 99% rename from TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.Designer.cs rename to Histacom2/OS/Win95/Win95Apps/WebChat1998.Designer.cs index 6730480..8a32029 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.Designer.cs +++ b/Histacom2/OS/Win95/Win95Apps/WebChat1998.Designer.cs @@ -1,4 +1,4 @@ -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { partial class WebChat1998 { diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.cs b/Histacom2/OS/Win95/Win95Apps/WebChat1998.cs similarity index 97% rename from TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.cs rename to Histacom2/OS/Win95/Win95Apps/WebChat1998.cs index 0be7813..0b2ef8a 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.cs +++ b/Histacom2/OS/Win95/Win95Apps/WebChat1998.cs @@ -7,13 +7,13 @@ using System.Text; using System.Threading.Tasks; using System.Windows.Forms; -using TimeHACK.Engine; +using Histacom2.Engine; using System.Threading; using System.Media; using System.IO; -using TimeHACK.Engine.Template; +using Histacom2.Engine.Template; -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { public partial class WebChat1998 : UserControl { @@ -48,6 +48,8 @@ public WebChat1998() this.button2.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); this.button3.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); this.button4.Paint += (sender, args) => Engine.Paintbrush.PaintClassicBorders(sender, args, 2); + + textBox1.Text = "If you do not agree to the following rules below DO NOT log into the chat:\n\nNo Bullying\nNo Swearing\nNo Hacking\nNo Illegal Files / Piracy\n\nFailure to follow these rules will result in serious irreversible consequences."; } private void WebChat1998_Load(object sender, EventArgs e) { diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/Win95Installer.Designer.cs b/Histacom2/OS/Win95/Win95Apps/Win95Installer.Designer.cs similarity index 97% rename from TimeHACK.Main/OS/Win95/Win95Apps/Win95Installer.Designer.cs rename to Histacom2/OS/Win95/Win95Apps/Win95Installer.Designer.cs index 29369e2..e53ceb3 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/Win95Installer.Designer.cs +++ b/Histacom2/OS/Win95/Win95Apps/Win95Installer.Designer.cs @@ -1,4 +1,4 @@ -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { partial class Win95Installer { @@ -48,7 +48,7 @@ private void InitializeComponent() this.label6 = new System.Windows.Forms.Label(); this.panel4 = new System.Windows.Forms.Panel(); this.label7 = new System.Windows.Forms.Label(); - this.progressBar1 = new TimeHACK.UI.ProgressBar(); + this.progressBar1 = new Histacom2.UI.ProgressBar(); ((System.ComponentModel.ISupportInitialize)(this.installPic)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); this.panel1.SuspendLayout(); @@ -59,7 +59,7 @@ private void InitializeComponent() // // installPic // - this.installPic.BackgroundImage = global::TimeHACK.Properties.Resources.WinClassicInstallPic; + this.installPic.BackgroundImage = global::Histacom2.Properties.Resources.WinClassicInstallPic; this.installPic.Location = new System.Drawing.Point(18, 16); this.installPic.Name = "installPic"; this.installPic.Size = new System.Drawing.Size(120, 260); @@ -68,7 +68,7 @@ private void InitializeComponent() // // pictureBox1 // - this.pictureBox1.BackgroundImage = global::TimeHACK.Properties.Resources.WinAboutSeparator95; + this.pictureBox1.BackgroundImage = global::Histacom2.Properties.Resources.WinAboutSeparator95; this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.pictureBox1.Location = new System.Drawing.Point(18, 292); this.pictureBox1.Name = "pictureBox1"; diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/Win95Installer.cs b/Histacom2/OS/Win95/Win95Apps/Win95Installer.cs similarity index 99% rename from TimeHACK.Main/OS/Win95/Win95Apps/Win95Installer.cs rename to Histacom2/OS/Win95/Win95Apps/Win95Installer.cs index c6e125f..6f8a63e 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/Win95Installer.cs +++ b/Histacom2/OS/Win95/Win95Apps/Win95Installer.cs @@ -8,7 +8,7 @@ using System.Threading.Tasks; using System.Windows.Forms; -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { public partial class Win95Installer : UserControl { diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/Win95Installer.resx b/Histacom2/OS/Win95/Win95Apps/Win95Installer.resx similarity index 100% rename from TimeHACK.Main/OS/Win95/Win95Apps/Win95Installer.resx rename to Histacom2/OS/Win95/Win95Apps/Win95Installer.resx diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/Win95WindowsExplorer.Designer.cs b/Histacom2/OS/Win95/Win95Apps/Win95WindowsExplorer.Designer.cs similarity index 99% rename from TimeHACK.Main/OS/Win95/Win95Apps/Win95WindowsExplorer.Designer.cs rename to Histacom2/OS/Win95/Win95Apps/Win95WindowsExplorer.Designer.cs index de5c891..3269e83 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/Win95WindowsExplorer.Designer.cs +++ b/Histacom2/OS/Win95/Win95Apps/Win95WindowsExplorer.Designer.cs @@ -1,4 +1,4 @@ -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { partial class Win95WindowsExplorer { diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/Win95WindowsExplorer.cs b/Histacom2/OS/Win95/Win95Apps/Win95WindowsExplorer.cs similarity index 99% rename from TimeHACK.Main/OS/Win95/Win95Apps/Win95WindowsExplorer.cs rename to Histacom2/OS/Win95/Win95Apps/Win95WindowsExplorer.cs index 7496009..26bcfc9 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/Win95WindowsExplorer.cs +++ b/Histacom2/OS/Win95/Win95Apps/Win95WindowsExplorer.cs @@ -7,14 +7,14 @@ using System.Text; using System.Threading.Tasks; using System.Windows.Forms; -using static TimeHACK.Engine.SaveSystem; +using static Histacom2.Engine.SaveSystem; using System.IO; -using TimeHACK.Engine; +using Histacom2.Engine; using Newtonsoft.Json; -using TimeHACK.Engine.Template; +using Histacom2.Engine.Template; using System.Diagnostics; -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { public partial class Win95WindowsExplorer : UserControl { diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/Win95WindowsExplorer.resx b/Histacom2/OS/Win95/Win95Apps/Win95WindowsExplorer.resx similarity index 100% rename from TimeHACK.Main/OS/Win95/Win95Apps/Win95WindowsExplorer.resx rename to Histacom2/OS/Win95/Win95Apps/Win95WindowsExplorer.resx diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicFTPClient.Designer.cs b/Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.Designer.cs similarity index 99% rename from TimeHACK.Main/OS/Win95/Win95Apps/WinClassicFTPClient.Designer.cs rename to Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.Designer.cs index 3ce56d0..9eb36a7 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicFTPClient.Designer.cs +++ b/Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.Designer.cs @@ -1,4 +1,4 @@ -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { partial class WinClassicFTPClient { diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicFTPClient.cs b/Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs similarity index 98% rename from TimeHACK.Main/OS/Win95/Win95Apps/WinClassicFTPClient.cs rename to Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs index 1a9f2e1..1640818 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicFTPClient.cs +++ b/Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.cs @@ -7,9 +7,9 @@ using System.Text; using System.Threading.Tasks; using System.Windows.Forms; -using TimeHACK.Engine; +using Histacom2.Engine; -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { public partial class WinClassicFTPClient : UserControl { diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicFTPClient.resx b/Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.resx similarity index 100% rename from TimeHACK.Main/OS/Win95/Win95Apps/WinClassicFTPClient.resx rename to Histacom2/OS/Win95/Win95Apps/WinClassicFTPClient.resx diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE3.Designer.cs b/Histacom2/OS/Win95/Win95Apps/WinClassicIE3.Designer.cs similarity index 97% rename from TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE3.Designer.cs rename to Histacom2/OS/Win95/Win95Apps/WinClassicIE3.Designer.cs index 600d905..28594b3 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE3.Designer.cs +++ b/Histacom2/OS/Win95/Win95Apps/WinClassicIE3.Designer.cs @@ -1,4 +1,4 @@ -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { partial class WinClassicIE3 { @@ -165,7 +165,7 @@ private void InitializeComponent() // Panel14 // this.Panel14.BackColor = System.Drawing.Color.Silver; - this.Panel14.BackgroundImage = global::TimeHACK.Properties.Resources.IE3_SwirlyThings; + this.Panel14.BackgroundImage = global::Histacom2.Properties.Resources.IE3_SwirlyThings; this.Panel14.Controls.Add(this.pictureBox10); this.Panel14.Controls.Add(this.label2); this.Panel14.Controls.Add(this.pictureBox9); @@ -182,7 +182,7 @@ private void InitializeComponent() // pictureBox10 // this.pictureBox10.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.pictureBox10.BackgroundImage = global::TimeHACK.Properties.Resources.ie4_vsplitter2; + this.pictureBox10.BackgroundImage = global::Histacom2.Properties.Resources.ie4_vsplitter2; this.pictureBox10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.pictureBox10.Location = new System.Drawing.Point(921, 4); this.pictureBox10.Name = "pictureBox10"; @@ -204,7 +204,7 @@ private void InitializeComponent() // pictureBox9 // this.pictureBox9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); - this.pictureBox9.BackgroundImage = global::TimeHACK.Properties.Resources.ie4_hsplitter; + this.pictureBox9.BackgroundImage = global::Histacom2.Properties.Resources.ie4_hsplitter; this.pictureBox9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.pictureBox9.Location = new System.Drawing.Point(0, 26); this.pictureBox9.Name = "pictureBox9"; @@ -214,7 +214,7 @@ private void InitializeComponent() // // pictureBox3 // - this.pictureBox3.BackgroundImage = global::TimeHACK.Properties.Resources.ie4_vsplitter2; + this.pictureBox3.BackgroundImage = global::Histacom2.Properties.Resources.ie4_vsplitter2; this.pictureBox3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.pictureBox3.Location = new System.Drawing.Point(2, 3); this.pictureBox3.Name = "pictureBox3"; @@ -226,7 +226,7 @@ private void InitializeComponent() // this.GoButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.GoButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.GoButton.Image = global::TimeHACK.Properties.Resources.ie4_go; + this.GoButton.Image = global::Histacom2.Properties.Resources.ie4_go; this.GoButton.ImageAlign = System.Drawing.ContentAlignment.TopCenter; this.GoButton.Location = new System.Drawing.Point(872, 2); this.GoButton.Name = "GoButton"; @@ -266,7 +266,7 @@ private void InitializeComponent() this.Button30.Dock = System.Windows.Forms.DockStyle.Left; this.Button30.FlatAppearance.BorderSize = 0; this.Button30.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.Button30.Image = global::TimeHACK.Properties.Resources.ie4_print; + this.Button30.Image = global::Histacom2.Properties.Resources.ie4_print; this.Button30.ImageAlign = System.Drawing.ContentAlignment.BottomCenter; this.Button30.Location = new System.Drawing.Point(490, 0); this.Button30.Name = "Button30"; @@ -283,7 +283,7 @@ private void InitializeComponent() this.Button29.Dock = System.Windows.Forms.DockStyle.Left; this.Button29.FlatAppearance.BorderSize = 0; this.Button29.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.Button29.Image = global::TimeHACK.Properties.Resources.ie4_mail; + this.Button29.Image = global::Histacom2.Properties.Resources.ie4_mail; this.Button29.ImageAlign = System.Drawing.ContentAlignment.BottomCenter; this.Button29.Location = new System.Drawing.Point(435, 0); this.Button29.Name = "Button29"; @@ -300,7 +300,7 @@ private void InitializeComponent() this.Button27.Dock = System.Windows.Forms.DockStyle.Left; this.Button27.FlatAppearance.BorderSize = 0; this.Button27.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.Button27.Image = global::TimeHACK.Properties.Resources.ie4_history; + this.Button27.Image = global::Histacom2.Properties.Resources.ie4_history; this.Button27.ImageAlign = System.Drawing.ContentAlignment.BottomCenter; this.Button27.Location = new System.Drawing.Point(380, 0); this.Button27.Name = "Button27"; @@ -317,7 +317,7 @@ private void InitializeComponent() this.Button7.Dock = System.Windows.Forms.DockStyle.Left; this.Button7.FlatAppearance.BorderSize = 0; this.Button7.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.Button7.Image = global::TimeHACK.Properties.Resources.ie4_favorites; + this.Button7.Image = global::Histacom2.Properties.Resources.ie4_favorites; this.Button7.ImageAlign = System.Drawing.ContentAlignment.BottomCenter; this.Button7.Location = new System.Drawing.Point(320, 0); this.Button7.Name = "Button7"; @@ -334,7 +334,7 @@ private void InitializeComponent() this.Button6.Dock = System.Windows.Forms.DockStyle.Left; this.Button6.FlatAppearance.BorderSize = 0; this.Button6.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.Button6.Image = global::TimeHACK.Properties.Resources.ie4_search; + this.Button6.Image = global::Histacom2.Properties.Resources.ie4_search; this.Button6.ImageAlign = System.Drawing.ContentAlignment.BottomCenter; this.Button6.Location = new System.Drawing.Point(265, 0); this.Button6.Name = "Button6"; @@ -351,7 +351,7 @@ private void InitializeComponent() this.HomeButton.Dock = System.Windows.Forms.DockStyle.Left; this.HomeButton.FlatAppearance.BorderSize = 0; this.HomeButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.HomeButton.Image = global::TimeHACK.Properties.Resources.ie4_home; + this.HomeButton.Image = global::Histacom2.Properties.Resources.ie4_home; this.HomeButton.ImageAlign = System.Drawing.ContentAlignment.BottomCenter; this.HomeButton.Location = new System.Drawing.Point(210, 0); this.HomeButton.Name = "HomeButton"; @@ -365,7 +365,7 @@ private void InitializeComponent() // RefreshButton // this.RefreshButton.BackColor = System.Drawing.Color.Transparent; - this.RefreshButton.BackgroundImage = global::TimeHACK.Properties.Resources.IE3_Refresh; + this.RefreshButton.BackgroundImage = global::Histacom2.Properties.Resources.IE3_Refresh; this.RefreshButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; this.RefreshButton.Dock = System.Windows.Forms.DockStyle.Left; this.RefreshButton.FlatAppearance.BorderSize = 0; @@ -381,7 +381,7 @@ private void InitializeComponent() // StopButton // this.StopButton.BackColor = System.Drawing.Color.Transparent; - this.StopButton.BackgroundImage = global::TimeHACK.Properties.Resources.IE3_Stop; + this.StopButton.BackgroundImage = global::Histacom2.Properties.Resources.IE3_Stop; this.StopButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; this.StopButton.Dock = System.Windows.Forms.DockStyle.Left; this.StopButton.FlatAppearance.BorderSize = 0; @@ -400,7 +400,7 @@ private void InitializeComponent() // ForwardButton // this.ForwardButton.BackColor = System.Drawing.Color.Transparent; - this.ForwardButton.BackgroundImage = global::TimeHACK.Properties.Resources.IE3_Forward; + this.ForwardButton.BackgroundImage = global::Histacom2.Properties.Resources.IE3_Forward; this.ForwardButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; this.ForwardButton.Dock = System.Windows.Forms.DockStyle.Left; this.ForwardButton.FlatAppearance.BorderSize = 0; @@ -418,7 +418,7 @@ private void InitializeComponent() // BackButton // this.BackButton.BackColor = System.Drawing.Color.Transparent; - this.BackButton.BackgroundImage = global::TimeHACK.Properties.Resources.IE3_Back; + this.BackButton.BackgroundImage = global::Histacom2.Properties.Resources.IE3_Back; this.BackButton.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; this.BackButton.Dock = System.Windows.Forms.DockStyle.Left; this.BackButton.FlatAppearance.BorderSize = 0; @@ -437,7 +437,7 @@ private void InitializeComponent() // Panel1 // this.Panel1.BackColor = System.Drawing.Color.Silver; - this.Panel1.BackgroundImage = global::TimeHACK.Properties.Resources.IE3_SwirlyThings; + this.Panel1.BackgroundImage = global::Histacom2.Properties.Resources.IE3_SwirlyThings; this.Panel1.Controls.Add(this.pictureBox5); this.Panel1.Controls.Add(this.Button30); this.Panel1.Controls.Add(this.Button29); @@ -457,7 +457,7 @@ private void InitializeComponent() // // pictureBox5 // - this.pictureBox5.BackgroundImage = global::TimeHACK.Properties.Resources.ie4_vsplitter3; + this.pictureBox5.BackgroundImage = global::Histacom2.Properties.Resources.ie4_vsplitter3; this.pictureBox5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.pictureBox5.Location = new System.Drawing.Point(2, 3); this.pictureBox5.Name = "pictureBox5"; @@ -467,7 +467,7 @@ private void InitializeComponent() // // pictureBox8 // - this.pictureBox8.BackgroundImage = global::TimeHACK.Properties.Resources.ie4_hsplitter; + this.pictureBox8.BackgroundImage = global::Histacom2.Properties.Resources.ie4_hsplitter; this.pictureBox8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.pictureBox8.Dock = System.Windows.Forms.DockStyle.Top; this.pictureBox8.Location = new System.Drawing.Point(0, 68); @@ -478,7 +478,7 @@ private void InitializeComponent() // // pictureBox6 // - this.pictureBox6.BackgroundImage = global::TimeHACK.Properties.Resources.ie4_hsplitter; + this.pictureBox6.BackgroundImage = global::Histacom2.Properties.Resources.ie4_hsplitter; this.pictureBox6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.pictureBox6.Dock = System.Windows.Forms.DockStyle.Top; this.pictureBox6.Location = new System.Drawing.Point(0, 24); @@ -1280,7 +1280,7 @@ private void InitializeComponent() // // pictureBox4 // - this.pictureBox4.BackgroundImage = global::TimeHACK.Properties.Resources.ie4_vsplitter2; + this.pictureBox4.BackgroundImage = global::Histacom2.Properties.Resources.ie4_vsplitter2; this.pictureBox4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.pictureBox4.Location = new System.Drawing.Point(2, 4); this.pictureBox4.Name = "pictureBox4"; @@ -1290,7 +1290,7 @@ private void InitializeComponent() // // pictureBox7 // - this.pictureBox7.BackgroundImage = global::TimeHACK.Properties.Resources.ie4_hsplitter; + this.pictureBox7.BackgroundImage = global::Histacom2.Properties.Resources.ie4_hsplitter; this.pictureBox7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.pictureBox7.Location = new System.Drawing.Point(0, 0); this.pictureBox7.Name = "pictureBox7"; diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE3.cs b/Histacom2/OS/Win95/Win95Apps/WinClassicIE3.cs similarity index 97% rename from TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE3.cs rename to Histacom2/OS/Win95/Win95Apps/WinClassicIE3.cs index b5367d1..ee32a38 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE3.cs +++ b/Histacom2/OS/Win95/Win95Apps/WinClassicIE3.cs @@ -7,9 +7,9 @@ using System.Text; using System.Threading.Tasks; using System.Windows.Forms; -using TimeHACK.OS.Win95.Win95Apps.IE4Sites; +using Histacom2.OS.Win95.Win95Apps.IE4Sites; -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { public partial class WinClassicIE3 : UserControl { diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE3.resx b/Histacom2/OS/Win95/Win95Apps/WinClassicIE3.resx similarity index 100% rename from TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE3.resx rename to Histacom2/OS/Win95/Win95Apps/WinClassicIE3.resx diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicInstaller.Designer.cs b/Histacom2/OS/Win95/Win95Apps/WinClassicInstaller.Designer.cs similarity index 100% rename from TimeHACK.Main/OS/Win95/Win95Apps/WinClassicInstaller.Designer.cs rename to Histacom2/OS/Win95/Win95Apps/WinClassicInstaller.Designer.cs diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicInstaller.cs b/Histacom2/OS/Win95/Win95Apps/WinClassicInstaller.cs similarity index 100% rename from TimeHACK.Main/OS/Win95/Win95Apps/WinClassicInstaller.cs rename to Histacom2/OS/Win95/Win95Apps/WinClassicInstaller.cs diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicInstaller.resx b/Histacom2/OS/Win95/Win95Apps/WinClassicInstaller.resx similarity index 100% rename from TimeHACK.Main/OS/Win95/Win95Apps/WinClassicInstaller.resx rename to Histacom2/OS/Win95/Win95Apps/WinClassicInstaller.resx diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTerminal.Designer.cs b/Histacom2/OS/Win95/Win95Apps/WinClassicTerminal.Designer.cs similarity index 93% rename from TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTerminal.Designer.cs rename to Histacom2/OS/Win95/Win95Apps/WinClassicTerminal.Designer.cs index 5f6c2d3..4bfd59b 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTerminal.Designer.cs +++ b/Histacom2/OS/Win95/Win95Apps/WinClassicTerminal.Designer.cs @@ -1,4 +1,4 @@ -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { partial class WinClassicTerminal { @@ -75,7 +75,7 @@ private void InitializeComponent() // // btnFont // - this.btnFont.BackgroundImage = global::TimeHACK.Properties.Resources.termFont; + this.btnFont.BackgroundImage = global::Histacom2.Properties.Resources.termFont; this.btnFont.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; this.btnFont.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnFont.Location = new System.Drawing.Point(266, 3); @@ -87,7 +87,7 @@ private void InitializeComponent() // // btnCopy // - this.btnCopy.BackgroundImage = global::TimeHACK.Properties.Resources.termCopy; + this.btnCopy.BackgroundImage = global::Histacom2.Properties.Resources.termCopy; this.btnCopy.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; this.btnCopy.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnCopy.Location = new System.Drawing.Point(126, 3); @@ -99,7 +99,7 @@ private void InitializeComponent() // // termMax // - this.termMax.BackgroundImage = global::TimeHACK.Properties.Resources.termMax; + this.termMax.BackgroundImage = global::Histacom2.Properties.Resources.termMax; this.termMax.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; this.termMax.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.termMax.Location = new System.Drawing.Point(180, 3); @@ -110,7 +110,7 @@ private void InitializeComponent() // // btnNothing // - this.btnNothing.BackgroundImage = global::TimeHACK.Properties.Resources.termNothing; + this.btnNothing.BackgroundImage = global::Histacom2.Properties.Resources.termNothing; this.btnNothing.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; this.btnNothing.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnNothing.Location = new System.Drawing.Point(234, 3); @@ -121,7 +121,7 @@ private void InitializeComponent() // // btnSettings // - this.btnSettings.BackgroundImage = global::TimeHACK.Properties.Resources.termSettings; + this.btnSettings.BackgroundImage = global::Histacom2.Properties.Resources.termSettings; this.btnSettings.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; this.btnSettings.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnSettings.Location = new System.Drawing.Point(212, 3); @@ -133,7 +133,7 @@ private void InitializeComponent() // // btnPaste // - this.btnPaste.BackgroundImage = global::TimeHACK.Properties.Resources.termPaste; + this.btnPaste.BackgroundImage = global::Histacom2.Properties.Resources.termPaste; this.btnPaste.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; this.btnPaste.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnPaste.Location = new System.Drawing.Point(148, 3); @@ -145,7 +145,7 @@ private void InitializeComponent() // // btnMark // - this.btnMark.BackgroundImage = global::TimeHACK.Properties.Resources.termMark; + this.btnMark.BackgroundImage = global::Histacom2.Properties.Resources.termMark; this.btnMark.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; this.btnMark.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnMark.Location = new System.Drawing.Point(104, 3); diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTerminal.cs b/Histacom2/OS/Win95/Win95Apps/WinClassicTerminal.cs similarity index 99% rename from TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTerminal.cs rename to Histacom2/OS/Win95/Win95Apps/WinClassicTerminal.cs index 5eeeb33..668078e 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTerminal.cs +++ b/Histacom2/OS/Win95/Win95Apps/WinClassicTerminal.cs @@ -15,10 +15,10 @@ using System.Diagnostics; using System.Text.RegularExpressions; using Newtonsoft.Json; -using TimeHACK.Engine; +using Histacom2.Engine; using System.Globalization; -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { public partial class WinClassicTerminal : UserControl { diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicThemePanel.resx b/Histacom2/OS/Win95/Win95Apps/WinClassicTerminal.resx similarity index 100% rename from TimeHACK.Main/OS/Win95/Win95Apps/WinClassicThemePanel.resx rename to Histacom2/OS/Win95/Win95Apps/WinClassicTerminal.resx diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicThemePanel.Designer.cs b/Histacom2/OS/Win95/Win95Apps/WinClassicThemePanel.Designer.cs similarity index 97% rename from TimeHACK.Main/OS/Win95/Win95Apps/WinClassicThemePanel.Designer.cs rename to Histacom2/OS/Win95/Win95Apps/WinClassicThemePanel.Designer.cs index 93dcbd2..ee8021c 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicThemePanel.Designer.cs +++ b/Histacom2/OS/Win95/Win95Apps/WinClassicThemePanel.Designer.cs @@ -1,4 +1,4 @@ -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { partial class WinClassicThemePanel { @@ -40,7 +40,7 @@ private void InitializeComponent() // // pictureBox1 // - this.pictureBox1.BackgroundImage = global::TimeHACK.Properties.Resources.WinClassicDisplayExample; + this.pictureBox1.BackgroundImage = global::Histacom2.Properties.Resources.WinClassicDisplayExample; this.pictureBox1.Location = new System.Drawing.Point(58, 15); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(184, 169); diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicThemePanel.cs b/Histacom2/OS/Win95/Win95Apps/WinClassicThemePanel.cs similarity index 98% rename from TimeHACK.Main/OS/Win95/Win95Apps/WinClassicThemePanel.cs rename to Histacom2/OS/Win95/Win95Apps/WinClassicThemePanel.cs index 205da5d..fb790cb 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicThemePanel.cs +++ b/Histacom2/OS/Win95/Win95Apps/WinClassicThemePanel.cs @@ -7,10 +7,10 @@ using System.Text; using System.Threading.Tasks; using System.Windows.Forms; -using TimeHACK.Engine; -using TimeHACK.Engine.Template; +using Histacom2.Engine; +using Histacom2.Engine.Template; -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { public partial class WinClassicThemePanel : UserControl { diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.resx b/Histacom2/OS/Win95/Win95Apps/WinClassicThemePanel.resx similarity index 100% rename from TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.resx rename to Histacom2/OS/Win95/Win95Apps/WinClassicThemePanel.resx diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTimeDistorter.Designer.cs b/Histacom2/OS/Win95/Win95Apps/WinClassicTimeDistorter.Designer.cs similarity index 99% rename from TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTimeDistorter.Designer.cs rename to Histacom2/OS/Win95/Win95Apps/WinClassicTimeDistorter.Designer.cs index abbaac5..ca74bd4 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTimeDistorter.Designer.cs +++ b/Histacom2/OS/Win95/Win95Apps/WinClassicTimeDistorter.Designer.cs @@ -1,4 +1,4 @@ -namespace TimeHACK.OS.Win95 +namespace Histacom2.OS.Win95 { partial class WinClassicTimeDistorter { diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTimeDistorter.cs b/Histacom2/OS/Win95/Win95Apps/WinClassicTimeDistorter.cs similarity index 94% rename from TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTimeDistorter.cs rename to Histacom2/OS/Win95/Win95Apps/WinClassicTimeDistorter.cs index f7776b1..6d53e0e 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTimeDistorter.cs +++ b/Histacom2/OS/Win95/Win95Apps/WinClassicTimeDistorter.cs @@ -1,10 +1,10 @@ using System; using System.Threading.Tasks; using System.Windows.Forms; -using TimeHACK.Engine; -using TimeHACK.Engine.Template; +using Histacom2.Engine; +using Histacom2.Engine.Template; -namespace TimeHACK.OS.Win95 +namespace Histacom2.OS.Win95 { public partial class WinClassicTimeDistorter : UserControl { diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTimeDistorter.resx b/Histacom2/OS/Win95/Win95Apps/WinClassicTimeDistorter.resx similarity index 100% rename from TimeHACK.Main/OS/Win95/Win95Apps/WinClassicTimeDistorter.resx rename to Histacom2/OS/Win95/Win95Apps/WinClassicTimeDistorter.resx diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.Designer.cs b/Histacom2/OS/Win95/Win95Apps/WinClassicWelcome.Designer.cs similarity index 95% rename from TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.Designer.cs rename to Histacom2/OS/Win95/Win95Apps/WinClassicWelcome.Designer.cs index fee95d5..ca3f22d 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.Designer.cs +++ b/Histacom2/OS/Win95/Win95Apps/WinClassicWelcome.Designer.cs @@ -1,4 +1,4 @@ -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { partial class WinClassicWelcome { @@ -41,7 +41,7 @@ private void InitializeComponent() // // imgTip // - this.imgTip.BackgroundImage = global::TimeHACK.Properties.Resources.win95_welcometip; + this.imgTip.BackgroundImage = global::Histacom2.Properties.Resources.win95_welcometip; this.imgTip.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; this.imgTip.Location = new System.Drawing.Point(16, 49); this.imgTip.Name = "imgTip"; @@ -52,7 +52,7 @@ private void InitializeComponent() // // imgPnl // - this.imgPnl.Image = global::TimeHACK.Properties.Resources.win95_splitter; + this.imgPnl.Image = global::Histacom2.Properties.Resources.win95_splitter; this.imgPnl.Location = new System.Drawing.Point(358, 142); this.imgPnl.Name = "imgPnl"; this.imgPnl.Size = new System.Drawing.Size(112, 2); @@ -98,7 +98,7 @@ private void InitializeComponent() // // imgWelcome // - this.imgWelcome.BackgroundImage = global::TimeHACK.Properties.Resources.win95_welcome; + this.imgWelcome.BackgroundImage = global::Histacom2.Properties.Resources.win95_welcome; this.imgWelcome.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; this.imgWelcome.Location = new System.Drawing.Point(19, 17); this.imgWelcome.Name = "imgWelcome"; diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.cs b/Histacom2/OS/Win95/Win95Apps/WinClassicWelcome.cs similarity index 96% rename from TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.cs rename to Histacom2/OS/Win95/Win95Apps/WinClassicWelcome.cs index b830391..4804ca5 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWelcome.cs +++ b/Histacom2/OS/Win95/Win95Apps/WinClassicWelcome.cs @@ -8,7 +8,7 @@ using System.Threading.Tasks; using System.Windows.Forms; -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { public partial class WinClassicWelcome : UserControl { diff --git a/TimeHACK.Main/OS/Win98/Win98Apps/AddressBook/FRMWinClassicAddressBookNewContact.resx b/Histacom2/OS/Win95/Win95Apps/WinClassicWelcome.resx similarity index 100% rename from TimeHACK.Main/OS/Win98/Win98Apps/AddressBook/FRMWinClassicAddressBookNewContact.resx rename to Histacom2/OS/Win95/Win95Apps/WinClassicWelcome.resx diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWordPad.Designer.cs b/Histacom2/OS/Win95/Win95Apps/WinClassicWordPad.Designer.cs similarity index 95% rename from TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWordPad.Designer.cs rename to Histacom2/OS/Win95/Win95Apps/WinClassicWordPad.Designer.cs index fab5fb9..3aeb254 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWordPad.Designer.cs +++ b/Histacom2/OS/Win95/Win95Apps/WinClassicWordPad.Designer.cs @@ -1,4 +1,4 @@ -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { partial class WinClassicWordPad { @@ -333,7 +333,7 @@ private void InitializeComponent() // // btnFind // - this.btnFind.BackgroundImage = global::TimeHACK.Properties.Resources.wordpad_find; + this.btnFind.BackgroundImage = global::Histacom2.Properties.Resources.wordpad_find; this.btnFind.FlatAppearance.BorderSize = 0; this.btnFind.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnFind.Location = new System.Drawing.Point(137, 3); @@ -344,7 +344,7 @@ private void InitializeComponent() // // btnPrintPreview // - this.btnPrintPreview.BackgroundImage = global::TimeHACK.Properties.Resources.wordpad_printpreview; + this.btnPrintPreview.BackgroundImage = global::Histacom2.Properties.Resources.wordpad_printpreview; this.btnPrintPreview.FlatAppearance.BorderSize = 0; this.btnPrintPreview.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnPrintPreview.Location = new System.Drawing.Point(106, 3); @@ -355,7 +355,7 @@ private void InitializeComponent() // // btnPrint // - this.btnPrint.BackgroundImage = global::TimeHACK.Properties.Resources.wordpad_print; + this.btnPrint.BackgroundImage = global::Histacom2.Properties.Resources.wordpad_print; this.btnPrint.FlatAppearance.BorderSize = 0; this.btnPrint.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnPrint.Location = new System.Drawing.Point(83, 3); @@ -366,7 +366,7 @@ private void InitializeComponent() // // btnSave // - this.btnSave.BackgroundImage = global::TimeHACK.Properties.Resources.wordpad_save; + this.btnSave.BackgroundImage = global::Histacom2.Properties.Resources.wordpad_save; this.btnSave.FlatAppearance.BorderSize = 0; this.btnSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnSave.Location = new System.Drawing.Point(52, 3); @@ -377,7 +377,7 @@ private void InitializeComponent() // // btnOpen // - this.btnOpen.BackgroundImage = global::TimeHACK.Properties.Resources.wordpad_open; + this.btnOpen.BackgroundImage = global::Histacom2.Properties.Resources.wordpad_open; this.btnOpen.FlatAppearance.BorderSize = 0; this.btnOpen.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnOpen.Location = new System.Drawing.Point(29, 3); @@ -388,7 +388,7 @@ private void InitializeComponent() // // btnPaste // - this.btnPaste.BackgroundImage = global::TimeHACK.Properties.Resources.wordpad_paste; + this.btnPaste.BackgroundImage = global::Histacom2.Properties.Resources.wordpad_paste; this.btnPaste.FlatAppearance.BorderSize = 0; this.btnPaste.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnPaste.Location = new System.Drawing.Point(214, 3); @@ -399,7 +399,7 @@ private void InitializeComponent() // // btnCopy // - this.btnCopy.BackgroundImage = global::TimeHACK.Properties.Resources.wordpad_copy; + this.btnCopy.BackgroundImage = global::Histacom2.Properties.Resources.wordpad_copy; this.btnCopy.FlatAppearance.BorderSize = 0; this.btnCopy.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnCopy.Location = new System.Drawing.Point(191, 3); @@ -410,7 +410,7 @@ private void InitializeComponent() // // btnCut // - this.btnCut.BackgroundImage = global::TimeHACK.Properties.Resources.wordpad_cut; + this.btnCut.BackgroundImage = global::Histacom2.Properties.Resources.wordpad_cut; this.btnCut.FlatAppearance.BorderSize = 0; this.btnCut.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnCut.Location = new System.Drawing.Point(168, 3); @@ -421,7 +421,7 @@ private void InitializeComponent() // // btnNew // - this.btnNew.BackgroundImage = global::TimeHACK.Properties.Resources.wordpad_new; + this.btnNew.BackgroundImage = global::Histacom2.Properties.Resources.wordpad_new; this.btnNew.FlatAppearance.BorderSize = 0; this.btnNew.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnNew.Location = new System.Drawing.Point(6, 3); @@ -506,7 +506,7 @@ private void InitializeComponent() // btnUnderline // this.btnUnderline.BackColor = System.Drawing.Color.DimGray; - this.btnUnderline.BackgroundImage = global::TimeHACK.Properties.Resources.wordpad_underline; + this.btnUnderline.BackgroundImage = global::Histacom2.Properties.Resources.wordpad_underline; this.btnUnderline.FlatAppearance.BorderSize = 0; this.btnUnderline.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnUnderline.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); @@ -522,7 +522,7 @@ private void InitializeComponent() // btnItalic // this.btnItalic.BackColor = System.Drawing.Color.DimGray; - this.btnItalic.BackgroundImage = global::TimeHACK.Properties.Resources.wordpad_italic; + this.btnItalic.BackgroundImage = global::Histacom2.Properties.Resources.wordpad_italic; this.btnItalic.FlatAppearance.BorderSize = 0; this.btnItalic.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnItalic.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0))); @@ -538,7 +538,7 @@ private void InitializeComponent() // btnBold // this.btnBold.BackColor = System.Drawing.Color.DimGray; - this.btnBold.BackgroundImage = global::TimeHACK.Properties.Resources.wordpad_bold; + this.btnBold.BackgroundImage = global::Histacom2.Properties.Resources.wordpad_bold; this.btnBold.FlatAppearance.BorderSize = 0; this.btnBold.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.btnBold.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); @@ -573,7 +573,7 @@ private void InitializeComponent() // // pictureBox3 // - this.pictureBox3.BackgroundImage = global::TimeHACK.Properties.Resources.ie4_hsplitter; + this.pictureBox3.BackgroundImage = global::Histacom2.Properties.Resources.ie4_hsplitter; this.pictureBox3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.pictureBox3.Dock = System.Windows.Forms.DockStyle.Top; this.pictureBox3.Location = new System.Drawing.Point(0, 24); @@ -585,7 +585,7 @@ private void InitializeComponent() // // pictureBox4 // - this.pictureBox4.BackgroundImage = global::TimeHACK.Properties.Resources.ie4_hsplitter; + this.pictureBox4.BackgroundImage = global::Histacom2.Properties.Resources.ie4_hsplitter; this.pictureBox4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.pictureBox4.Dock = System.Windows.Forms.DockStyle.Top; this.pictureBox4.Location = new System.Drawing.Point(0, 54); @@ -597,7 +597,7 @@ private void InitializeComponent() // // pictureBox5 // - this.pictureBox5.BackgroundImage = global::TimeHACK.Properties.Resources.ie4_vsplitter; + this.pictureBox5.BackgroundImage = global::Histacom2.Properties.Resources.ie4_vsplitter; this.pictureBox5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; this.pictureBox5.Location = new System.Drawing.Point(297, 0); this.pictureBox5.Name = "pictureBox5"; diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWordPad.cs b/Histacom2/OS/Win95/Win95Apps/WinClassicWordPad.cs similarity index 99% rename from TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWordPad.cs rename to Histacom2/OS/Win95/Win95Apps/WinClassicWordPad.cs index 7d7956a..f1f5245 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWordPad.cs +++ b/Histacom2/OS/Win95/Win95Apps/WinClassicWordPad.cs @@ -8,9 +8,9 @@ using System.Threading.Tasks; using System.Windows.Forms; using System.Drawing.Text; -using TimeHACK.Engine; +using Histacom2.Engine; -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { public partial class WinClassicWordPad : UserControl { diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWordPad.resx b/Histacom2/OS/Win95/Win95Apps/WinClassicWordPad.resx similarity index 100% rename from TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWordPad.resx rename to Histacom2/OS/Win95/Win95Apps/WinClassicWordPad.resx diff --git a/TimeHACK.Main/OS/Win95/Win95TaskBarItem.Designer.cs b/Histacom2/OS/Win95/Win95TaskBarItem.Designer.cs similarity index 98% rename from TimeHACK.Main/OS/Win95/Win95TaskBarItem.Designer.cs rename to Histacom2/OS/Win95/Win95TaskBarItem.Designer.cs index f07c5c0..844e47b 100644 --- a/TimeHACK.Main/OS/Win95/Win95TaskBarItem.Designer.cs +++ b/Histacom2/OS/Win95/Win95TaskBarItem.Designer.cs @@ -1,4 +1,4 @@ -namespace TimeHACK.Engine.Template.Taskbars +namespace Histacom2.Engine.Template.Taskbars { partial class Win95TaskBarItem { diff --git a/TimeHACK.Main/OS/Win95/Win95TaskBarItem.cs b/Histacom2/OS/Win95/Win95TaskBarItem.cs similarity index 94% rename from TimeHACK.Main/OS/Win95/Win95TaskBarItem.cs rename to Histacom2/OS/Win95/Win95TaskBarItem.cs index 06c2030..b13e25c 100644 --- a/TimeHACK.Main/OS/Win95/Win95TaskBarItem.cs +++ b/Histacom2/OS/Win95/Win95TaskBarItem.cs @@ -7,9 +7,9 @@ using System.Text; using System.Threading.Tasks; using System.Windows.Forms; -using TimeHACK.Engine; +using Histacom2.Engine; -namespace TimeHACK.Engine.Template.Taskbars +namespace Histacom2.Engine.Template.Taskbars { public partial class Win95TaskBarItem : UserControl { diff --git a/TimeHACK.Main/OS/Win95/Win95TaskBarItem.resx b/Histacom2/OS/Win95/Win95TaskBarItem.resx similarity index 100% rename from TimeHACK.Main/OS/Win95/Win95TaskBarItem.resx rename to Histacom2/OS/Win95/Win95TaskBarItem.resx diff --git a/TimeHACK.Main/OS/Win98/Win98.Designer.cs b/Histacom2/OS/Win98/Win98.Designer.cs similarity index 94% rename from TimeHACK.Main/OS/Win98/Win98.Designer.cs rename to Histacom2/OS/Win98/Win98.Designer.cs index d4507a5..6c1f2d2 100644 --- a/TimeHACK.Main/OS/Win98/Win98.Designer.cs +++ b/Histacom2/OS/Win98/Win98.Designer.cs @@ -1,6 +1,6 @@ -using TimeHACK.OS.Win95; +using Histacom2.OS.Win95; -namespace TimeHACK.OS.Win98 +namespace Histacom2.OS.Win98 { partial class Windows98 { @@ -141,7 +141,7 @@ private void InitializeComponent() // taskbar // this.taskbar.BackColor = System.Drawing.Color.Silver; - this.taskbar.BackgroundImage = global::TimeHACK.Properties.Resources.WinClassicTaskBar; + this.taskbar.BackgroundImage = global::Histacom2.Properties.Resources.WinClassicTaskBar; this.taskbar.Controls.Add(this.clockPanel); this.taskbar.Controls.Add(this.taskbarItems); this.taskbar.Controls.Add(this.startbutton); @@ -153,7 +153,7 @@ private void InitializeComponent() // // clockPanel // - this.clockPanel.BackgroundImage = global::TimeHACK.Properties.Resources.WinClassicTime; + this.clockPanel.BackgroundImage = global::Histacom2.Properties.Resources.WinClassicTime; this.clockPanel.Controls.Add(this.taskbartime); this.clockPanel.Dock = System.Windows.Forms.DockStyle.Right; this.clockPanel.Location = new System.Drawing.Point(575, 0); @@ -184,7 +184,7 @@ private void InitializeComponent() // // startbutton // - this.startbutton.Image = global::TimeHACK.Properties.Resources.WinClassicStart; + this.startbutton.Image = global::Histacom2.Properties.Resources.WinClassicStart; this.startbutton.Location = new System.Drawing.Point(2, 4); this.startbutton.Name = "startbutton"; this.startbutton.Size = new System.Drawing.Size(54, 22); @@ -229,7 +229,7 @@ private void InitializeComponent() // ProgramsToolStripMenuItem // this.ProgramsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.ProgramsToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.ProgramsToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.ProgramsToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.ProgramsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.AccessoriesToolStripMenuItem, @@ -245,7 +245,7 @@ private void InitializeComponent() this.SkindowsToolStripMenuItem, this.WebChatToolStripMenuItem, this.TimeDistorterToolStripMenuItem}); - this.ProgramsToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicPrograms; + this.ProgramsToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicPrograms; this.ProgramsToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.ProgramsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.ProgramsToolStripMenuItem.Name = "ProgramsToolStripMenuItem"; @@ -256,7 +256,7 @@ private void InitializeComponent() // AccessoriesToolStripMenuItem // this.AccessoriesToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.AccessoriesToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.AccessoriesToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.AccessoriesToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.AccessoriesToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.CommunicationsToolStripMenuItem, @@ -271,7 +271,7 @@ private void InitializeComponent() this.PaintToolStripMenuItem, this.PhoneDialerToolStripMenuItem, this.WordPadToolStripMenuItem}); - this.AccessoriesToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicProgramItem; + this.AccessoriesToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicProgramItem; this.AccessoriesToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.AccessoriesToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.AccessoriesToolStripMenuItem.Name = "AccessoriesToolStripMenuItem"; @@ -281,12 +281,12 @@ private void InitializeComponent() // CommunicationsToolStripMenuItem // this.CommunicationsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.CommunicationsToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.CommunicationsToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.CommunicationsToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.CommunicationsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.InternetConnectionWizardToolStripMenuItem, this.NetMeetingToolStripMenuItem}); - this.CommunicationsToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicProgramItem; + this.CommunicationsToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicProgramItem; this.CommunicationsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.CommunicationsToolStripMenuItem.Name = "CommunicationsToolStripMenuItem"; this.CommunicationsToolStripMenuItem.Size = new System.Drawing.Size(181, 28); @@ -295,7 +295,7 @@ private void InitializeComponent() // InternetConnectionWizardToolStripMenuItem // this.InternetConnectionWizardToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.InternetConnectionWizardToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.InternetConnectionWizardToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.InternetConnectionWizardToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.InternetConnectionWizardToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("InternetConnectionWizardToolStripMenuItem.Image"))); this.InternetConnectionWizardToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; @@ -307,7 +307,7 @@ private void InitializeComponent() // NetMeetingToolStripMenuItem // this.NetMeetingToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.NetMeetingToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.NetMeetingToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.NetMeetingToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.NetMeetingToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("NetMeetingToolStripMenuItem.Image"))); this.NetMeetingToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; @@ -319,14 +319,14 @@ private void InitializeComponent() // MultimediaToolStripMenuItem // this.MultimediaToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.MultimediaToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.MultimediaToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.MultimediaToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.MultimediaToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.CDPlayerToolStripMenuItem, this.SoundRecorderToolStripMenuItem, this.VolumeControlToolStripMenuItem, this.WindowsMediaPlayerToolStripMenuItem}); - this.MultimediaToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicProgramItem; + this.MultimediaToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicProgramItem; this.MultimediaToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.MultimediaToolStripMenuItem.Name = "MultimediaToolStripMenuItem"; this.MultimediaToolStripMenuItem.Size = new System.Drawing.Size(181, 28); @@ -335,7 +335,7 @@ private void InitializeComponent() // CDPlayerToolStripMenuItem // this.CDPlayerToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.CDPlayerToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.CDPlayerToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.CDPlayerToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.CDPlayerToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("CDPlayerToolStripMenuItem.Image"))); this.CDPlayerToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; @@ -346,7 +346,7 @@ private void InitializeComponent() // SoundRecorderToolStripMenuItem // this.SoundRecorderToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.SoundRecorderToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.SoundRecorderToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.SoundRecorderToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.SoundRecorderToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("SoundRecorderToolStripMenuItem.Image"))); this.SoundRecorderToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; @@ -357,7 +357,7 @@ private void InitializeComponent() // VolumeControlToolStripMenuItem // this.VolumeControlToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.VolumeControlToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.VolumeControlToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.VolumeControlToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.VolumeControlToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("VolumeControlToolStripMenuItem.Image"))); this.VolumeControlToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; @@ -368,7 +368,7 @@ private void InitializeComponent() // WindowsMediaPlayerToolStripMenuItem // this.WindowsMediaPlayerToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.WindowsMediaPlayerToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.WindowsMediaPlayerToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.WindowsMediaPlayerToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.WindowsMediaPlayerToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("WindowsMediaPlayerToolStripMenuItem.Image"))); this.WindowsMediaPlayerToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; @@ -379,12 +379,12 @@ private void InitializeComponent() // SystemToolsToolStripMenuItem // this.SystemToolsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.SystemToolsToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.SystemToolsToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.SystemToolsToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.SystemToolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.DiskDefragmenterToolStripMenuItem, this.ScanDiskToolStripMenuItem}); - this.SystemToolsToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicProgramItem; + this.SystemToolsToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicProgramItem; this.SystemToolsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.SystemToolsToolStripMenuItem.Name = "SystemToolsToolStripMenuItem"; this.SystemToolsToolStripMenuItem.Size = new System.Drawing.Size(181, 28); @@ -393,7 +393,7 @@ private void InitializeComponent() // DiskDefragmenterToolStripMenuItem // this.DiskDefragmenterToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.DiskDefragmenterToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.DiskDefragmenterToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.DiskDefragmenterToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.DiskDefragmenterToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("DiskDefragmenterToolStripMenuItem.Image"))); this.DiskDefragmenterToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; @@ -404,7 +404,7 @@ private void InitializeComponent() // ScanDiskToolStripMenuItem // this.ScanDiskToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.ScanDiskToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.ScanDiskToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.ScanDiskToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.ScanDiskToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("ScanDiskToolStripMenuItem.Image"))); this.ScanDiskToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; @@ -415,7 +415,7 @@ private void InitializeComponent() // AddressBookToolStripMenuItem // this.AddressBookToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.AddressBookToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.AddressBookToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.AddressBookToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.AddressBookToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("AddressBookToolStripMenuItem.Image"))); this.AddressBookToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; @@ -427,7 +427,7 @@ private void InitializeComponent() // CalculatorToolStripMenuItem // this.CalculatorToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.CalculatorToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.CalculatorToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.CalculatorToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.CalculatorToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("CalculatorToolStripMenuItem.Image"))); this.CalculatorToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; @@ -438,9 +438,9 @@ private void InitializeComponent() // HyperTerminalToolStripMenuItem // this.HyperTerminalToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.HyperTerminalToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.HyperTerminalToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.HyperTerminalToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.HyperTerminalToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicFolderSmall; + this.HyperTerminalToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicFolderSmall; this.HyperTerminalToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.HyperTerminalToolStripMenuItem.Name = "HyperTerminalToolStripMenuItem"; this.HyperTerminalToolStripMenuItem.Size = new System.Drawing.Size(181, 28); @@ -449,7 +449,7 @@ private void InitializeComponent() // ImagingToolStripMenuItem // this.ImagingToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.ImagingToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.ImagingToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.ImagingToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.ImagingToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("ImagingToolStripMenuItem.Image"))); this.ImagingToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; @@ -460,7 +460,7 @@ private void InitializeComponent() // NotePadToolStripMenuItem // this.NotePadToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.NotePadToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.NotePadToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.NotePadToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.NotePadToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("NotePadToolStripMenuItem.Image"))); this.NotePadToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; @@ -472,7 +472,7 @@ private void InitializeComponent() // OnlineRegistrationToolStripMenuItem // this.OnlineRegistrationToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.OnlineRegistrationToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.OnlineRegistrationToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.OnlineRegistrationToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.OnlineRegistrationToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("OnlineRegistrationToolStripMenuItem.Image"))); this.OnlineRegistrationToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; @@ -483,7 +483,7 @@ private void InitializeComponent() // PaintToolStripMenuItem // this.PaintToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.PaintToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.PaintToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.PaintToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.PaintToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("PaintToolStripMenuItem.Image"))); this.PaintToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; @@ -494,7 +494,7 @@ private void InitializeComponent() // PhoneDialerToolStripMenuItem // this.PhoneDialerToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.PhoneDialerToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.PhoneDialerToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.PhoneDialerToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.PhoneDialerToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("PhoneDialerToolStripMenuItem.Image"))); this.PhoneDialerToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; @@ -505,7 +505,7 @@ private void InitializeComponent() // WordPadToolStripMenuItem // this.WordPadToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.WordPadToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.WordPadToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.WordPadToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.WordPadToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("WordPadToolStripMenuItem.Image"))); this.WordPadToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; @@ -517,14 +517,14 @@ private void InitializeComponent() // StartUpToolStripMenuItem // this.StartUpToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.StartUpToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.StartUpToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.StartUpToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.StartUpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.AOLInternetFREETrialToolStripMenuItem, this.ATTWorldNetSignupToolStripMenuItem, this.SetupCompuServe30ToolStripMenuItem, this.SetupWOWFromCompuServeToolStripMenuItem}); - this.StartUpToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicProgramItem; + this.StartUpToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicProgramItem; this.StartUpToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.StartUpToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.StartUpToolStripMenuItem.Name = "StartUpToolStripMenuItem"; @@ -534,7 +534,7 @@ private void InitializeComponent() // AOLInternetFREETrialToolStripMenuItem // this.AOLInternetFREETrialToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.AOLInternetFREETrialToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.AOLInternetFREETrialToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.AOLInternetFREETrialToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.AOLInternetFREETrialToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.AOLInternetFREETrialToolStripMenuItem.Name = "AOLInternetFREETrialToolStripMenuItem"; @@ -544,7 +544,7 @@ private void InitializeComponent() // ATTWorldNetSignupToolStripMenuItem // this.ATTWorldNetSignupToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.ATTWorldNetSignupToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.ATTWorldNetSignupToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.ATTWorldNetSignupToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.ATTWorldNetSignupToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.ATTWorldNetSignupToolStripMenuItem.Name = "ATTWorldNetSignupToolStripMenuItem"; @@ -554,7 +554,7 @@ private void InitializeComponent() // SetupCompuServe30ToolStripMenuItem // this.SetupCompuServe30ToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.SetupCompuServe30ToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.SetupCompuServe30ToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.SetupCompuServe30ToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.SetupCompuServe30ToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.SetupCompuServe30ToolStripMenuItem.Name = "SetupCompuServe30ToolStripMenuItem"; @@ -564,7 +564,7 @@ private void InitializeComponent() // SetupWOWFromCompuServeToolStripMenuItem // this.SetupWOWFromCompuServeToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.SetupWOWFromCompuServeToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.SetupWOWFromCompuServeToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.SetupWOWFromCompuServeToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.SetupWOWFromCompuServeToolStripMenuItem.Name = "SetupWOWFromCompuServeToolStripMenuItem"; this.SetupWOWFromCompuServeToolStripMenuItem.Size = new System.Drawing.Size(241, 22); @@ -573,11 +573,11 @@ private void InitializeComponent() // MSDOSPromptToolStripMenuItem // this.MSDOSPromptToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.MSDOSPromptToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.MSDOSPromptToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.MSDOSPromptToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.MSDOSPromptToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.EmptyToolStripMenuItem}); - this.MSDOSPromptToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicProgramItem; + this.MSDOSPromptToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicProgramItem; this.MSDOSPromptToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.MSDOSPromptToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.MSDOSPromptToolStripMenuItem.Name = "MSDOSPromptToolStripMenuItem"; @@ -587,7 +587,7 @@ private void InitializeComponent() // EmptyToolStripMenuItem // this.EmptyToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.EmptyToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.EmptyToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.EmptyToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.EmptyToolStripMenuItem.Name = "EmptyToolStripMenuItem"; this.EmptyToolStripMenuItem.Size = new System.Drawing.Size(116, 22); @@ -596,7 +596,7 @@ private void InitializeComponent() // InternetExplorerToolStripMenuItem // this.InternetExplorerToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.InternetExplorerToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.InternetExplorerToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.InternetExplorerToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.InternetExplorerToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("InternetExplorerToolStripMenuItem.Image"))); this.InternetExplorerToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; @@ -609,7 +609,7 @@ private void InitializeComponent() // MSDOSPromptToolStripMenuItem1 // this.MSDOSPromptToolStripMenuItem1.BackColor = System.Drawing.Color.Silver; - this.MSDOSPromptToolStripMenuItem1.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.MSDOSPromptToolStripMenuItem1.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.MSDOSPromptToolStripMenuItem1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.MSDOSPromptToolStripMenuItem1.Image = ((System.Drawing.Image)(resources.GetObject("MSDOSPromptToolStripMenuItem1.Image"))); this.MSDOSPromptToolStripMenuItem1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; @@ -622,7 +622,7 @@ private void InitializeComponent() // OutlookExpressToolStripMenuItem // this.OutlookExpressToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.OutlookExpressToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.OutlookExpressToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.OutlookExpressToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.OutlookExpressToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("OutlookExpressToolStripMenuItem.Image"))); this.OutlookExpressToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; @@ -634,7 +634,7 @@ private void InitializeComponent() // WindowsExplorerToolStripMenuItem1 // this.WindowsExplorerToolStripMenuItem1.BackColor = System.Drawing.Color.Silver; - this.WindowsExplorerToolStripMenuItem1.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.WindowsExplorerToolStripMenuItem1.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.WindowsExplorerToolStripMenuItem1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.WindowsExplorerToolStripMenuItem1.Image = ((System.Drawing.Image)(resources.GetObject("WindowsExplorerToolStripMenuItem1.Image"))); this.WindowsExplorerToolStripMenuItem1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; @@ -647,7 +647,7 @@ private void InitializeComponent() // GuessTheNumberToolStripMenuItem // this.GuessTheNumberToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.GuessTheNumberToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.GuessTheNumberToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.GuessTheNumberToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.GuessTheNumberToolStripMenuItem.Name = "GuessTheNumberToolStripMenuItem"; this.GuessTheNumberToolStripMenuItem.Size = new System.Drawing.Size(181, 28); @@ -657,7 +657,7 @@ private void InitializeComponent() // StartRunnerToolStripMenuItem // this.StartRunnerToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.StartRunnerToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.StartRunnerToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.StartRunnerToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.StartRunnerToolStripMenuItem.Name = "StartRunnerToolStripMenuItem"; this.StartRunnerToolStripMenuItem.Size = new System.Drawing.Size(181, 28); @@ -667,7 +667,7 @@ private void InitializeComponent() // ErrorBlasterToolStripMenuItem // this.ErrorBlasterToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.ErrorBlasterToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.ErrorBlasterToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.ErrorBlasterToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.ErrorBlasterToolStripMenuItem.Name = "ErrorBlasterToolStripMenuItem"; this.ErrorBlasterToolStripMenuItem.Size = new System.Drawing.Size(181, 28); @@ -677,7 +677,7 @@ private void InitializeComponent() // SkindowsToolStripMenuItem // this.SkindowsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.SkindowsToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.SkindowsToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.SkindowsToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.SkindowsToolStripMenuItem.Name = "SkindowsToolStripMenuItem"; this.SkindowsToolStripMenuItem.Size = new System.Drawing.Size(181, 28); @@ -687,7 +687,7 @@ private void InitializeComponent() // WebChatToolStripMenuItem // this.WebChatToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.WebChatToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.WebChatToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.WebChatToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.WebChatToolStripMenuItem.Name = "WebChatToolStripMenuItem"; this.WebChatToolStripMenuItem.Size = new System.Drawing.Size(181, 28); @@ -697,7 +697,7 @@ private void InitializeComponent() // TimeDistorterToolStripMenuItem // this.TimeDistorterToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.TimeDistorterToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.TimeDistorterToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.TimeDistorterToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.TimeDistorterToolStripMenuItem.Name = "TimeDistorterToolStripMenuItem"; this.TimeDistorterToolStripMenuItem.Size = new System.Drawing.Size(181, 28); @@ -707,12 +707,12 @@ private void InitializeComponent() // DocumentsToolStripMenuItem // this.DocumentsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.DocumentsToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.DocumentsToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.DocumentsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.downloaderTestToolStripMenuItem, this.installerTestToolStripMenuItem, this.storyTest1ToolStripMenuItem}); - this.DocumentsToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicDocuments; + this.DocumentsToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicDocuments; this.DocumentsToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.DocumentsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.DocumentsToolStripMenuItem.Name = "DocumentsToolStripMenuItem"; @@ -740,7 +740,7 @@ private void InitializeComponent() // // storyTest1ToolStripMenuItem // - this.storyTest1ToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.storyTest1ToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.storyTest1ToolStripMenuItem.Name = "storyTest1ToolStripMenuItem"; this.storyTest1ToolStripMenuItem.Size = new System.Drawing.Size(159, 22); this.storyTest1ToolStripMenuItem.Text = "StoryTest1"; @@ -753,7 +753,7 @@ private void InitializeComponent() this.ControlPanelToolStripMenuItem, this.PrintersToolStripMenuItem, this.TaskbarToolStripMenuItem}); - this.SettingsToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicSettings; + this.SettingsToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicSettings; this.SettingsToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.SettingsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.SettingsToolStripMenuItem.Name = "SettingsToolStripMenuItem"; @@ -797,7 +797,7 @@ private void InitializeComponent() this.ComputerToolStripMenuItem, this.OnTheInternetToolStripMenuItem, this.PeopleToolStripMenuItem}); - this.FindToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicFind; + this.FindToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicFind; this.FindToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.FindToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.FindToolStripMenuItem.Name = "FindToolStripMenuItem"; @@ -845,7 +845,7 @@ private void InitializeComponent() // HelpToolStripMenuItem // this.HelpToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.HelpToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicHelp; + this.HelpToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicHelp; this.HelpToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.HelpToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.HelpToolStripMenuItem.Name = "HelpToolStripMenuItem"; @@ -857,7 +857,7 @@ private void InitializeComponent() // RunToolStripMenuItem // this.RunToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.RunToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicRun; + this.RunToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicRun; this.RunToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.RunToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.RunToolStripMenuItem.Name = "RunToolStripMenuItem"; @@ -869,7 +869,7 @@ private void InitializeComponent() // SuspendToolStripMenuItem // this.SuspendToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.SuspendToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicSuspend; + this.SuspendToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicSuspend; this.SuspendToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.SuspendToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.SuspendToolStripMenuItem.Name = "SuspendToolStripMenuItem"; @@ -880,7 +880,7 @@ private void InitializeComponent() // ShutdownToolStripMenuItem // this.ShutdownToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.ShutdownToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicShutdown; + this.ShutdownToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicShutdown; this.ShutdownToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.ShutdownToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.ShutdownToolStripMenuItem.Name = "ShutdownToolStripMenuItem"; @@ -900,7 +900,7 @@ private void InitializeComponent() // osimage // this.osimage.Dock = System.Windows.Forms.DockStyle.Fill; - this.osimage.Image = global::TimeHACK.Properties.Resources.Win98SideBar; + this.osimage.Image = global::Histacom2.Properties.Resources.Win98SideBar; this.osimage.Location = new System.Drawing.Point(0, 0); this.osimage.Name = "osimage"; this.osimage.Size = new System.Drawing.Size(22, 297); @@ -1017,7 +1017,7 @@ private void InitializeComponent() this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Name = "Windows98"; this.Tag = "ignoreFormOnTaskbar"; - this.Text = "TimeHACKDesktop"; + this.Text = "Histacom2Desktop"; this.Load += new System.EventHandler(this.Desktop_Load); this.panel1.ResumeLayout(false); this.taskbar.ResumeLayout(false); diff --git a/TimeHACK.Main/OS/Win98/Win98.cs b/Histacom2/OS/Win98/Win98.cs similarity index 97% rename from TimeHACK.Main/OS/Win98/Win98.cs rename to Histacom2/OS/Win98/Win98.cs index 008be03..3f75af7 100644 --- a/TimeHACK.Main/OS/Win98/Win98.cs +++ b/Histacom2/OS/Win98/Win98.cs @@ -4,13 +4,13 @@ using System.IO; using System.Media; using System.Windows.Forms; -using TimeHACK.Engine; -using TimeHACK.Engine.Template; -using TimeHACK.Engine.Template.Taskbars; -using TimeHACK.OS.Win95.Win95Apps; -using TimeHACK.OS.Win95.Win95Apps.Story; -using static TimeHACK.Engine.SaveSystem; -namespace TimeHACK.OS.Win98 +using Histacom2.Engine; +using Histacom2.Engine.Template; +using Histacom2.Engine.Template.Taskbars; +using Histacom2.OS.Win95.Win95Apps; +using Histacom2.OS.Win95.Win95Apps.Story; +using static Histacom2.Engine.SaveSystem; +namespace Histacom2.OS.Win98 { public partial class Windows98 : Form { @@ -92,7 +92,7 @@ private void Desktop_Load(object sender, EventArgs e) // Check for and set VM Mode if (this.FormBorderStyle != FormBorderStyle.None) { - this.Text = "TimeHACK - VM Mode"; + this.Text = "Histacom2 - VM Mode"; } // Start the ClockTimer @@ -328,7 +328,7 @@ private void desktopicons_DoubleClick(object sender, EventArgs e) private void infoboxTestToolStripMenuItem_Click(object sender, EventArgs e) { - WinClassic app = wm.StartInfobox95("AShifter's Infobox", "This is the very first TimeHACK Infobox. It's really easy to call, too! \n Just use wm.startInfobox95(string title, string text, InfoboxType type, InfoboxButtons btns)!", InfoboxType.Info, InfoboxButtons.OK); + WinClassic app = wm.StartInfobox95("AShifter's Infobox", "This is the very first Histacom2 Infobox. It's really easy to call, too! \n Just use wm.startInfobox95(string title, string text, InfoboxType type, InfoboxButtons btns)!", InfoboxType.Info, InfoboxButtons.OK); app.BringToFront(); startmenu.Hide(); @@ -460,7 +460,7 @@ private void PropertiesToolStripMenuItem1_Click(object sender, EventArgs e) private void TimeDistorterToolStripMenuItem_Click(object sender, EventArgs e) { - //distort = new TimeHACKWinClassicTimeDistorter("1998", "1999", 150, Hack2.StartObjective); + //distort = new Histacom2WinClassicTimeDistorter("1998", "1999", 150, Hack2.StartObjective); //WinClassic app = wm.StartWin95(distort, "Time Distorter", null, false, true); //AddTaskBarItem(app, app.Tag.ToString(), "Time Distorter", null); //app.BringToFront(); diff --git a/TimeHACK.Main/OS/Win98/Win98.resx b/Histacom2/OS/Win98/Win98.resx similarity index 100% rename from TimeHACK.Main/OS/Win98/Win98.resx rename to Histacom2/OS/Win98/Win98.resx diff --git a/TimeHACK.Main/OS/Win98/Win98Apps/AddressBook/FRMWinClassicAddressBookNewContact.Designer.cs b/Histacom2/OS/Win98/Win98Apps/AddressBook/FRMWinClassicAddressBookNewContact.Designer.cs similarity index 99% rename from TimeHACK.Main/OS/Win98/Win98Apps/AddressBook/FRMWinClassicAddressBookNewContact.Designer.cs rename to Histacom2/OS/Win98/Win98Apps/AddressBook/FRMWinClassicAddressBookNewContact.Designer.cs index 7eb3196..5ebc227 100644 --- a/TimeHACK.Main/OS/Win98/Win98Apps/AddressBook/FRMWinClassicAddressBookNewContact.Designer.cs +++ b/Histacom2/OS/Win98/Win98Apps/AddressBook/FRMWinClassicAddressBookNewContact.Designer.cs @@ -1,4 +1,4 @@ -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { partial class FRMWinClassicAddressBookNewContact { diff --git a/TimeHACK.Main/OS/Win98/Win98Apps/AddressBook/FRMWinClassicAddressBookNewContact.cs b/Histacom2/OS/Win98/Win98Apps/AddressBook/FRMWinClassicAddressBookNewContact.cs similarity index 98% rename from TimeHACK.Main/OS/Win98/Win98Apps/AddressBook/FRMWinClassicAddressBookNewContact.cs rename to Histacom2/OS/Win98/Win98Apps/AddressBook/FRMWinClassicAddressBookNewContact.cs index 482d54c..9facd7b 100644 --- a/TimeHACK.Main/OS/Win98/Win98Apps/AddressBook/FRMWinClassicAddressBookNewContact.cs +++ b/Histacom2/OS/Win98/Win98Apps/AddressBook/FRMWinClassicAddressBookNewContact.cs @@ -9,7 +9,7 @@ using System.Windows.Forms; -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { public partial class FRMWinClassicAddressBookNewContact : UserControl { diff --git a/TimeHACK.Main/OS/Win98/Win98Apps/AddressBook/FRMWinClassicAddressBookNewFolder.resx b/Histacom2/OS/Win98/Win98Apps/AddressBook/FRMWinClassicAddressBookNewContact.resx similarity index 100% rename from TimeHACK.Main/OS/Win98/Win98Apps/AddressBook/FRMWinClassicAddressBookNewFolder.resx rename to Histacom2/OS/Win98/Win98Apps/AddressBook/FRMWinClassicAddressBookNewContact.resx diff --git a/TimeHACK.Main/OS/Win98/Win98Apps/AddressBook/FRMWinClassicAddressBookNewFolder.Designer.cs b/Histacom2/OS/Win98/Win98Apps/AddressBook/FRMWinClassicAddressBookNewFolder.Designer.cs similarity index 98% rename from TimeHACK.Main/OS/Win98/Win98Apps/AddressBook/FRMWinClassicAddressBookNewFolder.Designer.cs rename to Histacom2/OS/Win98/Win98Apps/AddressBook/FRMWinClassicAddressBookNewFolder.Designer.cs index c7efcd0..3366e9a 100644 --- a/TimeHACK.Main/OS/Win98/Win98Apps/AddressBook/FRMWinClassicAddressBookNewFolder.Designer.cs +++ b/Histacom2/OS/Win98/Win98Apps/AddressBook/FRMWinClassicAddressBookNewFolder.Designer.cs @@ -1,4 +1,4 @@ -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { partial class FRMWinClassicAddressBookNewFolder { diff --git a/TimeHACK.Main/OS/Win98/Win98Apps/AddressBook/FRMWinClassicAddressBookNewFolder.cs b/Histacom2/OS/Win98/Win98Apps/AddressBook/FRMWinClassicAddressBookNewFolder.cs similarity index 94% rename from TimeHACK.Main/OS/Win98/Win98Apps/AddressBook/FRMWinClassicAddressBookNewFolder.cs rename to Histacom2/OS/Win98/Win98Apps/AddressBook/FRMWinClassicAddressBookNewFolder.cs index 705fd0d..014040b 100644 --- a/TimeHACK.Main/OS/Win98/Win98Apps/AddressBook/FRMWinClassicAddressBookNewFolder.cs +++ b/Histacom2/OS/Win98/Win98Apps/AddressBook/FRMWinClassicAddressBookNewFolder.cs @@ -8,7 +8,7 @@ using System.Threading.Tasks; using System.Windows.Forms; -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { public partial class FRMWinClassicAddressBookNewFolder : UserControl { diff --git a/TimeHACK.Main/SaveDialogs/LoadGameDialog.resx b/Histacom2/OS/Win98/Win98Apps/AddressBook/FRMWinClassicAddressBookNewFolder.resx similarity index 100% rename from TimeHACK.Main/SaveDialogs/LoadGameDialog.resx rename to Histacom2/OS/Win98/Win98Apps/AddressBook/FRMWinClassicAddressBookNewFolder.resx diff --git a/TimeHACK.Main/OS/Win98/Win98Apps/AddressBook/WinClassicAddressBook.Designer.cs b/Histacom2/OS/Win98/Win98Apps/AddressBook/WinClassicAddressBook.Designer.cs similarity index 98% rename from TimeHACK.Main/OS/Win98/Win98Apps/AddressBook/WinClassicAddressBook.Designer.cs rename to Histacom2/OS/Win98/Win98Apps/AddressBook/WinClassicAddressBook.Designer.cs index 201d159..cbe2600 100644 --- a/TimeHACK.Main/OS/Win98/Win98Apps/AddressBook/WinClassicAddressBook.Designer.cs +++ b/Histacom2/OS/Win98/Win98Apps/AddressBook/WinClassicAddressBook.Designer.cs @@ -1,4 +1,4 @@ -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { partial class WinClassicAddressBook { @@ -287,7 +287,7 @@ private void InitializeComponent() // toolProp // this.toolProp.BackColor = System.Drawing.Color.Transparent; - this.toolProp.Image = global::TimeHACK.Properties.Resources.WinClassicAddressBookPropertiesIcon; + this.toolProp.Image = global::Histacom2.Properties.Resources.WinClassicAddressBookPropertiesIcon; this.toolProp.Location = new System.Drawing.Point(65, 3); this.toolProp.Name = "toolProp"; this.toolProp.Size = new System.Drawing.Size(61, 39); @@ -298,7 +298,7 @@ private void InitializeComponent() // toolNew // this.toolNew.BackColor = System.Drawing.Color.Transparent; - this.toolNew.Image = global::TimeHACK.Properties.Resources.WinClassicAddressBookNewIcon; + this.toolNew.Image = global::Histacom2.Properties.Resources.WinClassicAddressBookNewIcon; this.toolNew.Location = new System.Drawing.Point(16, 4); this.toolNew.Name = "toolNew"; this.toolNew.Size = new System.Drawing.Size(43, 39); @@ -308,7 +308,7 @@ private void InitializeComponent() // toolDelete // this.toolDelete.BackColor = System.Drawing.Color.Transparent; - this.toolDelete.Image = global::TimeHACK.Properties.Resources.WinClassicAddressBookDeleteIcon; + this.toolDelete.Image = global::Histacom2.Properties.Resources.WinClassicAddressBookDeleteIcon; this.toolDelete.Location = new System.Drawing.Point(132, 3); this.toolDelete.Name = "toolDelete"; this.toolDelete.Size = new System.Drawing.Size(61, 39); diff --git a/TimeHACK.Main/OS/Win98/Win98Apps/AddressBook/WinClassicAddressBook.cs b/Histacom2/OS/Win98/Win98Apps/AddressBook/WinClassicAddressBook.cs similarity index 99% rename from TimeHACK.Main/OS/Win98/Win98Apps/AddressBook/WinClassicAddressBook.cs rename to Histacom2/OS/Win98/Win98Apps/AddressBook/WinClassicAddressBook.cs index 18cfcf9..e6f1176 100644 --- a/TimeHACK.Main/OS/Win98/Win98Apps/AddressBook/WinClassicAddressBook.cs +++ b/Histacom2/OS/Win98/Win98Apps/AddressBook/WinClassicAddressBook.cs @@ -7,10 +7,10 @@ using System.Text; using System.Threading.Tasks; using System.Windows.Forms; -using TimeHACK.Engine; -using TimeHACK.Engine.Template; +using Histacom2.Engine; +using Histacom2.Engine.Template; -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { public partial class WinClassicAddressBook : UserControl { diff --git a/TimeHACK.Main/OS/Win98/Win98Apps/AddressBook/WinClassicAddressBook.resx b/Histacom2/OS/Win98/Win98Apps/AddressBook/WinClassicAddressBook.resx similarity index 100% rename from TimeHACK.Main/OS/Win98/Win98Apps/AddressBook/WinClassicAddressBook.resx rename to Histacom2/OS/Win98/Win98Apps/AddressBook/WinClassicAddressBook.resx diff --git a/TimeHACK.Main/OS/Win98/Win98Apps/WinClassicWindowsExplorer.Designer.cs b/Histacom2/OS/Win98/Win98Apps/WinClassicWindowsExplorer.Designer.cs similarity index 99% rename from TimeHACK.Main/OS/Win98/Win98Apps/WinClassicWindowsExplorer.Designer.cs rename to Histacom2/OS/Win98/Win98Apps/WinClassicWindowsExplorer.Designer.cs index 16ee161..ff0f32d 100644 --- a/TimeHACK.Main/OS/Win98/Win98Apps/WinClassicWindowsExplorer.Designer.cs +++ b/Histacom2/OS/Win98/Win98Apps/WinClassicWindowsExplorer.Designer.cs @@ -1,4 +1,4 @@ -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { partial class WinClassicWindowsExplorer { @@ -125,7 +125,7 @@ private void InitializeComponent() // pnlInfo // this.pnlInfo.BackColor = System.Drawing.Color.White; - this.pnlInfo.BackgroundImage = global::TimeHACK.Properties.Resources.Win98WebBackground; + this.pnlInfo.BackgroundImage = global::Histacom2.Properties.Resources.Win98WebBackground; this.pnlInfo.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.pnlInfo.Controls.Add(this.pictureBox1); this.pnlInfo.Controls.Add(this.txtInfoTitle); diff --git a/TimeHACK.Main/OS/Win98/Win98Apps/WinClassicWindowsExplorer.cs b/Histacom2/OS/Win98/Win98Apps/WinClassicWindowsExplorer.cs similarity index 99% rename from TimeHACK.Main/OS/Win98/Win98Apps/WinClassicWindowsExplorer.cs rename to Histacom2/OS/Win98/Win98Apps/WinClassicWindowsExplorer.cs index f21a851..2d82f75 100644 --- a/TimeHACK.Main/OS/Win98/Win98Apps/WinClassicWindowsExplorer.cs +++ b/Histacom2/OS/Win98/Win98Apps/WinClassicWindowsExplorer.cs @@ -7,13 +7,13 @@ using System.Text; using System.Threading.Tasks; using System.Windows.Forms; -using static TimeHACK.Engine.SaveSystem; +using static Histacom2.Engine.SaveSystem; using System.IO; -using TimeHACK.Engine; +using Histacom2.Engine; using Newtonsoft.Json; -using TimeHACK.Engine.Template; +using Histacom2.Engine.Template; -namespace TimeHACK.OS.Win95.Win95Apps +namespace Histacom2.OS.Win95.Win95Apps { public partial class WinClassicWindowsExplorer : UserControl { diff --git a/TimeHACK.Main/OS/Win98/Win98Apps/WinClassicWindowsExplorer.resx b/Histacom2/OS/Win98/Win98Apps/WinClassicWindowsExplorer.resx similarity index 100% rename from TimeHACK.Main/OS/Win98/Win98Apps/WinClassicWindowsExplorer.resx rename to Histacom2/OS/Win98/Win98Apps/WinClassicWindowsExplorer.resx diff --git a/TimeHACK.Main/Program.cs b/Histacom2/Program.cs similarity index 90% rename from TimeHACK.Main/Program.cs rename to Histacom2/Program.cs index 258d6c4..f978b90 100644 --- a/TimeHACK.Main/Program.cs +++ b/Histacom2/Program.cs @@ -7,15 +7,15 @@ using Newtonsoft.Json.Linq; using System.Net; using Newtonsoft.Json; -using TimeHACK.OS; -using TimeHACK.OS.Win95; -using TimeHACK.OS.Win95.Win95Apps; -using TimeHACK.Engine; -using TimeHACK.Engine.Template; +using Histacom2.OS; +using Histacom2.OS.Win95; +using Histacom2.OS.Win95.Win95Apps; +using Histacom2.Engine; +using Histacom2.Engine.Template; using System.Drawing; -using TimeHACK.SaveDialogs; +using Histacom2.SaveDialogs; -namespace TimeHACK +namespace Histacom2 { static class Program { @@ -42,7 +42,7 @@ static void Main(string[] args) title = new TitleScreen(); - //TimeHACK.Engine.GameSave.SaveData MySaveData = new TimeHACK.Engine.GameSave.SaveData() + //Histacom2.Engine.GameSave.SaveData MySaveData = new Histacom2.Engine.GameSave.SaveData() //{ // OS = 60, // MystringList = new List @@ -57,7 +57,7 @@ static void Main(string[] args) //MySaveData.OS = 40; //MessageBox.Show(MySaveData.OS.ToString()); - //MySaveData = (TimeHACK.Engine.GameSave.SaveData)JsonConvert.DeserializeObject(TheJSON, MySaveData.GetType()); + //MySaveData = (Histacom2.Engine.GameSave.SaveData)JsonConvert.DeserializeObject(TheJSON, MySaveData.GetType()); //MessageBox.Show(MySaveData.OS.ToString()); Engine.SaveSystem.troubleshooter = new SaveFileTroubleShooter(); diff --git a/TimeHACK.Main/Properties/AssemblyInfo.cs b/Histacom2/Properties/AssemblyInfo.cs similarity index 82% rename from TimeHACK.Main/Properties/AssemblyInfo.cs rename to Histacom2/Properties/AssemblyInfo.cs index 024f418..387ec5b 100644 --- a/TimeHACK.Main/Properties/AssemblyInfo.cs +++ b/Histacom2/Properties/AssemblyInfo.cs @@ -6,12 +6,12 @@ // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. -[assembly: AssemblyTitle("TimeHACK")] +[assembly: AssemblyTitle("Histacom2")] [assembly: AssemblyDescription("Revival of the original hacking simulator!")] [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("TimeHACKDevs")] -[assembly: AssemblyProduct("TimeHACK")] -[assembly: AssemblyCopyright("Copyright © TimeHACKDevs 2017")] +[assembly: AssemblyCompany("Histacom2Devs")] +[assembly: AssemblyProduct("Histacom2")] +[assembly: AssemblyCopyright("Copyright © Histacom2Devs 2017")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] @@ -33,7 +33,7 @@ // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.3.0")] -[assembly: AssemblyFileVersion("1.0.3.0")] +[assembly: AssemblyVersion("2.0.0.3")] +[assembly: AssemblyFileVersion("2.0.0.3")] [assembly: NeutralResourcesLanguage("en-US")] diff --git a/TimeHACK.Main/Properties/Resources.resx b/Histacom2/Properties/Resources.resx similarity index 70% rename from TimeHACK.Main/Properties/Resources.resx rename to Histacom2/Properties/Resources.resx index 3dfc2cd..3631718 100644 --- a/TimeHACK.Main/Properties/Resources.resx +++ b/Histacom2/Properties/Resources.resx @@ -121,8 +121,8 @@ ..\Resources\WinClassic\WinClassicDisplayExample.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a - - ..\resources\titlescreen\timehack_logo.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + ..\resources\titlescreen\Histacom2_logo.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a ..\Resources\WinClassicAbout95.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a @@ -825,4 +825,1067 @@ ..\Resources\IE3\IE3_StopHover.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + { + "messages": [ + { + "user": "System", + "delay": 5000, + "message": "SkyHigh has joined the chat.", + "special": "addsh", + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 5000, + "message": "damn", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 6000, + "message": "I thought my friend rain49 was going to be on...", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 6000, + "message": "hmm... how about we play a game while we wait for my friend to come?", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 5000, + "message": "alright, go ahead and guess what my name is!", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 1000, + "message": "ill make 2 buttons pop up, you click the one you want to guess", + "special": "nameguess", + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 5000, + "message": "actually, if ya dont wanna do that its fine, i guess", + "special": null, + "userchat": true + }, + { + "user": "System", + "delay": 3000, + "message": "rain49 has joined the chat.", + "special": "addrain", + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 3000, + "message": "hey rain", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 3000, + "message": "ive sort of been waiting", + "special": null, + "userchat": true + }, + { + "user": "rain49", + "delay": 4000, + "message": "sorry man", + "special": null, + "userchat": true + }, + { + "user": "rain49", + "delay": 4000, + "message": "it took a while for this to load", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 4000, + "message": "anyway... let's get to it", + "special": null, + "userchat": true + }, + { + "user": "rain49", + "delay": 5000, + "message": "wait, who's this @user guy?", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 2500, + "message": "oh, he's someone who just came on. doesnt seem to talk much", + "special": null, + "userchat": true + }, + { + "user": "rain49", + "delay": 5000, + "message": "ah ok", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 4500, + "message": "i would remove him from this chat but i cant", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 3000, + "message": "i dont think he should know about, well, ya know..", + "special": null, + "userchat": true + }, + { + "user": "rain49", + "delay": 5000, + "message": "right, that", + "special": null, + "userchat": true + }, + { + "user": "rain49", + "delay": 3500, + "message": "since he's here should we just tell him?", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 2500, + "message": "well i suppose we have to", + "special": null, + "userchat": true + }, + { + "user": "rain49", + "delay": 5000, + "message": "ok then", + "special": null, + "userchat": true + }, + { + "user": "rain49", + "delay": 5500, + "message": "so @user, we are going to break the chat rules here..", + "special": null, + "userchat": true + }, + { + "user": "rain49", + "delay": 3000, + "message": "so if you dont wanna get banned i recommend you just logout now", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 2500, + "message": "let's give him some time", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 9000, + "message": "to leave the chat", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 3500, + "message": "...", + "special": null, + "userchat": true + }, + { + "user": "rain49", + "delay": 3000, + "message": "i guess he wants to risk it", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 3000, + "message": "tell him what we will do", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 2000, + "message": "you haven't said that yet", + "special": null, + "userchat": true + }, + { + "user": "rain49", + "delay": 6000, + "message": "right, right", + "special": null, + "userchat": true + }, + { + "user": "rain49", + "delay": 4000, + "message": "so there's this really cool program on the 12padams website called skindows95", + "special": null, + "userchat": true + }, + { + "user": "rain49", + "delay": 5500, + "message": "normally youd have to pay for it", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 4000, + "message": "Yeah... it's really hard to even get to the buy button - stupid", + "special": null, + "userchat": true + }, + { + "user": "rain49", + "delay": 6500, + "message": "But.. i have a copy i can send to you and skyhigh", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 2000, + "message": "Yeah... kind of not pirating because he managed to steal a copy from someone else who bought it", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 1500, + "message": "So hey...", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 1500, + "message": "You haven't left", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 2500, + "message": "Send it now...", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 1500, + "message": "I really want to skin my system", + "special": null, + "userchat": true + }, + { + "user": "rain49", + "delay": 2500, + "message": "sending!", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 6000, + "message": "thx man", + "special": null, + "userchat": true + }, + { + "user": "System", + "delay": 3000, + "message": "File \"skin95setup.exe\" has been uploaded.", + "special": "addfile", + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 4000, + "message": "yay!", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 5000, + "message": "im downloading it now", + "special": null, + "userchat": true + }, + { + "user": "rain49", + "delay": 3500, + "message": "and @user, why dont you go and download it too?", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 4000, + "message": "i think he already is ;)", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 2000, + "message": "OH THIS IS SO COOL", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 3000, + "message": "lemme send a screenshot", + "special": null, + "userchat": true + }, + { + "user": "System", + "delay": 1500, + "message": "12padams has joined the chat.", + "special": "addpadams", + "userchat": true + }, + { + "user": "rain49", + "delay": 500, + "message": "CRAP", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 1000, + "message": "ah NO WE ARE DED", + "special": null, + "userchat": true + }, + { + "user": "rain49", + "delay": 2500, + "message": "quick guys, LOGOUT!", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 1000, + "message": "i cant! the close button isnt working!", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 2500, + "message": "caught ya pirating my software!", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 1500, + "message": "now that i have you, lets have some fun, shall we?", + "special": null, + "userchat": true + }, + { + "user": "rain49", + "delay": 1500, + "message": "guys, shutdown the pc from start!", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 2000, + "message": "not so fast!", + "special": "nostart", + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 2500, + "message": "where did the start button go?", + "special": null, + "userchat": true + }, + { + "user": "rain49", + "delay": 2000, + "message": "12padams disabled it, CRAP!", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 3500, + "message": "feeling scared yet?", + "special": null, + "userchat": true + }, + { + "user": "rain49", + "delay": 3500, + "message": "no, cuz i can just unplug my computer!", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 3500, + "message": "i wouldnt do that if i were you..", + "special": null, + "userchat": true + }, + { + "user": "rain49", + "delay": 1000, + "message": "oh yeah? just watch this!", + "special": null, + "userchat": true + }, + { + "user": "System", + "delay": 1500, + "message": "rain49 has left the chat.", + "special": "removerain", + "userchat": true + }, + { + "user": "12padams", + "delay": 3500, + "message": "all your computers are infected with a virus that makes them unable to boot.", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 2500, + "message": "and now, theres only two, SkyHigh, and @user.", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 5000, + "message": "please just let us go!", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 2500, + "message": "you downloaded pirated software, so you both shall be punished!", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 5000, + "message": "dont worry @user, ill look online for help!", + "special": "iconsded", + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 3000, + "message": "why cant i open anything?", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 4500, + "message": "i told you that you are going to be punished.", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 3000, + "message": "your computers have a lethal virus that i call \"Win9X.Plague\"", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 6000, + "message": "what does it do?", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 3000, + "message": "well, it disables your computers functions one by one, slowly killing it", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 3000, + "message": "anyways, time to let it do its work!", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 2500, + "message": "no please dont, just remove this virus!", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 6000, + "message": "remove the virus, you say?", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 3500, + "message": "well the whole of windows 95 is a virus! now where do i begin...", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 4500, + "message": "i see a taskbar at the bottom of the screen.", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 4000, + "message": "the taskbar was made by microsoft making its debut in windows 95", + "special": "taskbarded", + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 6000, + "message": "hey! give me back my taskbar!", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 4000, + "message": "you wanted me to remove viruses, didnt you? the taskbar was infected since it had no start button", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 1500, + "message": "and your icons are infected too so you dont need them", + "special": "iconsgone", + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 3000, + "message": "please stop!", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 4000, + "message": "you want to know how to stop this?", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 3000, + "message": "please just let us go and forget this happened!", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 9000, + "message": "well first, i need your full attention.", + "special": "bigtext", + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 3500, + "message": "please this is enough! you've done everything to convince me that I won't illegally download your software again!", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 5000, + "message": "i've done everything? no, what about this?", + "special": "notopbar", + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 5000, + "message": "damn it! he removed the buttons at the top so we cant get out...", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 3000, + "message": "please just STOP! me and @user didn't even upload the file!", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 5000, + "message": "rain uploaded it, not us!", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 4000, + "message": "and do you see him here now?", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 2000, + "message": "no, you got rid of him!", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 5000, + "message": "exactly.", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 5000, + "message": "speaking of, i need to remove that file which has been sitting here all this time!", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 3000, + "message": "there. now i can deal with you two...", + "special": "filepoof", + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 5000, + "message": "STOP PLEASE!!", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 3000, + "message": "stop? why you have been able to stop this whole time! just turn off your computer!", + "special": null, + "userchat": true + }, + { + "user": "SkyHigh", + "delay": 5000, + "message": "but i cant!", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 1500, + "message": "do you not know how? well then, let me do it for you.", + "special": null, + "userchat": true + }, + { + "user": "System", + "delay": 2500, + "message": "SkyHigh has left the chat.", + "special": "removesky", + "userchat": true + }, + { + "user": "12padams", + "delay": 3000, + "message": "now, we just have @user...", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 3500, + "message": "hmm, i dont remember you saying much", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 5000, + "message": "well, since you dont talk, you wont need this", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 4000, + "message": "you probably want to say \"WHY CANT I TALK!!1!\"", + "special": "notype", + "userchat": true + }, + { + "user": "12padams", + "delay": 5000, + "message": "but you cant, and i bet you dont know how", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 4000, + "message": "now lets see... it appears youre running windows 95 which you only got a week ago", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 5000, + "message": "so you must be new to computers", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 3000, + "message": "this is cool! i get to punish you, AND i get to teach you about computer history!", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 4000, + "message": "well, let us go back to 1982..", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 2500, + "message": "back then, we didnt have labels, so ill remove those...", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 4000, + "message": "", + "special": ".labelgone", + "userchat": false + }, + { + "user": "12padams", + "delay": 4000, + "message": "also, we didnt have wallpapers, or even color for that matter", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 3000, + "message": "hmm, this is going to be tricky..", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 3000, + "message": "i hope youre not scared of the dark!", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 4000, + "message": "", + "special": ".blackout", + "userchat": false + }, + { + "user": "12padams", + "delay": 3000, + "message": "and, we didnt even have sound back then!", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 6000, + "message": "so now, the sound is gone.", + "special": "nosound", + "userchat": true + }, + { + "user": "12padams", + "delay": 3500, + "message": "i think i almost got your computer converted, early 1980s should be enough of a punishment", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 3000, + "message": "but there are still quite a few things missing...", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 2000, + "message": "for example, the text needs to be fullscreen.", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 4000, + "message": "", + "special": ".fulltext", + "userchat": false + }, + { + "user": "12padams", + "delay": 4000, + "message": "and, theres also the scrollbar, which didnt exist back then..", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 3000, + "message": "this looks great! i really should add this to skindows 98..", + "special": "noscroll", + "userchat": true + }, + { + "user": "12padams", + "delay": 3000, + "message": "oh dear, this is embarassing..", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 5000, + "message": "i forgot to remove the mouse!", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 3000, + "message": "well then, enjoy it while you can, because im going to remove it", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 1000, + "message": "removing in 10", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 1000, + "message": "9", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 1000, + "message": "8", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 1000, + "message": "7", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 1000, + "message": "6", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 1000, + "message": "5", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 1000, + "message": "4", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 1000, + "message": "3", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 1000, + "message": "2", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 1000, + "message": "1", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 5000, + "message": "goodbye mouse!", + "special": "nomouse", + "userchat": true + }, + { + "user": "12padams", + "delay": 6000, + "message": "ok, now i gotta think about what to do next.", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 5000, + "message": "oh! you need to type commands in ms-dos!", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 5000, + "message": "so for once i am giving you a feature..", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 4000, + "message": "there, you can type. happy now?", + "special": "type", + "userchat": true + }, + { + "user": "12padams", + "delay": 5500, + "message": "oh, im being too kind. i have to go now.", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 5000, + "message": "you are using ms-dos, which is incompatible with webchat! so you will be disconnected.", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 5000, + "message": "i just have to do one last thing..", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 5000, + "message": "in dos, the font is more pixelly. ill just change that real quick.", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 5000, + "message": "there we go.", + "special": "pixel", + "userchat": true + }, + { + "user": "12padams", + "delay": 5000, + "message": "i hope you enjoyed learning about computing in 1982.", + "special": null, + "userchat": true + }, + { + "user": "12padams", + "delay": 5000, + "message": "and let me remind you... MS-DOS IS USELESS! NEXT TIME, DONT PIRATE SOFTWARE!", + "special": null, + "userchat": true + } + ] +} + \ No newline at end of file diff --git a/TimeHACK.Main/Properties/Resources.Designer.cs b/Histacom2/Properties/Resources1.Designer.cs similarity index 82% rename from TimeHACK.Main/Properties/Resources.Designer.cs rename to Histacom2/Properties/Resources1.Designer.cs index 1ea1211..63d2917 100644 --- a/TimeHACK.Main/Properties/Resources.Designer.cs +++ b/Histacom2/Properties/Resources1.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace TimeHACK.Properties { +namespace Histacom2.Properties { using System; @@ -22,7 +22,7 @@ namespace TimeHACK.Properties { [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class Resources { + public class Resources { private static global::System.Resources.ResourceManager resourceMan; @@ -36,10 +36,10 @@ internal Resources() { /// Returns the cached ResourceManager instance used by this class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Resources.ResourceManager ResourceManager { + public static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { - global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("TimeHACK.Properties.Resources", typeof(Resources).Assembly); + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Histacom2.Properties.Resources", typeof(Resources).Assembly); resourceMan = temp; } return resourceMan; @@ -51,7 +51,7 @@ internal Resources() { /// resource lookups using this strongly typed resource class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Globalization.CultureInfo Culture { + public static global::System.Globalization.CultureInfo Culture { get { return resourceCulture; } @@ -63,7 +63,7 @@ internal Resources() { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap _16Color { + public static System.Drawing.Bitmap _16Color { get { object obj = ResourceManager.GetObject("_16Color", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -73,7 +73,7 @@ internal static System.Drawing.Bitmap _16Color { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap _256Color { + public static System.Drawing.Bitmap _256Color { get { object obj = ResourceManager.GetObject("_256Color", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -83,7 +83,7 @@ internal static System.Drawing.Bitmap _256Color { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap AchievementMines { + public static System.Drawing.Bitmap AchievementMines { get { object obj = ResourceManager.GetObject("AchievementMines", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -93,7 +93,7 @@ internal static System.Drawing.Bitmap AchievementMines { /// /// Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream. /// - internal static System.IO.UnmanagedMemoryStream AIMbuddyjoin { + public static System.IO.UnmanagedMemoryStream AIMbuddyjoin { get { return ResourceManager.GetStream("AIMbuddyjoin", resourceCulture); } @@ -102,7 +102,7 @@ internal static System.IO.UnmanagedMemoryStream AIMbuddyjoin { /// /// Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream. /// - internal static System.IO.UnmanagedMemoryStream AIMbuddyleave { + public static System.IO.UnmanagedMemoryStream AIMbuddyleave { get { return ResourceManager.GetStream("AIMbuddyleave", resourceCulture); } @@ -111,7 +111,7 @@ internal static System.IO.UnmanagedMemoryStream AIMbuddyleave { /// /// Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream. /// - internal static System.IO.UnmanagedMemoryStream AIMfile { + public static System.IO.UnmanagedMemoryStream AIMfile { get { return ResourceManager.GetStream("AIMfile", resourceCulture); } @@ -120,7 +120,7 @@ internal static System.IO.UnmanagedMemoryStream AIMfile { /// /// Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream. /// - internal static System.IO.UnmanagedMemoryStream AIMmessagereceived { + public static System.IO.UnmanagedMemoryStream AIMmessagereceived { get { return ResourceManager.GetStream("AIMmessagereceived", resourceCulture); } @@ -129,7 +129,7 @@ internal static System.IO.UnmanagedMemoryStream AIMmessagereceived { /// /// Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream. /// - internal static System.IO.UnmanagedMemoryStream AIMmessagesent { + public static System.IO.UnmanagedMemoryStream AIMmessagesent { get { return ResourceManager.GetStream("AIMmessagesent", resourceCulture); } @@ -138,7 +138,7 @@ internal static System.IO.UnmanagedMemoryStream AIMmessagesent { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap ButtonPattern { + public static System.Drawing.Bitmap ButtonPattern { get { object obj = ResourceManager.GetObject("ButtonPattern", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -148,7 +148,7 @@ internal static System.Drawing.Bitmap ButtonPattern { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap DCTheme_BG { + public static System.Drawing.Bitmap DCTheme_BG { get { object obj = ResourceManager.GetObject("DCTheme_BG", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -158,7 +158,7 @@ internal static System.Drawing.Bitmap DCTheme_BG { /// /// Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream. /// - internal static System.IO.UnmanagedMemoryStream distort1 { + public static System.IO.UnmanagedMemoryStream distort1 { get { return ResourceManager.GetStream("distort1", resourceCulture); } @@ -167,7 +167,7 @@ internal static System.IO.UnmanagedMemoryStream distort1 { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap EndingDestruction { + public static System.Drawing.Bitmap EndingDestruction { get { object obj = ResourceManager.GetObject("EndingDestruction", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -177,7 +177,7 @@ internal static System.Drawing.Bitmap EndingDestruction { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap EndingPiracy { + public static System.Drawing.Bitmap EndingPiracy { get { object obj = ResourceManager.GetObject("EndingPiracy", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -187,7 +187,7 @@ internal static System.Drawing.Bitmap EndingPiracy { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap google { + public static System.Drawing.Bitmap google { get { object obj = ResourceManager.GetObject("google", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -197,7 +197,7 @@ internal static System.Drawing.Bitmap google { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap GTN95_Check { + public static System.Drawing.Bitmap GTN95_Check { get { object obj = ResourceManager.GetObject("GTN95_Check", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -207,7 +207,7 @@ internal static System.Drawing.Bitmap GTN95_Check { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap GTN95_CheckClicked { + public static System.Drawing.Bitmap GTN95_CheckClicked { get { object obj = ResourceManager.GetObject("GTN95_CheckClicked", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -217,7 +217,7 @@ internal static System.Drawing.Bitmap GTN95_CheckClicked { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap GTN95_Higher { + public static System.Drawing.Bitmap GTN95_Higher { get { object obj = ResourceManager.GetObject("GTN95_Higher", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -227,7 +227,7 @@ internal static System.Drawing.Bitmap GTN95_Higher { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap GTN95_Restart { + public static System.Drawing.Bitmap GTN95_Restart { get { object obj = ResourceManager.GetObject("GTN95_Restart", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -237,17 +237,27 @@ internal static System.Drawing.Bitmap GTN95_Restart { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap GTN95_RestartClicked { + public static System.Drawing.Bitmap GTN95_RestartClicked { get { object obj = ResourceManager.GetObject("GTN95_RestartClicked", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + public static System.Drawing.Bitmap Histacom2_Logo { + get { + object obj = ResourceManager.GetObject("Histacom2_Logo", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + /// /// Looks up a localized resource of type System.Drawing.Icon similar to (Icon). /// - internal static System.Drawing.Icon Icon128x { + public static System.Drawing.Icon Icon128x { get { object obj = ResourceManager.GetObject("Icon128x", resourceCulture); return ((System.Drawing.Icon)(obj)); @@ -257,7 +267,7 @@ internal static System.Drawing.Icon Icon128x { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap ICTheme_BG { + public static System.Drawing.Bitmap ICTheme_BG { get { object obj = ResourceManager.GetObject("ICTheme_BG", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -267,7 +277,7 @@ internal static System.Drawing.Bitmap ICTheme_BG { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap IE3_Back { + public static System.Drawing.Bitmap IE3_Back { get { object obj = ResourceManager.GetObject("IE3_Back", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -277,7 +287,7 @@ internal static System.Drawing.Bitmap IE3_Back { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap IE3_BackHover { + public static System.Drawing.Bitmap IE3_BackHover { get { object obj = ResourceManager.GetObject("IE3_BackHover", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -287,7 +297,7 @@ internal static System.Drawing.Bitmap IE3_BackHover { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap IE3_Forward { + public static System.Drawing.Bitmap IE3_Forward { get { object obj = ResourceManager.GetObject("IE3_Forward", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -297,7 +307,7 @@ internal static System.Drawing.Bitmap IE3_Forward { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap IE3_ForwardHover { + public static System.Drawing.Bitmap IE3_ForwardHover { get { object obj = ResourceManager.GetObject("IE3_ForwardHover", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -307,7 +317,7 @@ internal static System.Drawing.Bitmap IE3_ForwardHover { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap IE3_Refresh { + public static System.Drawing.Bitmap IE3_Refresh { get { object obj = ResourceManager.GetObject("IE3_Refresh", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -317,7 +327,7 @@ internal static System.Drawing.Bitmap IE3_Refresh { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap IE3_RefreshHover { + public static System.Drawing.Bitmap IE3_RefreshHover { get { object obj = ResourceManager.GetObject("IE3_RefreshHover", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -327,7 +337,7 @@ internal static System.Drawing.Bitmap IE3_RefreshHover { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap IE3_Stop { + public static System.Drawing.Bitmap IE3_Stop { get { object obj = ResourceManager.GetObject("IE3_Stop", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -337,7 +347,7 @@ internal static System.Drawing.Bitmap IE3_Stop { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap IE3_StopHover { + public static System.Drawing.Bitmap IE3_StopHover { get { object obj = ResourceManager.GetObject("IE3_StopHover", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -347,7 +357,7 @@ internal static System.Drawing.Bitmap IE3_StopHover { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap IE3_SwirlyThings { + public static System.Drawing.Bitmap IE3_SwirlyThings { get { object obj = ResourceManager.GetObject("IE3_SwirlyThings", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -357,7 +367,7 @@ internal static System.Drawing.Bitmap IE3_SwirlyThings { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap ie4_back { + public static System.Drawing.Bitmap ie4_back { get { object obj = ResourceManager.GetObject("ie4_back", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -367,7 +377,7 @@ internal static System.Drawing.Bitmap ie4_back { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap ie4_favorites { + public static System.Drawing.Bitmap ie4_favorites { get { object obj = ResourceManager.GetObject("ie4_favorites", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -377,7 +387,7 @@ internal static System.Drawing.Bitmap ie4_favorites { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap ie4_forward { + public static System.Drawing.Bitmap ie4_forward { get { object obj = ResourceManager.GetObject("ie4_forward", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -387,7 +397,7 @@ internal static System.Drawing.Bitmap ie4_forward { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap ie4_go { + public static System.Drawing.Bitmap ie4_go { get { object obj = ResourceManager.GetObject("ie4_go", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -397,7 +407,7 @@ internal static System.Drawing.Bitmap ie4_go { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap ie4_history { + public static System.Drawing.Bitmap ie4_history { get { object obj = ResourceManager.GetObject("ie4_history", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -407,7 +417,7 @@ internal static System.Drawing.Bitmap ie4_history { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap ie4_home { + public static System.Drawing.Bitmap ie4_home { get { object obj = ResourceManager.GetObject("ie4_home", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -417,7 +427,7 @@ internal static System.Drawing.Bitmap ie4_home { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap ie4_hsplitter { + public static System.Drawing.Bitmap ie4_hsplitter { get { object obj = ResourceManager.GetObject("ie4_hsplitter", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -427,7 +437,7 @@ internal static System.Drawing.Bitmap ie4_hsplitter { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap ie4_mail { + public static System.Drawing.Bitmap ie4_mail { get { object obj = ResourceManager.GetObject("ie4_mail", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -437,7 +447,7 @@ internal static System.Drawing.Bitmap ie4_mail { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap ie4_print { + public static System.Drawing.Bitmap ie4_print { get { object obj = ResourceManager.GetObject("ie4_print", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -447,7 +457,7 @@ internal static System.Drawing.Bitmap ie4_print { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap ie4_refresh { + public static System.Drawing.Bitmap ie4_refresh { get { object obj = ResourceManager.GetObject("ie4_refresh", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -457,7 +467,7 @@ internal static System.Drawing.Bitmap ie4_refresh { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap ie4_search { + public static System.Drawing.Bitmap ie4_search { get { object obj = ResourceManager.GetObject("ie4_search", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -467,7 +477,7 @@ internal static System.Drawing.Bitmap ie4_search { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap ie4_stop { + public static System.Drawing.Bitmap ie4_stop { get { object obj = ResourceManager.GetObject("ie4_stop", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -477,7 +487,7 @@ internal static System.Drawing.Bitmap ie4_stop { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap ie4_vsplitter { + public static System.Drawing.Bitmap ie4_vsplitter { get { object obj = ResourceManager.GetObject("ie4_vsplitter", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -487,7 +497,7 @@ internal static System.Drawing.Bitmap ie4_vsplitter { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap ie4_vsplitter2 { + public static System.Drawing.Bitmap ie4_vsplitter2 { get { object obj = ResourceManager.GetObject("ie4_vsplitter2", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -497,7 +507,7 @@ internal static System.Drawing.Bitmap ie4_vsplitter2 { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap ie4_vsplitter3 { + public static System.Drawing.Bitmap ie4_vsplitter3 { get { object obj = ResourceManager.GetObject("ie4_vsplitter3", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -507,7 +517,7 @@ internal static System.Drawing.Bitmap ie4_vsplitter3 { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap ie4about { + public static System.Drawing.Bitmap ie4about { get { object obj = ResourceManager.GetObject("ie4about", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -517,7 +527,7 @@ internal static System.Drawing.Bitmap ie4about { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap LauncherSideBar { + public static System.Drawing.Bitmap LauncherSideBar { get { object obj = ResourceManager.GetObject("LauncherSideBar", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -527,7 +537,7 @@ internal static System.Drawing.Bitmap LauncherSideBar { /// /// Looks up a localized resource of type System.Byte[]. /// - internal static byte[] Lemon_s_LCD { + public static byte[] Lemon_s_LCD { get { object obj = ResourceManager.GetObject("Lemon_s_LCD", resourceCulture); return ((byte[])(obj)); @@ -537,7 +547,7 @@ internal static byte[] Lemon_s_LCD { /// /// Looks up a localized resource of type System.Byte[]. /// - internal static byte[] LeviWindows { + public static byte[] LeviWindows { get { object obj = ResourceManager.GetObject("LeviWindows", resourceCulture); return ((byte[])(obj)); @@ -547,7 +557,7 @@ internal static byte[] LeviWindows { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap MinesweepNumBox { + public static System.Drawing.Bitmap MinesweepNumBox { get { object obj = ResourceManager.GetObject("MinesweepNumBox", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -557,7 +567,7 @@ internal static System.Drawing.Bitmap MinesweepNumBox { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap minesweepSquare { + public static System.Drawing.Bitmap minesweepSquare { get { object obj = ResourceManager.GetObject("minesweepSquare", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -567,7 +577,7 @@ internal static System.Drawing.Bitmap minesweepSquare { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap minesweepSquare0 { + public static System.Drawing.Bitmap minesweepSquare0 { get { object obj = ResourceManager.GetObject("minesweepSquare0", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -577,7 +587,7 @@ internal static System.Drawing.Bitmap minesweepSquare0 { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap minesweepSquare1 { + public static System.Drawing.Bitmap minesweepSquare1 { get { object obj = ResourceManager.GetObject("minesweepSquare1", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -587,7 +597,7 @@ internal static System.Drawing.Bitmap minesweepSquare1 { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap minesweepSquare2 { + public static System.Drawing.Bitmap minesweepSquare2 { get { object obj = ResourceManager.GetObject("minesweepSquare2", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -597,7 +607,7 @@ internal static System.Drawing.Bitmap minesweepSquare2 { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap minesweepSquare3 { + public static System.Drawing.Bitmap minesweepSquare3 { get { object obj = ResourceManager.GetObject("minesweepSquare3", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -607,7 +617,7 @@ internal static System.Drawing.Bitmap minesweepSquare3 { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap minesweepSquare4 { + public static System.Drawing.Bitmap minesweepSquare4 { get { object obj = ResourceManager.GetObject("minesweepSquare4", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -617,7 +627,7 @@ internal static System.Drawing.Bitmap minesweepSquare4 { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap minesweepSquare5 { + public static System.Drawing.Bitmap minesweepSquare5 { get { object obj = ResourceManager.GetObject("minesweepSquare5", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -627,7 +637,7 @@ internal static System.Drawing.Bitmap minesweepSquare5 { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap minesweepSquare6 { + public static System.Drawing.Bitmap minesweepSquare6 { get { object obj = ResourceManager.GetObject("minesweepSquare6", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -637,7 +647,7 @@ internal static System.Drawing.Bitmap minesweepSquare6 { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap minesweepSquare7 { + public static System.Drawing.Bitmap minesweepSquare7 { get { object obj = ResourceManager.GetObject("minesweepSquare7", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -647,7 +657,7 @@ internal static System.Drawing.Bitmap minesweepSquare7 { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap minesweepSquare8 { + public static System.Drawing.Bitmap minesweepSquare8 { get { object obj = ResourceManager.GetObject("minesweepSquare8", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -657,7 +667,7 @@ internal static System.Drawing.Bitmap minesweepSquare8 { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap minesweepSquareExploded { + public static System.Drawing.Bitmap minesweepSquareExploded { get { object obj = ResourceManager.GetObject("minesweepSquareExploded", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -667,7 +677,7 @@ internal static System.Drawing.Bitmap minesweepSquareExploded { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap minesweepSquareMine { + public static System.Drawing.Bitmap minesweepSquareMine { get { object obj = ResourceManager.GetObject("minesweepSquareMine", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -677,7 +687,7 @@ internal static System.Drawing.Bitmap minesweepSquareMine { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap minesweepSquareQuestion { + public static System.Drawing.Bitmap minesweepSquareQuestion { get { object obj = ResourceManager.GetObject("minesweepSquareQuestion", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -687,7 +697,7 @@ internal static System.Drawing.Bitmap minesweepSquareQuestion { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap minesweepSquareWrong { + public static System.Drawing.Bitmap minesweepSquareWrong { get { object obj = ResourceManager.GetObject("minesweepSquareWrong", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -697,7 +707,7 @@ internal static System.Drawing.Bitmap minesweepSquareWrong { /// /// Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream. /// - internal static System.IO.UnmanagedMemoryStream modem_dial { + public static System.IO.UnmanagedMemoryStream modem_dial { get { return ResourceManager.GetStream("modem_dial", resourceCulture); } @@ -706,7 +716,7 @@ internal static System.IO.UnmanagedMemoryStream modem_dial { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap MSDOSPromptToolStripMenuItem1_Image { + public static System.Drawing.Bitmap MSDOSPromptToolStripMenuItem1_Image { get { object obj = ResourceManager.GetObject("MSDOSPromptToolStripMenuItem1_Image", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -716,7 +726,7 @@ internal static System.Drawing.Bitmap MSDOSPromptToolStripMenuItem1_Image { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap nopage { + public static System.Drawing.Bitmap nopage { get { object obj = ResourceManager.GetObject("nopage", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -726,7 +736,7 @@ internal static System.Drawing.Bitmap nopage { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap SeizureWarning { + public static System.Drawing.Bitmap SeizureWarning { get { object obj = ResourceManager.GetObject("SeizureWarning", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -736,7 +746,7 @@ internal static System.Drawing.Bitmap SeizureWarning { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap sliversilver { + public static System.Drawing.Bitmap sliversilver { get { object obj = ResourceManager.GetObject("sliversilver", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -746,7 +756,7 @@ internal static System.Drawing.Bitmap sliversilver { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap start { + public static System.Drawing.Bitmap start { get { object obj = ResourceManager.GetObject("start", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -756,7 +766,7 @@ internal static System.Drawing.Bitmap start { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap start_googlink { + public static System.Drawing.Bitmap start_googlink { get { object obj = ResourceManager.GetObject("start_googlink", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -766,7 +776,7 @@ internal static System.Drawing.Bitmap start_googlink { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap start_padamslink { + public static System.Drawing.Bitmap start_padamslink { get { object obj = ResourceManager.GetObject("start_padamslink", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -776,7 +786,7 @@ internal static System.Drawing.Bitmap start_padamslink { /// /// Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream. /// - internal static System.IO.UnmanagedMemoryStream std_beep { + public static System.IO.UnmanagedMemoryStream std_beep { get { return ResourceManager.GetStream("std_beep", resourceCulture); } @@ -785,7 +795,7 @@ internal static System.IO.UnmanagedMemoryStream std_beep { /// /// Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream. /// - internal static System.IO.UnmanagedMemoryStream std_gobeep { + public static System.IO.UnmanagedMemoryStream std_gobeep { get { return ResourceManager.GetStream("std_gobeep", resourceCulture); } @@ -809,7 +819,7 @@ internal static System.IO.UnmanagedMemoryStream std_gobeep { /// "btn5txt": "", /// "btn5tag": " [rest of string was truncated]";. /// - internal static string std_story { + public static string std_story { get { return ResourceManager.GetString("std_story", resourceCulture); } @@ -818,7 +828,7 @@ internal static string std_story { /// /// Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream. /// - internal static System.IO.UnmanagedMemoryStream tada { + public static System.IO.UnmanagedMemoryStream tada { get { return ResourceManager.GetStream("tada", resourceCulture); } @@ -827,7 +837,7 @@ internal static System.IO.UnmanagedMemoryStream tada { /// /// Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream. /// - internal static System.IO.UnmanagedMemoryStream tada1 { + public static System.IO.UnmanagedMemoryStream tada1 { get { return ResourceManager.GetStream("tada1", resourceCulture); } @@ -836,7 +846,7 @@ internal static System.IO.UnmanagedMemoryStream tada1 { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap TaskBarButton { + public static System.Drawing.Bitmap TaskBarButton { get { object obj = ResourceManager.GetObject("TaskBarButton", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -846,7 +856,7 @@ internal static System.Drawing.Bitmap TaskBarButton { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap TaskBarClock { + public static System.Drawing.Bitmap TaskBarClock { get { object obj = ResourceManager.GetObject("TaskBarClock", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -856,7 +866,7 @@ internal static System.Drawing.Bitmap TaskBarClock { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap termCopy { + public static System.Drawing.Bitmap termCopy { get { object obj = ResourceManager.GetObject("termCopy", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -866,7 +876,7 @@ internal static System.Drawing.Bitmap termCopy { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap termFont { + public static System.Drawing.Bitmap termFont { get { object obj = ResourceManager.GetObject("termFont", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -876,7 +886,7 @@ internal static System.Drawing.Bitmap termFont { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap termMark { + public static System.Drawing.Bitmap termMark { get { object obj = ResourceManager.GetObject("termMark", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -886,7 +896,7 @@ internal static System.Drawing.Bitmap termMark { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap termMax { + public static System.Drawing.Bitmap termMax { get { object obj = ResourceManager.GetObject("termMax", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -896,7 +906,7 @@ internal static System.Drawing.Bitmap termMax { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap termNothing { + public static System.Drawing.Bitmap termNothing { get { object obj = ResourceManager.GetObject("termNothing", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -906,7 +916,7 @@ internal static System.Drawing.Bitmap termNothing { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap termPaste { + public static System.Drawing.Bitmap termPaste { get { object obj = ResourceManager.GetObject("termPaste", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -916,7 +926,7 @@ internal static System.Drawing.Bitmap termPaste { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap termSettings { + public static System.Drawing.Bitmap termSettings { get { object obj = ResourceManager.GetObject("termSettings", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -926,27 +936,50 @@ internal static System.Drawing.Bitmap termSettings { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap TimeHACK_Logo { - get { - object obj = ResourceManager.GetObject("TimeHACK_Logo", resourceCulture); - return ((System.Drawing.Bitmap)(obj)); - } - } - - /// - /// Looks up a localized resource of type System.Drawing.Bitmap. - /// - internal static System.Drawing.Bitmap TrueColor { + public static System.Drawing.Bitmap TrueColor { get { object obj = ResourceManager.GetObject("TrueColor", resourceCulture); return ((System.Drawing.Bitmap)(obj)); } } + /// + /// Looks up a localized string similar to { + /// "messages": [ + /// { + /// "user": "System", + /// "delay": 5000, + /// "message": "SkyHigh has joined the chat.", + /// "special": "addsh", + /// "userchat": true + /// }, + /// { + /// "user": "SkyHigh", + /// "delay": 5000, + /// "message": "damn", + /// "special": null, + /// "userchat": true + /// }, + /// { + /// "user": "SkyHigh", + /// "delay": 6000, + /// "message": "I thought my friend rain49 was going to be on...", + /// "special": null, + /// "userchat": true + /// }, + /// { + /// [rest of string was truncated]";. + /// + public static string webchat1998_convo { + get { + return ResourceManager.GetString("webchat1998_convo", resourceCulture); + } + } + /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap Win2000WebBackground { + public static System.Drawing.Bitmap Win2000WebBackground { get { object obj = ResourceManager.GetObject("Win2000WebBackground", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -956,7 +989,7 @@ internal static System.Drawing.Bitmap Win2000WebBackground { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap win95_splitter { + public static System.Drawing.Bitmap win95_splitter { get { object obj = ResourceManager.GetObject("win95_splitter", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -966,7 +999,7 @@ internal static System.Drawing.Bitmap win95_splitter { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap win95_welcome { + public static System.Drawing.Bitmap win95_welcome { get { object obj = ResourceManager.GetObject("win95_welcome", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -976,7 +1009,7 @@ internal static System.Drawing.Bitmap win95_welcome { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap win95_welcometip { + public static System.Drawing.Bitmap win95_welcometip { get { object obj = ResourceManager.GetObject("win95_welcometip", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -986,7 +1019,7 @@ internal static System.Drawing.Bitmap win95_welcometip { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap Win95Computer { + public static System.Drawing.Bitmap Win95Computer { get { object obj = ResourceManager.GetObject("Win95Computer", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -996,7 +1029,7 @@ internal static System.Drawing.Bitmap Win95Computer { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap Win95ComputerIcon { + public static System.Drawing.Bitmap Win95ComputerIcon { get { object obj = ResourceManager.GetObject("Win95ComputerIcon", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1006,7 +1039,7 @@ internal static System.Drawing.Bitmap Win95ComputerIcon { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap Win95ControlPanelIcon { + public static System.Drawing.Bitmap Win95ControlPanelIcon { get { object obj = ResourceManager.GetObject("Win95ControlPanelIcon", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1016,7 +1049,7 @@ internal static System.Drawing.Bitmap Win95ControlPanelIcon { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap Win95DesktopIcon { + public static System.Drawing.Bitmap Win95DesktopIcon { get { object obj = ResourceManager.GetObject("Win95DesktopIcon", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1026,7 +1059,7 @@ internal static System.Drawing.Bitmap Win95DesktopIcon { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap Win95Error { + public static System.Drawing.Bitmap Win95Error { get { object obj = ResourceManager.GetObject("Win95Error", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1036,7 +1069,7 @@ internal static System.Drawing.Bitmap Win95Error { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap Win95File { + public static System.Drawing.Bitmap Win95File { get { object obj = ResourceManager.GetObject("Win95File", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1046,7 +1079,7 @@ internal static System.Drawing.Bitmap Win95File { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap Win95HardDiskIcon { + public static System.Drawing.Bitmap Win95HardDiskIcon { get { object obj = ResourceManager.GetObject("Win95HardDiskIcon", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1056,7 +1089,7 @@ internal static System.Drawing.Bitmap Win95HardDiskIcon { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap Win95Help { + public static System.Drawing.Bitmap Win95Help { get { object obj = ResourceManager.GetObject("Win95Help", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1066,7 +1099,7 @@ internal static System.Drawing.Bitmap Win95Help { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap Win95IconIE4 { + public static System.Drawing.Bitmap Win95IconIE4 { get { object obj = ResourceManager.GetObject("Win95IconIE4", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1076,7 +1109,7 @@ internal static System.Drawing.Bitmap Win95IconIE4 { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap Win95IconNotepad { + public static System.Drawing.Bitmap Win95IconNotepad { get { object obj = ResourceManager.GetObject("Win95IconNotepad", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1086,7 +1119,7 @@ internal static System.Drawing.Bitmap Win95IconNotepad { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap Win95IconNotepad_2 { + public static System.Drawing.Bitmap Win95IconNotepad_2 { get { object obj = ResourceManager.GetObject("Win95IconNotepad_2", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1096,7 +1129,7 @@ internal static System.Drawing.Bitmap Win95IconNotepad_2 { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap Win95IconWordpad { + public static System.Drawing.Bitmap Win95IconWordpad { get { object obj = ResourceManager.GetObject("Win95IconWordpad", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1106,7 +1139,7 @@ internal static System.Drawing.Bitmap Win95IconWordpad { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap Win95Info { + public static System.Drawing.Bitmap Win95Info { get { object obj = ResourceManager.GetObject("Win95Info", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1116,7 +1149,7 @@ internal static System.Drawing.Bitmap Win95Info { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap Win95NetworkIcon { + public static System.Drawing.Bitmap Win95NetworkIcon { get { object obj = ResourceManager.GetObject("Win95NetworkIcon", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1126,7 +1159,7 @@ internal static System.Drawing.Bitmap Win95NetworkIcon { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap Win95PrintersFolder { + public static System.Drawing.Bitmap Win95PrintersFolder { get { object obj = ResourceManager.GetObject("Win95PrintersFolder", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1136,7 +1169,7 @@ internal static System.Drawing.Bitmap Win95PrintersFolder { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap Win95RecycleIcon { + public static System.Drawing.Bitmap Win95RecycleIcon { get { object obj = ResourceManager.GetObject("Win95RecycleIcon", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1146,7 +1179,7 @@ internal static System.Drawing.Bitmap Win95RecycleIcon { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap Win95SideBar { + public static System.Drawing.Bitmap Win95SideBar { get { object obj = ResourceManager.GetObject("Win95SideBar", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1156,7 +1189,7 @@ internal static System.Drawing.Bitmap Win95SideBar { /// /// Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream. /// - internal static System.IO.UnmanagedMemoryStream Win95Start { + public static System.IO.UnmanagedMemoryStream Win95Start { get { return ResourceManager.GetStream("Win95Start", resourceCulture); } @@ -1165,7 +1198,7 @@ internal static System.IO.UnmanagedMemoryStream Win95Start { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap Win95Warning { + public static System.Drawing.Bitmap Win95Warning { get { object obj = ResourceManager.GetObject("Win95Warning", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1175,7 +1208,7 @@ internal static System.Drawing.Bitmap Win95Warning { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap Win95WordpadIcon2 { + public static System.Drawing.Bitmap Win95WordpadIcon2 { get { object obj = ResourceManager.GetObject("Win95WordpadIcon2", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1185,7 +1218,7 @@ internal static System.Drawing.Bitmap Win95WordpadIcon2 { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap Win98Computer { + public static System.Drawing.Bitmap Win98Computer { get { object obj = ResourceManager.GetObject("Win98Computer", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1195,7 +1228,7 @@ internal static System.Drawing.Bitmap Win98Computer { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap Win98SideBar { + public static System.Drawing.Bitmap Win98SideBar { get { object obj = ResourceManager.GetObject("Win98SideBar", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1205,7 +1238,7 @@ internal static System.Drawing.Bitmap Win98SideBar { /// /// Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream. /// - internal static System.IO.UnmanagedMemoryStream Win98Start { + public static System.IO.UnmanagedMemoryStream Win98Start { get { return ResourceManager.GetStream("Win98Start", resourceCulture); } @@ -1214,7 +1247,7 @@ internal static System.IO.UnmanagedMemoryStream Win98Start { /// /// Looks up a localized resource of type System.IO.UnmanagedMemoryStream similar to System.IO.MemoryStream. /// - internal static System.IO.UnmanagedMemoryStream Win98Stop { + public static System.IO.UnmanagedMemoryStream Win98Stop { get { return ResourceManager.GetStream("Win98Stop", resourceCulture); } @@ -1223,7 +1256,7 @@ internal static System.IO.UnmanagedMemoryStream Win98Stop { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap Win98WebBackground { + public static System.Drawing.Bitmap Win98WebBackground { get { object obj = ResourceManager.GetObject("Win98WebBackground", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1233,7 +1266,7 @@ internal static System.Drawing.Bitmap Win98WebBackground { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinAboutSeparator95 { + public static System.Drawing.Bitmap WinAboutSeparator95 { get { object obj = ResourceManager.GetObject("WinAboutSeparator95", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1243,7 +1276,7 @@ internal static System.Drawing.Bitmap WinAboutSeparator95 { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicAbout95 { + public static System.Drawing.Bitmap WinClassicAbout95 { get { object obj = ResourceManager.GetObject("WinClassicAbout95", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1253,7 +1286,7 @@ internal static System.Drawing.Bitmap WinClassicAbout95 { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicAddressBook { + public static System.Drawing.Bitmap WinClassicAddressBook { get { object obj = ResourceManager.GetObject("WinClassicAddressBook", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1263,7 +1296,7 @@ internal static System.Drawing.Bitmap WinClassicAddressBook { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicAddressBookDeleteIcon { + public static System.Drawing.Bitmap WinClassicAddressBookDeleteIcon { get { object obj = ResourceManager.GetObject("WinClassicAddressBookDeleteIcon", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1273,7 +1306,7 @@ internal static System.Drawing.Bitmap WinClassicAddressBookDeleteIcon { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicAddressBookNewIcon { + public static System.Drawing.Bitmap WinClassicAddressBookNewIcon { get { object obj = ResourceManager.GetObject("WinClassicAddressBookNewIcon", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1283,7 +1316,7 @@ internal static System.Drawing.Bitmap WinClassicAddressBookNewIcon { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicAddressBookPropertiesIcon { + public static System.Drawing.Bitmap WinClassicAddressBookPropertiesIcon { get { object obj = ResourceManager.GetObject("WinClassicAddressBookPropertiesIcon", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1293,7 +1326,7 @@ internal static System.Drawing.Bitmap WinClassicAddressBookPropertiesIcon { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicApp { + public static System.Drawing.Bitmap WinClassicApp { get { object obj = ResourceManager.GetObject("WinClassicApp", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1303,7 +1336,7 @@ internal static System.Drawing.Bitmap WinClassicApp { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicCalc { + public static System.Drawing.Bitmap WinClassicCalc { get { object obj = ResourceManager.GetObject("WinClassicCalc", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1313,7 +1346,7 @@ internal static System.Drawing.Bitmap WinClassicCalc { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicCalcBig { + public static System.Drawing.Bitmap WinClassicCalcBig { get { object obj = ResourceManager.GetObject("WinClassicCalcBig", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1323,7 +1356,7 @@ internal static System.Drawing.Bitmap WinClassicCalcBig { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicClock { + public static System.Drawing.Bitmap WinClassicClock { get { object obj = ResourceManager.GetObject("WinClassicClock", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1333,7 +1366,7 @@ internal static System.Drawing.Bitmap WinClassicClock { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicDisplayExample { + public static System.Drawing.Bitmap WinClassicDisplayExample { get { object obj = ResourceManager.GetObject("WinClassicDisplayExample", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1343,7 +1376,7 @@ internal static System.Drawing.Bitmap WinClassicDisplayExample { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicDocuments { + public static System.Drawing.Bitmap WinClassicDocuments { get { object obj = ResourceManager.GetObject("WinClassicDocuments", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1353,7 +1386,7 @@ internal static System.Drawing.Bitmap WinClassicDocuments { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicEndings { + public static System.Drawing.Bitmap WinClassicEndings { get { object obj = ResourceManager.GetObject("WinClassicEndings", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1363,7 +1396,7 @@ internal static System.Drawing.Bitmap WinClassicEndings { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicEndingsIcon { + public static System.Drawing.Bitmap WinClassicEndingsIcon { get { object obj = ResourceManager.GetObject("WinClassicEndingsIcon", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1373,7 +1406,7 @@ internal static System.Drawing.Bitmap WinClassicEndingsIcon { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicEndingsLocked { + public static System.Drawing.Bitmap WinClassicEndingsLocked { get { object obj = ResourceManager.GetObject("WinClassicEndingsLocked", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1383,7 +1416,7 @@ internal static System.Drawing.Bitmap WinClassicEndingsLocked { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicFileExplorer { + public static System.Drawing.Bitmap WinClassicFileExplorer { get { object obj = ResourceManager.GetObject("WinClassicFileExplorer", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1393,7 +1426,7 @@ internal static System.Drawing.Bitmap WinClassicFileExplorer { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicFind { + public static System.Drawing.Bitmap WinClassicFind { get { object obj = ResourceManager.GetObject("WinClassicFind", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1403,7 +1436,7 @@ internal static System.Drawing.Bitmap WinClassicFind { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicFolder { + public static System.Drawing.Bitmap WinClassicFolder { get { object obj = ResourceManager.GetObject("WinClassicFolder", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1413,7 +1446,7 @@ internal static System.Drawing.Bitmap WinClassicFolder { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicFolderSmall { + public static System.Drawing.Bitmap WinClassicFolderSmall { get { object obj = ResourceManager.GetObject("WinClassicFolderSmall", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1423,7 +1456,7 @@ internal static System.Drawing.Bitmap WinClassicFolderSmall { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicGENERALApplicationToolbarBackground { + public static System.Drawing.Bitmap WinClassicGENERALApplicationToolbarBackground { get { object obj = ResourceManager.GetObject("WinClassicGENERALApplicationToolbarBackground", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1433,7 +1466,7 @@ internal static System.Drawing.Bitmap WinClassicGENERALApplicationToolbarBackgro /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicHelp { + public static System.Drawing.Bitmap WinClassicHelp { get { object obj = ResourceManager.GetObject("WinClassicHelp", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1443,7 +1476,7 @@ internal static System.Drawing.Bitmap WinClassicHelp { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicHWCV { + public static System.Drawing.Bitmap WinClassicHWCV { get { object obj = ResourceManager.GetObject("WinClassicHWCV", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1453,7 +1486,7 @@ internal static System.Drawing.Bitmap WinClassicHWCV { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicIE4 { + public static System.Drawing.Bitmap WinClassicIE4 { get { object obj = ResourceManager.GetObject("WinClassicIE4", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1463,7 +1496,7 @@ internal static System.Drawing.Bitmap WinClassicIE4 { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicInbox { + public static System.Drawing.Bitmap WinClassicInbox { get { object obj = ResourceManager.GetObject("WinClassicInbox", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1473,7 +1506,7 @@ internal static System.Drawing.Bitmap WinClassicInbox { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicInstallPic { + public static System.Drawing.Bitmap WinClassicInstallPic { get { object obj = ResourceManager.GetObject("WinClassicInstallPic", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1483,7 +1516,7 @@ internal static System.Drawing.Bitmap WinClassicInstallPic { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicMinesweeper { + public static System.Drawing.Bitmap WinClassicMinesweeper { get { object obj = ResourceManager.GetObject("WinClassicMinesweeper", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1493,7 +1526,7 @@ internal static System.Drawing.Bitmap WinClassicMinesweeper { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicMinesweeperFlag { + public static System.Drawing.Bitmap WinClassicMinesweeperFlag { get { object obj = ResourceManager.GetObject("WinClassicMinesweeperFlag", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1503,7 +1536,7 @@ internal static System.Drawing.Bitmap WinClassicMinesweeperFlag { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicMinesweeperGasp { + public static System.Drawing.Bitmap WinClassicMinesweeperGasp { get { object obj = ResourceManager.GetObject("WinClassicMinesweeperGasp", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1513,7 +1546,7 @@ internal static System.Drawing.Bitmap WinClassicMinesweeperGasp { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicMinesweeperSad { + public static System.Drawing.Bitmap WinClassicMinesweeperSad { get { object obj = ResourceManager.GetObject("WinClassicMinesweeperSad", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1523,7 +1556,7 @@ internal static System.Drawing.Bitmap WinClassicMinesweeperSad { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicMinesweeperSmile { + public static System.Drawing.Bitmap WinClassicMinesweeperSmile { get { object obj = ResourceManager.GetObject("WinClassicMinesweeperSmile", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1533,7 +1566,7 @@ internal static System.Drawing.Bitmap WinClassicMinesweeperSmile { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicMinesweeperWin { + public static System.Drawing.Bitmap WinClassicMinesweeperWin { get { object obj = ResourceManager.GetObject("WinClassicMinesweeperWin", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1543,7 +1576,7 @@ internal static System.Drawing.Bitmap WinClassicMinesweeperWin { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicMSN { + public static System.Drawing.Bitmap WinClassicMSN { get { object obj = ResourceManager.GetObject("WinClassicMSN", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1553,7 +1586,7 @@ internal static System.Drawing.Bitmap WinClassicMSN { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicNetworking { + public static System.Drawing.Bitmap WinClassicNetworking { get { object obj = ResourceManager.GetObject("WinClassicNetworking", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1563,7 +1596,7 @@ internal static System.Drawing.Bitmap WinClassicNetworking { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicNotepad { + public static System.Drawing.Bitmap WinClassicNotepad { get { object obj = ResourceManager.GetObject("WinClassicNotepad", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1573,7 +1606,7 @@ internal static System.Drawing.Bitmap WinClassicNotepad { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicNotepadBig { + public static System.Drawing.Bitmap WinClassicNotepadBig { get { object obj = ResourceManager.GetObject("WinClassicNotepadBig", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1583,7 +1616,7 @@ internal static System.Drawing.Bitmap WinClassicNotepadBig { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicOpenFolderSmall { + public static System.Drawing.Bitmap WinClassicOpenFolderSmall { get { object obj = ResourceManager.GetObject("WinClassicOpenFolderSmall", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1593,7 +1626,7 @@ internal static System.Drawing.Bitmap WinClassicOpenFolderSmall { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicOutlook { + public static System.Drawing.Bitmap WinClassicOutlook { get { object obj = ResourceManager.GetObject("WinClassicOutlook", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1603,7 +1636,7 @@ internal static System.Drawing.Bitmap WinClassicOutlook { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicPaste { + public static System.Drawing.Bitmap WinClassicPaste { get { object obj = ResourceManager.GetObject("WinClassicPaste", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1613,7 +1646,7 @@ internal static System.Drawing.Bitmap WinClassicPaste { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicProgramItem { + public static System.Drawing.Bitmap WinClassicProgramItem { get { object obj = ResourceManager.GetObject("WinClassicProgramItem", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1623,7 +1656,7 @@ internal static System.Drawing.Bitmap WinClassicProgramItem { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicPrograms { + public static System.Drawing.Bitmap WinClassicPrograms { get { object obj = ResourceManager.GetObject("WinClassicPrograms", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1633,7 +1666,7 @@ internal static System.Drawing.Bitmap WinClassicPrograms { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicRecycle { + public static System.Drawing.Bitmap WinClassicRecycle { get { object obj = ResourceManager.GetObject("WinClassicRecycle", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1643,7 +1676,7 @@ internal static System.Drawing.Bitmap WinClassicRecycle { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicRegedit { + public static System.Drawing.Bitmap WinClassicRegedit { get { object obj = ResourceManager.GetObject("WinClassicRegedit", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1653,7 +1686,7 @@ internal static System.Drawing.Bitmap WinClassicRegedit { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicRun { + public static System.Drawing.Bitmap WinClassicRun { get { object obj = ResourceManager.GetObject("WinClassicRun", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1663,7 +1696,7 @@ internal static System.Drawing.Bitmap WinClassicRun { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicSettings { + public static System.Drawing.Bitmap WinClassicSettings { get { object obj = ResourceManager.GetObject("WinClassicSettings", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1673,7 +1706,7 @@ internal static System.Drawing.Bitmap WinClassicSettings { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicSetup { + public static System.Drawing.Bitmap WinClassicSetup { get { object obj = ResourceManager.GetObject("WinClassicSetup", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1683,7 +1716,7 @@ internal static System.Drawing.Bitmap WinClassicSetup { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicShutdown { + public static System.Drawing.Bitmap WinClassicShutdown { get { object obj = ResourceManager.GetObject("WinClassicShutdown", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1693,7 +1726,7 @@ internal static System.Drawing.Bitmap WinClassicShutdown { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicStart { + public static System.Drawing.Bitmap WinClassicStart { get { object obj = ResourceManager.GetObject("WinClassicStart", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1703,7 +1736,7 @@ internal static System.Drawing.Bitmap WinClassicStart { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicSuspend { + public static System.Drawing.Bitmap WinClassicSuspend { get { object obj = ResourceManager.GetObject("WinClassicSuspend", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1713,7 +1746,7 @@ internal static System.Drawing.Bitmap WinClassicSuspend { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicTaskBar { + public static System.Drawing.Bitmap WinClassicTaskBar { get { object obj = ResourceManager.GetObject("WinClassicTaskBar", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1723,7 +1756,7 @@ internal static System.Drawing.Bitmap WinClassicTaskBar { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicTaskbarItem { + public static System.Drawing.Bitmap WinClassicTaskbarItem { get { object obj = ResourceManager.GetObject("WinClassicTaskbarItem", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1733,7 +1766,7 @@ internal static System.Drawing.Bitmap WinClassicTaskbarItem { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicTime { + public static System.Drawing.Bitmap WinClassicTime { get { object obj = ResourceManager.GetObject("WinClassicTime", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1743,7 +1776,7 @@ internal static System.Drawing.Bitmap WinClassicTime { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicUndo { + public static System.Drawing.Bitmap WinClassicUndo { get { object obj = ResourceManager.GetObject("WinClassicUndo", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1753,7 +1786,7 @@ internal static System.Drawing.Bitmap WinClassicUndo { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap WinClassicWordpad { + public static System.Drawing.Bitmap WinClassicWordpad { get { object obj = ResourceManager.GetObject("WinClassicWordpad", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1763,7 +1796,7 @@ internal static System.Drawing.Bitmap WinClassicWordpad { /// /// Looks up a localized resource of type System.Byte[]. /// - internal static byte[] windows_command_prompt { + public static byte[] windows_command_prompt { get { object obj = ResourceManager.GetObject("windows_command_prompt", resourceCulture); return ((byte[])(obj)); @@ -1773,7 +1806,7 @@ internal static byte[] windows_command_prompt { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap wordpad_bold { + public static System.Drawing.Bitmap wordpad_bold { get { object obj = ResourceManager.GetObject("wordpad_bold", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1783,7 +1816,7 @@ internal static System.Drawing.Bitmap wordpad_bold { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap wordpad_copy { + public static System.Drawing.Bitmap wordpad_copy { get { object obj = ResourceManager.GetObject("wordpad_copy", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1793,7 +1826,7 @@ internal static System.Drawing.Bitmap wordpad_copy { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap wordpad_cut { + public static System.Drawing.Bitmap wordpad_cut { get { object obj = ResourceManager.GetObject("wordpad_cut", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1803,7 +1836,7 @@ internal static System.Drawing.Bitmap wordpad_cut { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap wordpad_find { + public static System.Drawing.Bitmap wordpad_find { get { object obj = ResourceManager.GetObject("wordpad_find", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1813,7 +1846,7 @@ internal static System.Drawing.Bitmap wordpad_find { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap wordpad_italic { + public static System.Drawing.Bitmap wordpad_italic { get { object obj = ResourceManager.GetObject("wordpad_italic", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1823,7 +1856,7 @@ internal static System.Drawing.Bitmap wordpad_italic { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap wordpad_new { + public static System.Drawing.Bitmap wordpad_new { get { object obj = ResourceManager.GetObject("wordpad_new", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1833,7 +1866,7 @@ internal static System.Drawing.Bitmap wordpad_new { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap wordpad_open { + public static System.Drawing.Bitmap wordpad_open { get { object obj = ResourceManager.GetObject("wordpad_open", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1843,7 +1876,7 @@ internal static System.Drawing.Bitmap wordpad_open { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap wordpad_paste { + public static System.Drawing.Bitmap wordpad_paste { get { object obj = ResourceManager.GetObject("wordpad_paste", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1853,7 +1886,7 @@ internal static System.Drawing.Bitmap wordpad_paste { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap wordpad_print { + public static System.Drawing.Bitmap wordpad_print { get { object obj = ResourceManager.GetObject("wordpad_print", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1863,7 +1896,7 @@ internal static System.Drawing.Bitmap wordpad_print { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap wordpad_printpreview { + public static System.Drawing.Bitmap wordpad_printpreview { get { object obj = ResourceManager.GetObject("wordpad_printpreview", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1873,7 +1906,7 @@ internal static System.Drawing.Bitmap wordpad_printpreview { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap wordpad_save { + public static System.Drawing.Bitmap wordpad_save { get { object obj = ResourceManager.GetObject("wordpad_save", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1883,7 +1916,7 @@ internal static System.Drawing.Bitmap wordpad_save { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap wordpad_underline { + public static System.Drawing.Bitmap wordpad_underline { get { object obj = ResourceManager.GetObject("wordpad_underline", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1893,7 +1926,7 @@ internal static System.Drawing.Bitmap wordpad_underline { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap XCross { + public static System.Drawing.Bitmap XCross { get { object obj = ResourceManager.GetObject("XCross", resourceCulture); return ((System.Drawing.Bitmap)(obj)); @@ -1903,7 +1936,7 @@ internal static System.Drawing.Bitmap XCross { /// /// Looks up a localized resource of type System.Drawing.Bitmap. /// - internal static System.Drawing.Bitmap XCross_highlighted { + public static System.Drawing.Bitmap XCross_highlighted { get { object obj = ResourceManager.GetObject("XCross_highlighted", resourceCulture); return ((System.Drawing.Bitmap)(obj)); diff --git a/TimeHACK.Main/Properties/Settings.Designer.cs b/Histacom2/Properties/Settings.Designer.cs similarity index 96% rename from TimeHACK.Main/Properties/Settings.Designer.cs rename to Histacom2/Properties/Settings.Designer.cs index 850a60a..28a3806 100644 --- a/TimeHACK.Main/Properties/Settings.Designer.cs +++ b/Histacom2/Properties/Settings.Designer.cs @@ -8,7 +8,7 @@ // //------------------------------------------------------------------------------ -namespace TimeHACK.Properties { +namespace Histacom2.Properties { [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] diff --git a/TimeHACK.Main/Properties/Settings.settings b/Histacom2/Properties/Settings.settings similarity index 100% rename from TimeHACK.Main/Properties/Settings.settings rename to Histacom2/Properties/Settings.settings diff --git a/TimeHACK.Main/Resources/12padams_EULA.txt b/Histacom2/Resources/12padams_EULA.txt similarity index 100% rename from TimeHACK.Main/Resources/12padams_EULA.txt rename to Histacom2/Resources/12padams_EULA.txt diff --git a/TimeHACK.Main/Resources/AchievementMines.png b/Histacom2/Resources/AchievementMines.png similarity index 100% rename from TimeHACK.Main/Resources/AchievementMines.png rename to Histacom2/Resources/AchievementMines.png diff --git a/TimeHACK.Main/Resources/ButtonPattern.png b/Histacom2/Resources/ButtonPattern.png similarity index 100% rename from TimeHACK.Main/Resources/ButtonPattern.png rename to Histacom2/Resources/ButtonPattern.png diff --git a/TimeHACK.Main/Resources/DCTheme_BG.JPG b/Histacom2/Resources/DCTheme_BG.JPG similarity index 100% rename from TimeHACK.Main/Resources/DCTheme_BG.JPG rename to Histacom2/Resources/DCTheme_BG.JPG diff --git a/TimeHACK.Main/Resources/EndingDestruction.png b/Histacom2/Resources/EndingDestruction.png similarity index 100% rename from TimeHACK.Main/Resources/EndingDestruction.png rename to Histacom2/Resources/EndingDestruction.png diff --git a/TimeHACK.Main/Resources/EndingPiracy.png b/Histacom2/Resources/EndingPiracy.png similarity index 100% rename from TimeHACK.Main/Resources/EndingPiracy.png rename to Histacom2/Resources/EndingPiracy.png diff --git a/TimeHACK.Main/Resources/GuessTheNumber/GTN95_Check.png b/Histacom2/Resources/GuessTheNumber/GTN95_Check.png similarity index 100% rename from TimeHACK.Main/Resources/GuessTheNumber/GTN95_Check.png rename to Histacom2/Resources/GuessTheNumber/GTN95_Check.png diff --git a/TimeHACK.Main/Resources/GuessTheNumber/GTN95_CheckClicked.png b/Histacom2/Resources/GuessTheNumber/GTN95_CheckClicked.png similarity index 100% rename from TimeHACK.Main/Resources/GuessTheNumber/GTN95_CheckClicked.png rename to Histacom2/Resources/GuessTheNumber/GTN95_CheckClicked.png diff --git a/TimeHACK.Main/Resources/GuessTheNumber/GTN95_Higher.png b/Histacom2/Resources/GuessTheNumber/GTN95_Higher.png similarity index 100% rename from TimeHACK.Main/Resources/GuessTheNumber/GTN95_Higher.png rename to Histacom2/Resources/GuessTheNumber/GTN95_Higher.png diff --git a/TimeHACK.Main/Resources/GuessTheNumber/GTN95_Restart.png b/Histacom2/Resources/GuessTheNumber/GTN95_Restart.png similarity index 100% rename from TimeHACK.Main/Resources/GuessTheNumber/GTN95_Restart.png rename to Histacom2/Resources/GuessTheNumber/GTN95_Restart.png diff --git a/TimeHACK.Main/Resources/GuessTheNumber/GTN95_RestartClicked.png b/Histacom2/Resources/GuessTheNumber/GTN95_RestartClicked.png similarity index 100% rename from TimeHACK.Main/Resources/GuessTheNumber/GTN95_RestartClicked.png rename to Histacom2/Resources/GuessTheNumber/GTN95_RestartClicked.png diff --git a/TimeHACK.Main/Resources/ICTheme_BG.jpg b/Histacom2/Resources/ICTheme_BG.jpg similarity index 100% rename from TimeHACK.Main/Resources/ICTheme_BG.jpg rename to Histacom2/Resources/ICTheme_BG.jpg diff --git a/TimeHACK.Main/Resources/IE3/IE3_Back.png b/Histacom2/Resources/IE3/IE3_Back.png similarity index 100% rename from TimeHACK.Main/Resources/IE3/IE3_Back.png rename to Histacom2/Resources/IE3/IE3_Back.png diff --git a/TimeHACK.Main/Resources/IE3/IE3_BackHover.png b/Histacom2/Resources/IE3/IE3_BackHover.png similarity index 100% rename from TimeHACK.Main/Resources/IE3/IE3_BackHover.png rename to Histacom2/Resources/IE3/IE3_BackHover.png diff --git a/TimeHACK.Main/Resources/IE3/IE3_Forward.png b/Histacom2/Resources/IE3/IE3_Forward.png similarity index 100% rename from TimeHACK.Main/Resources/IE3/IE3_Forward.png rename to Histacom2/Resources/IE3/IE3_Forward.png diff --git a/TimeHACK.Main/Resources/IE3/IE3_ForwardHover.png b/Histacom2/Resources/IE3/IE3_ForwardHover.png similarity index 100% rename from TimeHACK.Main/Resources/IE3/IE3_ForwardHover.png rename to Histacom2/Resources/IE3/IE3_ForwardHover.png diff --git a/TimeHACK.Main/Resources/IE3/IE3_Refresh.png b/Histacom2/Resources/IE3/IE3_Refresh.png similarity index 100% rename from TimeHACK.Main/Resources/IE3/IE3_Refresh.png rename to Histacom2/Resources/IE3/IE3_Refresh.png diff --git a/TimeHACK.Main/Resources/IE3/IE3_RefreshHover.png b/Histacom2/Resources/IE3/IE3_RefreshHover.png similarity index 100% rename from TimeHACK.Main/Resources/IE3/IE3_RefreshHover.png rename to Histacom2/Resources/IE3/IE3_RefreshHover.png diff --git a/TimeHACK.Main/Resources/IE3/IE3_Stop.png b/Histacom2/Resources/IE3/IE3_Stop.png similarity index 100% rename from TimeHACK.Main/Resources/IE3/IE3_Stop.png rename to Histacom2/Resources/IE3/IE3_Stop.png diff --git a/TimeHACK.Main/Resources/IE3/IE3_StopHover.png b/Histacom2/Resources/IE3/IE3_StopHover.png similarity index 100% rename from TimeHACK.Main/Resources/IE3/IE3_StopHover.png rename to Histacom2/Resources/IE3/IE3_StopHover.png diff --git a/TimeHACK.Main/Resources/IE3/IE3_SwirlyThings.png b/Histacom2/Resources/IE3/IE3_SwirlyThings.png similarity index 100% rename from TimeHACK.Main/Resources/IE3/IE3_SwirlyThings.png rename to Histacom2/Resources/IE3/IE3_SwirlyThings.png diff --git a/TimeHACK.Main/Resources/IE4/google.jpg b/Histacom2/Resources/IE4/google.jpg similarity index 100% rename from TimeHACK.Main/Resources/IE4/google.jpg rename to Histacom2/Resources/IE4/google.jpg diff --git a/TimeHACK.Main/Resources/IE4/googlehome.html b/Histacom2/Resources/IE4/googlehome.html similarity index 100% rename from TimeHACK.Main/Resources/IE4/googlehome.html rename to Histacom2/Resources/IE4/googlehome.html diff --git a/TimeHACK.Main/Resources/IE4/googleprototype.html b/Histacom2/Resources/IE4/googleprototype.html similarity index 96% rename from TimeHACK.Main/Resources/IE4/googleprototype.html rename to Histacom2/Resources/IE4/googleprototype.html index 8d29bf9..1071867 100644 --- a/TimeHACK.Main/Resources/IE4/googleprototype.html +++ b/Histacom2/Resources/IE4/googleprototype.html @@ -12,7 +12,7 @@
-
+
diff --git a/TimeHACK.Main/Resources/IE4/ie4about.png b/Histacom2/Resources/IE4/ie4about.png similarity index 100% rename from TimeHACK.Main/Resources/IE4/ie4about.png rename to Histacom2/Resources/IE4/ie4about.png diff --git a/TimeHACK.Main/Resources/IE4/ie4start.html b/Histacom2/Resources/IE4/ie4start.html similarity index 100% rename from TimeHACK.Main/Resources/IE4/ie4start.html rename to Histacom2/Resources/IE4/ie4start.html diff --git a/TimeHACK.Main/Resources/IE4/nopage.bmp b/Histacom2/Resources/IE4/nopage.bmp similarity index 100% rename from TimeHACK.Main/Resources/IE4/nopage.bmp rename to Histacom2/Resources/IE4/nopage.bmp diff --git a/TimeHACK.Main/Resources/IE4/padams.html b/Histacom2/Resources/IE4/padams.html similarity index 100% rename from TimeHACK.Main/Resources/IE4/padams.html rename to Histacom2/Resources/IE4/padams.html diff --git a/TimeHACK.Main/Resources/IE4/start.png b/Histacom2/Resources/IE4/start.png similarity index 100% rename from TimeHACK.Main/Resources/IE4/start.png rename to Histacom2/Resources/IE4/start.png diff --git a/TimeHACK.Main/Resources/IE4/start_googlink.png b/Histacom2/Resources/IE4/start_googlink.png similarity index 100% rename from TimeHACK.Main/Resources/IE4/start_googlink.png rename to Histacom2/Resources/IE4/start_googlink.png diff --git a/TimeHACK.Main/Resources/IE4/start_padamslink.png b/Histacom2/Resources/IE4/start_padamslink.png similarity index 100% rename from TimeHACK.Main/Resources/IE4/start_padamslink.png rename to Histacom2/Resources/IE4/start_padamslink.png diff --git a/TimeHACK.Main/Resources/Icon128x.ico b/Histacom2/Resources/Icon128x.ico similarity index 100% rename from TimeHACK.Main/Resources/Icon128x.ico rename to Histacom2/Resources/Icon128x.ico diff --git a/TimeHACK.Main/Resources/LauncherSideBar.png b/Histacom2/Resources/LauncherSideBar.png similarity index 100% rename from TimeHACK.Main/Resources/LauncherSideBar.png rename to Histacom2/Resources/LauncherSideBar.png diff --git a/TimeHACK.Main/Resources/Lemon's LCD.ttf b/Histacom2/Resources/Lemon's LCD.ttf similarity index 100% rename from TimeHACK.Main/Resources/Lemon's LCD.ttf rename to Histacom2/Resources/Lemon's LCD.ttf diff --git a/TimeHACK.Main/Resources/LeviWindows.ttf b/Histacom2/Resources/LeviWindows.ttf similarity index 100% rename from TimeHACK.Main/Resources/LeviWindows.ttf rename to Histacom2/Resources/LeviWindows.ttf diff --git a/TimeHACK.Main/Resources/MS-DOS-logo-1.png b/Histacom2/Resources/MS-DOS-logo-1.png similarity index 100% rename from TimeHACK.Main/Resources/MS-DOS-logo-1.png rename to Histacom2/Resources/MS-DOS-logo-1.png diff --git a/TimeHACK.Main/Resources/MSDOSPromptToolStripMenuItem1.Image.png b/Histacom2/Resources/MSDOSPromptToolStripMenuItem1.Image.png similarity index 100% rename from TimeHACK.Main/Resources/MSDOSPromptToolStripMenuItem1.Image.png rename to Histacom2/Resources/MSDOSPromptToolStripMenuItem1.Image.png diff --git a/TimeHACK.Main/Resources/MinesweepNumBox.png b/Histacom2/Resources/MinesweepNumBox.png similarity index 100% rename from TimeHACK.Main/Resources/MinesweepNumBox.png rename to Histacom2/Resources/MinesweepNumBox.png diff --git a/TimeHACK.Main/Resources/SeizureWarning.png b/Histacom2/Resources/SeizureWarning.png similarity index 100% rename from TimeHACK.Main/Resources/SeizureWarning.png rename to Histacom2/Resources/SeizureWarning.png diff --git a/Histacom2/Resources/TitleScreen/Histacom2_Logo.png b/Histacom2/Resources/TitleScreen/Histacom2_Logo.png new file mode 100644 index 0000000..b9a3c4b Binary files /dev/null and b/Histacom2/Resources/TitleScreen/Histacom2_Logo.png differ diff --git a/TimeHACK.Main/Resources/TitleScreen/TaskBarButton.png b/Histacom2/Resources/TitleScreen/TaskBarButton.png similarity index 100% rename from TimeHACK.Main/Resources/TitleScreen/TaskBarButton.png rename to Histacom2/Resources/TitleScreen/TaskBarButton.png diff --git a/TimeHACK.Main/Resources/TitleScreen/TaskBarClock.png b/Histacom2/Resources/TitleScreen/TaskBarClock.png similarity index 100% rename from TimeHACK.Main/Resources/TitleScreen/TaskBarClock.png rename to Histacom2/Resources/TitleScreen/TaskBarClock.png diff --git a/TimeHACK.Main/Resources/TitleScreen/TimeHACK_Logo.png b/Histacom2/Resources/TitleScreen/TimeHACK_Logo.png similarity index 100% rename from TimeHACK.Main/Resources/TitleScreen/TimeHACK_Logo.png rename to Histacom2/Resources/TitleScreen/TimeHACK_Logo.png diff --git a/TimeHACK.Main/Resources/Win2000WebBackground.png b/Histacom2/Resources/Win2000WebBackground.png similarity index 100% rename from TimeHACK.Main/Resources/Win2000WebBackground.png rename to Histacom2/Resources/Win2000WebBackground.png diff --git a/TimeHACK.Main/Resources/Win95Help.png b/Histacom2/Resources/Win95Help.png similarity index 100% rename from TimeHACK.Main/Resources/Win95Help.png rename to Histacom2/Resources/Win95Help.png diff --git a/TimeHACK.Main/Resources/Win98SideBar.png b/Histacom2/Resources/Win98SideBar.png similarity index 100% rename from TimeHACK.Main/Resources/Win98SideBar.png rename to Histacom2/Resources/Win98SideBar.png diff --git a/TimeHACK.Main/Resources/Win98WebBackground.png b/Histacom2/Resources/Win98WebBackground.png similarity index 100% rename from TimeHACK.Main/Resources/Win98WebBackground.png rename to Histacom2/Resources/Win98WebBackground.png diff --git a/TimeHACK.Main/Resources/WinAboutSeparator95.png b/Histacom2/Resources/WinAboutSeparator95.png similarity index 100% rename from TimeHACK.Main/Resources/WinAboutSeparator95.png rename to Histacom2/Resources/WinAboutSeparator95.png diff --git a/TimeHACK.Main/Resources/WinClassic/16Color.png b/Histacom2/Resources/WinClassic/16Color.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/16Color.png rename to Histacom2/Resources/WinClassic/16Color.png diff --git a/TimeHACK.Main/Resources/WinClassic/256Color.png b/Histacom2/Resources/WinClassic/256Color.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/256Color.png rename to Histacom2/Resources/WinClassic/256Color.png diff --git a/TimeHACK.Main/Resources/WinClassic/AIMbuddyjoin.wav b/Histacom2/Resources/WinClassic/AIMbuddyjoin.wav similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/AIMbuddyjoin.wav rename to Histacom2/Resources/WinClassic/AIMbuddyjoin.wav diff --git a/TimeHACK.Main/Resources/WinClassic/AIMbuddyleave.wav b/Histacom2/Resources/WinClassic/AIMbuddyleave.wav similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/AIMbuddyleave.wav rename to Histacom2/Resources/WinClassic/AIMbuddyleave.wav diff --git a/TimeHACK.Main/Resources/WinClassic/AIMfile.wav b/Histacom2/Resources/WinClassic/AIMfile.wav similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/AIMfile.wav rename to Histacom2/Resources/WinClassic/AIMfile.wav diff --git a/TimeHACK.Main/Resources/WinClassic/AIMmessagereceived.wav b/Histacom2/Resources/WinClassic/AIMmessagereceived.wav similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/AIMmessagereceived.wav rename to Histacom2/Resources/WinClassic/AIMmessagereceived.wav diff --git a/TimeHACK.Main/Resources/WinClassic/AIMmessagesent.wav b/Histacom2/Resources/WinClassic/AIMmessagesent.wav similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/AIMmessagesent.wav rename to Histacom2/Resources/WinClassic/AIMmessagesent.wav diff --git a/Histacom2/Resources/WinClassic/LauncherSideBar.png b/Histacom2/Resources/WinClassic/LauncherSideBar.png new file mode 100644 index 0000000..07743c7 Binary files /dev/null and b/Histacom2/Resources/WinClassic/LauncherSideBar.png differ diff --git a/TimeHACK.Main/Resources/WinClassic/TrueColor.png b/Histacom2/Resources/WinClassic/TrueColor.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/TrueColor.png rename to Histacom2/Resources/WinClassic/TrueColor.png diff --git a/TimeHACK.Main/Resources/WinClassic/Win95ComputerIcon.png b/Histacom2/Resources/WinClassic/Win95ComputerIcon.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/Win95ComputerIcon.png rename to Histacom2/Resources/WinClassic/Win95ComputerIcon.png diff --git a/TimeHACK.Main/Resources/WinClassic/Win95ControlPanelIcon.png b/Histacom2/Resources/WinClassic/Win95ControlPanelIcon.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/Win95ControlPanelIcon.png rename to Histacom2/Resources/WinClassic/Win95ControlPanelIcon.png diff --git a/TimeHACK.Main/Resources/WinClassic/Win95DesktopIcon.png b/Histacom2/Resources/WinClassic/Win95DesktopIcon.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/Win95DesktopIcon.png rename to Histacom2/Resources/WinClassic/Win95DesktopIcon.png diff --git a/TimeHACK.Main/Resources/WinClassic/Win95Error.png b/Histacom2/Resources/WinClassic/Win95Error.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/Win95Error.png rename to Histacom2/Resources/WinClassic/Win95Error.png diff --git a/TimeHACK.Main/Resources/WinClassic/Win95File.png b/Histacom2/Resources/WinClassic/Win95File.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/Win95File.png rename to Histacom2/Resources/WinClassic/Win95File.png diff --git a/TimeHACK.Main/Resources/WinClassic/Win95HardDiskIcon.png b/Histacom2/Resources/WinClassic/Win95HardDiskIcon.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/Win95HardDiskIcon.png rename to Histacom2/Resources/WinClassic/Win95HardDiskIcon.png diff --git a/TimeHACK.Main/Resources/WinClassic/Win95IconNotepad.png b/Histacom2/Resources/WinClassic/Win95IconNotepad.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/Win95IconNotepad.png rename to Histacom2/Resources/WinClassic/Win95IconNotepad.png diff --git a/TimeHACK.Main/Resources/WinClassic/Win95Info.png b/Histacom2/Resources/WinClassic/Win95Info.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/Win95Info.png rename to Histacom2/Resources/WinClassic/Win95Info.png diff --git a/TimeHACK.Main/Resources/WinClassic/Win95NetworkIcon.png b/Histacom2/Resources/WinClassic/Win95NetworkIcon.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/Win95NetworkIcon.png rename to Histacom2/Resources/WinClassic/Win95NetworkIcon.png diff --git a/TimeHACK.Main/Resources/WinClassic/Win95PrintersFolder.png b/Histacom2/Resources/WinClassic/Win95PrintersFolder.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/Win95PrintersFolder.png rename to Histacom2/Resources/WinClassic/Win95PrintersFolder.png diff --git a/TimeHACK.Main/Resources/WinClassic/Win95RecycleIcon.png b/Histacom2/Resources/WinClassic/Win95RecycleIcon.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/Win95RecycleIcon.png rename to Histacom2/Resources/WinClassic/Win95RecycleIcon.png diff --git a/TimeHACK.Main/Resources/WinClassic/Win95SideBar.png b/Histacom2/Resources/WinClassic/Win95SideBar.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/Win95SideBar.png rename to Histacom2/Resources/WinClassic/Win95SideBar.png diff --git a/TimeHACK.Main/Resources/WinClassic/Win95Start.wav b/Histacom2/Resources/WinClassic/Win95Start.wav similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/Win95Start.wav rename to Histacom2/Resources/WinClassic/Win95Start.wav diff --git a/TimeHACK.Main/Resources/WinClassic/Win95Warning.png b/Histacom2/Resources/WinClassic/Win95Warning.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/Win95Warning.png rename to Histacom2/Resources/WinClassic/Win95Warning.png diff --git a/TimeHACK.Main/Resources/WinClassic/Win95WordpadIcon2.png b/Histacom2/Resources/WinClassic/Win95WordpadIcon2.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/Win95WordpadIcon2.png rename to Histacom2/Resources/WinClassic/Win95WordpadIcon2.png diff --git a/TimeHACK.Main/Resources/WinClassic/Win98Computer.png b/Histacom2/Resources/WinClassic/Win98Computer.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/Win98Computer.png rename to Histacom2/Resources/WinClassic/Win98Computer.png diff --git a/TimeHACK.Main/Resources/WinClassic/Win98Start.wav b/Histacom2/Resources/WinClassic/Win98Start.wav similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/Win98Start.wav rename to Histacom2/Resources/WinClassic/Win98Start.wav diff --git a/TimeHACK.Main/Resources/WinClassic/Win98Stop.WAV b/Histacom2/Resources/WinClassic/Win98Stop.WAV similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/Win98Stop.WAV rename to Histacom2/Resources/WinClassic/Win98Stop.WAV diff --git a/TimeHACK.Main/Resources/WinClassic/WinAboutSeparator95.png b/Histacom2/Resources/WinClassic/WinAboutSeparator95.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinAboutSeparator95.png rename to Histacom2/Resources/WinClassic/WinAboutSeparator95.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicAddressBookDeleteIcon.png b/Histacom2/Resources/WinClassic/WinClassicAddressBookDeleteIcon.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicAddressBookDeleteIcon.png rename to Histacom2/Resources/WinClassic/WinClassicAddressBookDeleteIcon.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicAddressBookNewIcon.png b/Histacom2/Resources/WinClassic/WinClassicAddressBookNewIcon.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicAddressBookNewIcon.png rename to Histacom2/Resources/WinClassic/WinClassicAddressBookNewIcon.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicAddressBookPropertiesIcon.png b/Histacom2/Resources/WinClassic/WinClassicAddressBookPropertiesIcon.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicAddressBookPropertiesIcon.png rename to Histacom2/Resources/WinClassic/WinClassicAddressBookPropertiesIcon.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicApp.png b/Histacom2/Resources/WinClassic/WinClassicApp.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicApp.png rename to Histacom2/Resources/WinClassic/WinClassicApp.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicCalc.png b/Histacom2/Resources/WinClassic/WinClassicCalc.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicCalc.png rename to Histacom2/Resources/WinClassic/WinClassicCalc.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicCalcBig.png b/Histacom2/Resources/WinClassic/WinClassicCalcBig.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicCalcBig.png rename to Histacom2/Resources/WinClassic/WinClassicCalcBig.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicClock.png b/Histacom2/Resources/WinClassic/WinClassicClock.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicClock.png rename to Histacom2/Resources/WinClassic/WinClassicClock.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicComputer.png b/Histacom2/Resources/WinClassic/WinClassicComputer.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicComputer.png rename to Histacom2/Resources/WinClassic/WinClassicComputer.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicCopy.png b/Histacom2/Resources/WinClassic/WinClassicCopy.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicCopy.png rename to Histacom2/Resources/WinClassic/WinClassicCopy.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicCut.png b/Histacom2/Resources/WinClassic/WinClassicCut.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicCut.png rename to Histacom2/Resources/WinClassic/WinClassicCut.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicDisplayExample.png b/Histacom2/Resources/WinClassic/WinClassicDisplayExample.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicDisplayExample.png rename to Histacom2/Resources/WinClassic/WinClassicDisplayExample.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicDocuments.png b/Histacom2/Resources/WinClassic/WinClassicDocuments.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicDocuments.png rename to Histacom2/Resources/WinClassic/WinClassicDocuments.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicEndings.png b/Histacom2/Resources/WinClassic/WinClassicEndings.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicEndings.png rename to Histacom2/Resources/WinClassic/WinClassicEndings.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicEndingsIcon.png b/Histacom2/Resources/WinClassic/WinClassicEndingsIcon.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicEndingsIcon.png rename to Histacom2/Resources/WinClassic/WinClassicEndingsIcon.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicEndingsLocked.png b/Histacom2/Resources/WinClassic/WinClassicEndingsLocked.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicEndingsLocked.png rename to Histacom2/Resources/WinClassic/WinClassicEndingsLocked.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicFind.png b/Histacom2/Resources/WinClassic/WinClassicFind.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicFind.png rename to Histacom2/Resources/WinClassic/WinClassicFind.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicFolder.png b/Histacom2/Resources/WinClassic/WinClassicFolder.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicFolder.png rename to Histacom2/Resources/WinClassic/WinClassicFolder.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicGENERALApplicationToolbarBackground.png b/Histacom2/Resources/WinClassic/WinClassicGENERALApplicationToolbarBackground.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicGENERALApplicationToolbarBackground.png rename to Histacom2/Resources/WinClassic/WinClassicGENERALApplicationToolbarBackground.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicHWCV.png b/Histacom2/Resources/WinClassic/WinClassicHWCV.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicHWCV.png rename to Histacom2/Resources/WinClassic/WinClassicHWCV.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicHelp.png b/Histacom2/Resources/WinClassic/WinClassicHelp.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicHelp.png rename to Histacom2/Resources/WinClassic/WinClassicHelp.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicIE4.png b/Histacom2/Resources/WinClassic/WinClassicIE4.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicIE4.png rename to Histacom2/Resources/WinClassic/WinClassicIE4.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicInbox.png b/Histacom2/Resources/WinClassic/WinClassicInbox.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicInbox.png rename to Histacom2/Resources/WinClassic/WinClassicInbox.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicInstallPic.png b/Histacom2/Resources/WinClassic/WinClassicInstallPic.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicInstallPic.png rename to Histacom2/Resources/WinClassic/WinClassicInstallPic.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicMSN.png b/Histacom2/Resources/WinClassic/WinClassicMSN.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicMSN.png rename to Histacom2/Resources/WinClassic/WinClassicMSN.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicMinesweeper.png b/Histacom2/Resources/WinClassic/WinClassicMinesweeper.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicMinesweeper.png rename to Histacom2/Resources/WinClassic/WinClassicMinesweeper.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicNetworking.png b/Histacom2/Resources/WinClassic/WinClassicNetworking.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicNetworking.png rename to Histacom2/Resources/WinClassic/WinClassicNetworking.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicNew.png b/Histacom2/Resources/WinClassic/WinClassicNew.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicNew.png rename to Histacom2/Resources/WinClassic/WinClassicNew.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicNotepad.png b/Histacom2/Resources/WinClassic/WinClassicNotepad.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicNotepad.png rename to Histacom2/Resources/WinClassic/WinClassicNotepad.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicNotepadBig.png b/Histacom2/Resources/WinClassic/WinClassicNotepadBig.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicNotepadBig.png rename to Histacom2/Resources/WinClassic/WinClassicNotepadBig.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicOpenFolderSmall.png b/Histacom2/Resources/WinClassic/WinClassicOpenFolderSmall.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicOpenFolderSmall.png rename to Histacom2/Resources/WinClassic/WinClassicOpenFolderSmall.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicOutlook.png b/Histacom2/Resources/WinClassic/WinClassicOutlook.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicOutlook.png rename to Histacom2/Resources/WinClassic/WinClassicOutlook.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicPaint.png b/Histacom2/Resources/WinClassic/WinClassicPaint.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicPaint.png rename to Histacom2/Resources/WinClassic/WinClassicPaint.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicPaste.png b/Histacom2/Resources/WinClassic/WinClassicPaste.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicPaste.png rename to Histacom2/Resources/WinClassic/WinClassicPaste.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicProgramItem.png b/Histacom2/Resources/WinClassic/WinClassicProgramItem.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicProgramItem.png rename to Histacom2/Resources/WinClassic/WinClassicProgramItem.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicPrograms.png b/Histacom2/Resources/WinClassic/WinClassicPrograms.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicPrograms.png rename to Histacom2/Resources/WinClassic/WinClassicPrograms.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicRecycle.png b/Histacom2/Resources/WinClassic/WinClassicRecycle.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicRecycle.png rename to Histacom2/Resources/WinClassic/WinClassicRecycle.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicRegedit.png b/Histacom2/Resources/WinClassic/WinClassicRegedit.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicRegedit.png rename to Histacom2/Resources/WinClassic/WinClassicRegedit.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicRun.png b/Histacom2/Resources/WinClassic/WinClassicRun.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicRun.png rename to Histacom2/Resources/WinClassic/WinClassicRun.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicSettings.png b/Histacom2/Resources/WinClassic/WinClassicSettings.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicSettings.png rename to Histacom2/Resources/WinClassic/WinClassicSettings.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicSetup.png b/Histacom2/Resources/WinClassic/WinClassicSetup.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicSetup.png rename to Histacom2/Resources/WinClassic/WinClassicSetup.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicShutdown.png b/Histacom2/Resources/WinClassic/WinClassicShutdown.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicShutdown.png rename to Histacom2/Resources/WinClassic/WinClassicShutdown.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicStart.png b/Histacom2/Resources/WinClassic/WinClassicStart.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicStart.png rename to Histacom2/Resources/WinClassic/WinClassicStart.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicSuspend.png b/Histacom2/Resources/WinClassic/WinClassicSuspend.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicSuspend.png rename to Histacom2/Resources/WinClassic/WinClassicSuspend.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicTaskBar.png b/Histacom2/Resources/WinClassic/WinClassicTaskBar.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicTaskBar.png rename to Histacom2/Resources/WinClassic/WinClassicTaskBar.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicTaskbarItem.png b/Histacom2/Resources/WinClassic/WinClassicTaskbarItem.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicTaskbarItem.png rename to Histacom2/Resources/WinClassic/WinClassicTaskbarItem.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicTime.png b/Histacom2/Resources/WinClassic/WinClassicTime.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicTime.png rename to Histacom2/Resources/WinClassic/WinClassicTime.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicUndo.png b/Histacom2/Resources/WinClassic/WinClassicUndo.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicUndo.png rename to Histacom2/Resources/WinClassic/WinClassicUndo.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicWebchat.png b/Histacom2/Resources/WinClassic/WinClassicWebchat.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicWebchat.png rename to Histacom2/Resources/WinClassic/WinClassicWebchat.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicWordpad.png b/Histacom2/Resources/WinClassic/WinClassicWordpad.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/WinClassicWordpad.png rename to Histacom2/Resources/WinClassic/WinClassicWordpad.png diff --git a/TimeHACK.Main/Resources/WinClassic/sliversilver.png b/Histacom2/Resources/WinClassic/sliversilver.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/sliversilver.png rename to Histacom2/Resources/WinClassic/sliversilver.png diff --git a/TimeHACK.Main/Resources/WinClassic/tada.wav b/Histacom2/Resources/WinClassic/tada.wav similarity index 100% rename from TimeHACK.Main/Resources/WinClassic/tada.wav rename to Histacom2/Resources/WinClassic/tada.wav diff --git a/TimeHACK.main/Resources/WinClassicAbout95.png b/Histacom2/Resources/WinClassicAbout95.png similarity index 100% rename from TimeHACK.main/Resources/WinClassicAbout95.png rename to Histacom2/Resources/WinClassicAbout95.png diff --git a/TimeHACK.Main/Resources/WinClassicGENERALApplicationToolBoxBackground.png b/Histacom2/Resources/WinClassicGENERALApplicationToolBoxBackground.png similarity index 100% rename from TimeHACK.Main/Resources/WinClassicGENERALApplicationToolBoxBackground.png rename to Histacom2/Resources/WinClassicGENERALApplicationToolBoxBackground.png diff --git a/TimeHACK.Main/Resources/XCross.png b/Histacom2/Resources/XCross.png similarity index 100% rename from TimeHACK.Main/Resources/XCross.png rename to Histacom2/Resources/XCross.png diff --git a/TimeHACK.Main/Resources/XCross_highlighted.png b/Histacom2/Resources/XCross_highlighted.png similarity index 100% rename from TimeHACK.Main/Resources/XCross_highlighted.png rename to Histacom2/Resources/XCross_highlighted.png diff --git a/TimeHACK.Main/Resources/distort1.wav b/Histacom2/Resources/distort1.wav similarity index 100% rename from TimeHACK.Main/Resources/distort1.wav rename to Histacom2/Resources/distort1.wav diff --git a/TimeHACK.Main/Resources/ie4_back.png b/Histacom2/Resources/ie4_back.png similarity index 100% rename from TimeHACK.Main/Resources/ie4_back.png rename to Histacom2/Resources/ie4_back.png diff --git a/TimeHACK.Main/Resources/ie4_favorites.png b/Histacom2/Resources/ie4_favorites.png similarity index 100% rename from TimeHACK.Main/Resources/ie4_favorites.png rename to Histacom2/Resources/ie4_favorites.png diff --git a/TimeHACK.Main/Resources/ie4_forward.png b/Histacom2/Resources/ie4_forward.png similarity index 100% rename from TimeHACK.Main/Resources/ie4_forward.png rename to Histacom2/Resources/ie4_forward.png diff --git a/TimeHACK.Main/Resources/ie4_go.png b/Histacom2/Resources/ie4_go.png similarity index 100% rename from TimeHACK.Main/Resources/ie4_go.png rename to Histacom2/Resources/ie4_go.png diff --git a/TimeHACK.Main/Resources/ie4_history.png b/Histacom2/Resources/ie4_history.png similarity index 100% rename from TimeHACK.Main/Resources/ie4_history.png rename to Histacom2/Resources/ie4_history.png diff --git a/TimeHACK.Main/Resources/ie4_home.png b/Histacom2/Resources/ie4_home.png similarity index 100% rename from TimeHACK.Main/Resources/ie4_home.png rename to Histacom2/Resources/ie4_home.png diff --git a/TimeHACK.Main/Resources/ie4_hsplitter.png b/Histacom2/Resources/ie4_hsplitter.png similarity index 100% rename from TimeHACK.Main/Resources/ie4_hsplitter.png rename to Histacom2/Resources/ie4_hsplitter.png diff --git a/TimeHACK.Main/Resources/ie4_hsplitter1.png b/Histacom2/Resources/ie4_hsplitter1.png similarity index 100% rename from TimeHACK.Main/Resources/ie4_hsplitter1.png rename to Histacom2/Resources/ie4_hsplitter1.png diff --git a/TimeHACK.Main/Resources/ie4_hsplitter2.png b/Histacom2/Resources/ie4_hsplitter2.png similarity index 100% rename from TimeHACK.Main/Resources/ie4_hsplitter2.png rename to Histacom2/Resources/ie4_hsplitter2.png diff --git a/TimeHACK.Main/Resources/ie4_mail.png b/Histacom2/Resources/ie4_mail.png similarity index 100% rename from TimeHACK.Main/Resources/ie4_mail.png rename to Histacom2/Resources/ie4_mail.png diff --git a/TimeHACK.Main/Resources/ie4_print.png b/Histacom2/Resources/ie4_print.png similarity index 100% rename from TimeHACK.Main/Resources/ie4_print.png rename to Histacom2/Resources/ie4_print.png diff --git a/TimeHACK.Main/Resources/ie4_refresh.png b/Histacom2/Resources/ie4_refresh.png similarity index 100% rename from TimeHACK.Main/Resources/ie4_refresh.png rename to Histacom2/Resources/ie4_refresh.png diff --git a/TimeHACK.Main/Resources/ie4_search.png b/Histacom2/Resources/ie4_search.png similarity index 100% rename from TimeHACK.Main/Resources/ie4_search.png rename to Histacom2/Resources/ie4_search.png diff --git a/TimeHACK.Main/Resources/ie4_stop.png b/Histacom2/Resources/ie4_stop.png similarity index 100% rename from TimeHACK.Main/Resources/ie4_stop.png rename to Histacom2/Resources/ie4_stop.png diff --git a/TimeHACK.Main/Resources/ie4_vsplitter.png b/Histacom2/Resources/ie4_vsplitter.png similarity index 100% rename from TimeHACK.Main/Resources/ie4_vsplitter.png rename to Histacom2/Resources/ie4_vsplitter.png diff --git a/TimeHACK.Main/Resources/minesweepSquare.png b/Histacom2/Resources/minesweepSquare.png similarity index 100% rename from TimeHACK.Main/Resources/minesweepSquare.png rename to Histacom2/Resources/minesweepSquare.png diff --git a/TimeHACK.Main/Resources/minesweepSquare0.png b/Histacom2/Resources/minesweepSquare0.png similarity index 100% rename from TimeHACK.Main/Resources/minesweepSquare0.png rename to Histacom2/Resources/minesweepSquare0.png diff --git a/TimeHACK.Main/Resources/minesweepSquare1.png b/Histacom2/Resources/minesweepSquare1.png similarity index 100% rename from TimeHACK.Main/Resources/minesweepSquare1.png rename to Histacom2/Resources/minesweepSquare1.png diff --git a/TimeHACK.Main/Resources/minesweepSquare2.png b/Histacom2/Resources/minesweepSquare2.png similarity index 100% rename from TimeHACK.Main/Resources/minesweepSquare2.png rename to Histacom2/Resources/minesweepSquare2.png diff --git a/TimeHACK.Main/Resources/minesweepSquare3.png b/Histacom2/Resources/minesweepSquare3.png similarity index 100% rename from TimeHACK.Main/Resources/minesweepSquare3.png rename to Histacom2/Resources/minesweepSquare3.png diff --git a/TimeHACK.Main/Resources/minesweepSquare4.png b/Histacom2/Resources/minesweepSquare4.png similarity index 100% rename from TimeHACK.Main/Resources/minesweepSquare4.png rename to Histacom2/Resources/minesweepSquare4.png diff --git a/TimeHACK.Main/Resources/minesweepSquare5.png b/Histacom2/Resources/minesweepSquare5.png similarity index 100% rename from TimeHACK.Main/Resources/minesweepSquare5.png rename to Histacom2/Resources/minesweepSquare5.png diff --git a/TimeHACK.Main/Resources/minesweepSquare6.png b/Histacom2/Resources/minesweepSquare6.png similarity index 100% rename from TimeHACK.Main/Resources/minesweepSquare6.png rename to Histacom2/Resources/minesweepSquare6.png diff --git a/TimeHACK.Main/Resources/minesweepSquare7.png b/Histacom2/Resources/minesweepSquare7.png similarity index 100% rename from TimeHACK.Main/Resources/minesweepSquare7.png rename to Histacom2/Resources/minesweepSquare7.png diff --git a/TimeHACK.Main/Resources/minesweepSquare8.png b/Histacom2/Resources/minesweepSquare8.png similarity index 100% rename from TimeHACK.Main/Resources/minesweepSquare8.png rename to Histacom2/Resources/minesweepSquare8.png diff --git a/TimeHACK.Main/Resources/minesweepSquareExploded.png b/Histacom2/Resources/minesweepSquareExploded.png similarity index 100% rename from TimeHACK.Main/Resources/minesweepSquareExploded.png rename to Histacom2/Resources/minesweepSquareExploded.png diff --git a/TimeHACK.Main/Resources/minesweepSquareMine.png b/Histacom2/Resources/minesweepSquareMine.png similarity index 100% rename from TimeHACK.Main/Resources/minesweepSquareMine.png rename to Histacom2/Resources/minesweepSquareMine.png diff --git a/TimeHACK.Main/Resources/minesweepSquareQuestion.png b/Histacom2/Resources/minesweepSquareQuestion.png similarity index 100% rename from TimeHACK.Main/Resources/minesweepSquareQuestion.png rename to Histacom2/Resources/minesweepSquareQuestion.png diff --git a/TimeHACK.Main/Resources/minesweepSquareWrong.png b/Histacom2/Resources/minesweepSquareWrong.png similarity index 100% rename from TimeHACK.Main/Resources/minesweepSquareWrong.png rename to Histacom2/Resources/minesweepSquareWrong.png diff --git a/TimeHACK.Main/Resources/minesweepeprlogo.PNG b/Histacom2/Resources/minesweepeprlogo.PNG similarity index 100% rename from TimeHACK.Main/Resources/minesweepeprlogo.PNG rename to Histacom2/Resources/minesweepeprlogo.PNG diff --git a/TimeHACK.Main/Resources/minsweeper flag.PNG b/Histacom2/Resources/minsweeper flag.PNG similarity index 100% rename from TimeHACK.Main/Resources/minsweeper flag.PNG rename to Histacom2/Resources/minsweeper flag.PNG diff --git a/TimeHACK.Main/Resources/minsweeper gasp.png b/Histacom2/Resources/minsweeper gasp.png similarity index 100% rename from TimeHACK.Main/Resources/minsweeper gasp.png rename to Histacom2/Resources/minsweeper gasp.png diff --git a/TimeHACK.Main/Resources/minsweeper sad.PNG b/Histacom2/Resources/minsweeper sad.PNG similarity index 100% rename from TimeHACK.Main/Resources/minsweeper sad.PNG rename to Histacom2/Resources/minsweeper sad.PNG diff --git a/TimeHACK.Main/Resources/minsweeper smile.PNG b/Histacom2/Resources/minsweeper smile.PNG similarity index 100% rename from TimeHACK.Main/Resources/minsweeper smile.PNG rename to Histacom2/Resources/minsweeper smile.PNG diff --git a/TimeHACK.Main/Resources/minsweeper win.png b/Histacom2/Resources/minsweeper win.png similarity index 100% rename from TimeHACK.Main/Resources/minsweeper win.png rename to Histacom2/Resources/minsweeper win.png diff --git a/TimeHACK.Main/Resources/modem_dial.wav b/Histacom2/Resources/modem_dial.wav similarity index 100% rename from TimeHACK.Main/Resources/modem_dial.wav rename to Histacom2/Resources/modem_dial.wav diff --git a/TimeHACK.Main/Resources/msdosprompt.png b/Histacom2/Resources/msdosprompt.png similarity index 100% rename from TimeHACK.Main/Resources/msdosprompt.png rename to Histacom2/Resources/msdosprompt.png diff --git a/TimeHACK.Main/Resources/shell32_21.ico_16x16.png b/Histacom2/Resources/shell32_21.ico_16x16.png similarity index 100% rename from TimeHACK.Main/Resources/shell32_21.ico_16x16.png rename to Histacom2/Resources/shell32_21.ico_16x16.png diff --git a/TimeHACK.Main/Resources/std_beep.wav b/Histacom2/Resources/std_beep.wav similarity index 100% rename from TimeHACK.Main/Resources/std_beep.wav rename to Histacom2/Resources/std_beep.wav diff --git a/TimeHACK.Main/Resources/std_gobeep.wav b/Histacom2/Resources/std_gobeep.wav similarity index 100% rename from TimeHACK.Main/Resources/std_gobeep.wav rename to Histacom2/Resources/std_gobeep.wav diff --git a/TimeHACK.Main/Resources/termCopy.png b/Histacom2/Resources/termCopy.png similarity index 100% rename from TimeHACK.Main/Resources/termCopy.png rename to Histacom2/Resources/termCopy.png diff --git a/TimeHACK.Main/Resources/termFont.png b/Histacom2/Resources/termFont.png similarity index 100% rename from TimeHACK.Main/Resources/termFont.png rename to Histacom2/Resources/termFont.png diff --git a/TimeHACK.Main/Resources/termMark.png b/Histacom2/Resources/termMark.png similarity index 100% rename from TimeHACK.Main/Resources/termMark.png rename to Histacom2/Resources/termMark.png diff --git a/TimeHACK.Main/Resources/termMax.png b/Histacom2/Resources/termMax.png similarity index 100% rename from TimeHACK.Main/Resources/termMax.png rename to Histacom2/Resources/termMax.png diff --git a/TimeHACK.Main/Resources/termNothing.png b/Histacom2/Resources/termNothing.png similarity index 100% rename from TimeHACK.Main/Resources/termNothing.png rename to Histacom2/Resources/termNothing.png diff --git a/TimeHACK.Main/Resources/termPaste.png b/Histacom2/Resources/termPaste.png similarity index 100% rename from TimeHACK.Main/Resources/termPaste.png rename to Histacom2/Resources/termPaste.png diff --git a/TimeHACK.Main/Resources/termSettings.png b/Histacom2/Resources/termSettings.png similarity index 100% rename from TimeHACK.Main/Resources/termSettings.png rename to Histacom2/Resources/termSettings.png diff --git a/TimeHACK.Main/Resources/win95_splitter.png b/Histacom2/Resources/win95_splitter.png similarity index 100% rename from TimeHACK.Main/Resources/win95_splitter.png rename to Histacom2/Resources/win95_splitter.png diff --git a/TimeHACK.Main/Resources/win95_welcome.png b/Histacom2/Resources/win95_welcome.png similarity index 100% rename from TimeHACK.Main/Resources/win95_welcome.png rename to Histacom2/Resources/win95_welcome.png diff --git a/TimeHACK.Main/Resources/win95_welcometip.png b/Histacom2/Resources/win95_welcometip.png similarity index 100% rename from TimeHACK.Main/Resources/win95_welcometip.png rename to Histacom2/Resources/win95_welcometip.png diff --git a/TimeHACK.Main/Resources/windows_command_prompt.ttf b/Histacom2/Resources/windows_command_prompt.ttf similarity index 100% rename from TimeHACK.Main/Resources/windows_command_prompt.ttf rename to Histacom2/Resources/windows_command_prompt.ttf diff --git a/TimeHACK.Main/Resources/wmsui32_1001.ico_16x16.png b/Histacom2/Resources/wmsui32_1001.ico_16x16.png similarity index 100% rename from TimeHACK.Main/Resources/wmsui32_1001.ico_16x16.png rename to Histacom2/Resources/wmsui32_1001.ico_16x16.png diff --git a/TimeHACK.Main/Resources/wordpad_bold.png b/Histacom2/Resources/wordpad_bold.png similarity index 100% rename from TimeHACK.Main/Resources/wordpad_bold.png rename to Histacom2/Resources/wordpad_bold.png diff --git a/TimeHACK.Main/Resources/wordpad_copy.png b/Histacom2/Resources/wordpad_copy.png similarity index 100% rename from TimeHACK.Main/Resources/wordpad_copy.png rename to Histacom2/Resources/wordpad_copy.png diff --git a/TimeHACK.Main/Resources/wordpad_cut.png b/Histacom2/Resources/wordpad_cut.png similarity index 100% rename from TimeHACK.Main/Resources/wordpad_cut.png rename to Histacom2/Resources/wordpad_cut.png diff --git a/TimeHACK.Main/Resources/wordpad_find.png b/Histacom2/Resources/wordpad_find.png similarity index 100% rename from TimeHACK.Main/Resources/wordpad_find.png rename to Histacom2/Resources/wordpad_find.png diff --git a/TimeHACK.Main/Resources/wordpad_italic.png b/Histacom2/Resources/wordpad_italic.png similarity index 100% rename from TimeHACK.Main/Resources/wordpad_italic.png rename to Histacom2/Resources/wordpad_italic.png diff --git a/TimeHACK.Main/Resources/wordpad_new.png b/Histacom2/Resources/wordpad_new.png similarity index 100% rename from TimeHACK.Main/Resources/wordpad_new.png rename to Histacom2/Resources/wordpad_new.png diff --git a/TimeHACK.Main/Resources/wordpad_open.png b/Histacom2/Resources/wordpad_open.png similarity index 100% rename from TimeHACK.Main/Resources/wordpad_open.png rename to Histacom2/Resources/wordpad_open.png diff --git a/TimeHACK.Main/Resources/wordpad_paste.png b/Histacom2/Resources/wordpad_paste.png similarity index 100% rename from TimeHACK.Main/Resources/wordpad_paste.png rename to Histacom2/Resources/wordpad_paste.png diff --git a/TimeHACK.Main/Resources/wordpad_print.png b/Histacom2/Resources/wordpad_print.png similarity index 100% rename from TimeHACK.Main/Resources/wordpad_print.png rename to Histacom2/Resources/wordpad_print.png diff --git a/TimeHACK.Main/Resources/wordpad_printpreview.png b/Histacom2/Resources/wordpad_printpreview.png similarity index 100% rename from TimeHACK.Main/Resources/wordpad_printpreview.png rename to Histacom2/Resources/wordpad_printpreview.png diff --git a/TimeHACK.Main/Resources/wordpad_save.png b/Histacom2/Resources/wordpad_save.png similarity index 100% rename from TimeHACK.Main/Resources/wordpad_save.png rename to Histacom2/Resources/wordpad_save.png diff --git a/TimeHACK.Main/Resources/wordpad_underline.png b/Histacom2/Resources/wordpad_underline.png similarity index 100% rename from TimeHACK.Main/Resources/wordpad_underline.png rename to Histacom2/Resources/wordpad_underline.png diff --git a/TimeHACK.Main/SaveDialogs/LoadGameDialog.Designer.cs b/Histacom2/SaveDialogs/LoadGameDialog.Designer.cs similarity index 99% rename from TimeHACK.Main/SaveDialogs/LoadGameDialog.Designer.cs rename to Histacom2/SaveDialogs/LoadGameDialog.Designer.cs index cacfe9e..4dd8a30 100644 --- a/TimeHACK.Main/SaveDialogs/LoadGameDialog.Designer.cs +++ b/Histacom2/SaveDialogs/LoadGameDialog.Designer.cs @@ -1,4 +1,4 @@ -namespace TimeHACK +namespace Histacom2 { partial class LoadGameDialog { diff --git a/TimeHACK.Main/SaveDialogs/LoadGameDialog.cs b/Histacom2/SaveDialogs/LoadGameDialog.cs similarity index 96% rename from TimeHACK.Main/SaveDialogs/LoadGameDialog.cs rename to Histacom2/SaveDialogs/LoadGameDialog.cs index 89e875e..9cea1b9 100644 --- a/TimeHACK.Main/SaveDialogs/LoadGameDialog.cs +++ b/Histacom2/SaveDialogs/LoadGameDialog.cs @@ -8,9 +8,9 @@ using System.Threading.Tasks; using System.Windows.Forms; using System.IO; -using static TimeHACK.Engine.SaveSystem; +using static Histacom2.Engine.SaveSystem; -namespace TimeHACK +namespace Histacom2 { public partial class LoadGameDialog : Form { diff --git a/TimeHACK.Main/SaveDialogs/LoadGameProfileItem.resx b/Histacom2/SaveDialogs/LoadGameDialog.resx similarity index 100% rename from TimeHACK.Main/SaveDialogs/LoadGameProfileItem.resx rename to Histacom2/SaveDialogs/LoadGameDialog.resx diff --git a/TimeHACK.Main/SaveDialogs/LoadGameProfileItem.Designer.cs b/Histacom2/SaveDialogs/LoadGameProfileItem.Designer.cs similarity index 99% rename from TimeHACK.Main/SaveDialogs/LoadGameProfileItem.Designer.cs rename to Histacom2/SaveDialogs/LoadGameProfileItem.Designer.cs index 1df1330..7a59037 100644 --- a/TimeHACK.Main/SaveDialogs/LoadGameProfileItem.Designer.cs +++ b/Histacom2/SaveDialogs/LoadGameProfileItem.Designer.cs @@ -1,4 +1,4 @@ -namespace TimeHACK +namespace Histacom2 { partial class LoadGameProfileItem { diff --git a/TimeHACK.Main/SaveDialogs/LoadGameProfileItem.cs b/Histacom2/SaveDialogs/LoadGameProfileItem.cs similarity index 98% rename from TimeHACK.Main/SaveDialogs/LoadGameProfileItem.cs rename to Histacom2/SaveDialogs/LoadGameProfileItem.cs index 10d1a25..bdc0b7c 100644 --- a/TimeHACK.Main/SaveDialogs/LoadGameProfileItem.cs +++ b/Histacom2/SaveDialogs/LoadGameProfileItem.cs @@ -7,10 +7,10 @@ using System.Text; using System.Threading.Tasks; using System.Windows.Forms; -using static TimeHACK.Engine.SaveSystem; +using static Histacom2.Engine.SaveSystem; using System.IO; -namespace TimeHACK +namespace Histacom2 { public partial class LoadGameProfileItem : UserControl, IMessageFilter { diff --git a/TimeHACK.Main/SaveDialogs/NewGameDialog.resx b/Histacom2/SaveDialogs/LoadGameProfileItem.resx similarity index 100% rename from TimeHACK.Main/SaveDialogs/NewGameDialog.resx rename to Histacom2/SaveDialogs/LoadGameProfileItem.resx diff --git a/TimeHACK.Main/SaveDialogs/NewGameDialog.Designer.cs b/Histacom2/SaveDialogs/NewGameDialog.Designer.cs similarity index 99% rename from TimeHACK.Main/SaveDialogs/NewGameDialog.Designer.cs rename to Histacom2/SaveDialogs/NewGameDialog.Designer.cs index 8f899ae..266061b 100644 --- a/TimeHACK.Main/SaveDialogs/NewGameDialog.Designer.cs +++ b/Histacom2/SaveDialogs/NewGameDialog.Designer.cs @@ -1,4 +1,4 @@ -namespace TimeHACK +namespace Histacom2 { partial class NewGameDialog { diff --git a/TimeHACK.Main/SaveDialogs/NewGameDialog.cs b/Histacom2/SaveDialogs/NewGameDialog.cs similarity index 95% rename from TimeHACK.Main/SaveDialogs/NewGameDialog.cs rename to Histacom2/SaveDialogs/NewGameDialog.cs index e9af8cb..7609d5d 100644 --- a/TimeHACK.Main/SaveDialogs/NewGameDialog.cs +++ b/Histacom2/SaveDialogs/NewGameDialog.cs @@ -7,12 +7,12 @@ using System.Text; using System.Threading.Tasks; using System.Windows.Forms; -using TimeHACK.Engine; +using Histacom2.Engine; using Newtonsoft.Json; -using static TimeHACK.Engine.SaveSystem; +using static Histacom2.Engine.SaveSystem; using System.IO; -namespace TimeHACK +namespace Histacom2 { public partial class NewGameDialog : Form { @@ -34,7 +34,7 @@ private void btnCancl_Click(object sender, EventArgs e) private void btnInfo_Click(object sender, EventArgs e) { - MessageBox.Show("The game's profiles are stored in your AppData /TimeHACK/Profiles - the rest is for you to figure out!"); + MessageBox.Show("The game's profiles are stored in your AppData /Histacom2/Profiles - the rest is for you to figure out!"); } private void btnOk_Click(object sender, EventArgs e) diff --git a/TimeHACK.Main/SaveDialogs/SaveFileTroubleShooter.resx b/Histacom2/SaveDialogs/NewGameDialog.resx similarity index 100% rename from TimeHACK.Main/SaveDialogs/SaveFileTroubleShooter.resx rename to Histacom2/SaveDialogs/NewGameDialog.resx diff --git a/TimeHACK.Main/SaveDialogs/SaveFileTroubleShooter.Designer.cs b/Histacom2/SaveDialogs/SaveFileTroubleShooter.Designer.cs similarity index 99% rename from TimeHACK.Main/SaveDialogs/SaveFileTroubleShooter.Designer.cs rename to Histacom2/SaveDialogs/SaveFileTroubleShooter.Designer.cs index a242366..4c11576 100644 --- a/TimeHACK.Main/SaveDialogs/SaveFileTroubleShooter.Designer.cs +++ b/Histacom2/SaveDialogs/SaveFileTroubleShooter.Designer.cs @@ -1,4 +1,4 @@ -namespace TimeHACK.SaveDialogs +namespace Histacom2.SaveDialogs { partial class SaveFileTroubleShooter { diff --git a/TimeHACK.Main/SaveDialogs/SaveFileTroubleShooter.cs b/Histacom2/SaveDialogs/SaveFileTroubleShooter.cs similarity index 98% rename from TimeHACK.Main/SaveDialogs/SaveFileTroubleShooter.cs rename to Histacom2/SaveDialogs/SaveFileTroubleShooter.cs index 410d2d6..f094640 100644 --- a/TimeHACK.Main/SaveDialogs/SaveFileTroubleShooter.cs +++ b/Histacom2/SaveDialogs/SaveFileTroubleShooter.cs @@ -7,10 +7,10 @@ using System.Text; using System.Threading.Tasks; using System.Windows.Forms; -using TimeHACK.Engine; +using Histacom2.Engine; using System.IO; -namespace TimeHACK.SaveDialogs +namespace Histacom2.SaveDialogs { public partial class SaveFileTroubleShooter : Form { diff --git a/TimeHACK.Main/SeizureWarning.resx b/Histacom2/SaveDialogs/SaveFileTroubleShooter.resx similarity index 100% rename from TimeHACK.Main/SeizureWarning.resx rename to Histacom2/SaveDialogs/SaveFileTroubleShooter.resx diff --git a/TimeHACK.Main/SeizureWarning.Designer.cs b/Histacom2/SeizureWarning.Designer.cs similarity index 96% rename from TimeHACK.Main/SeizureWarning.Designer.cs rename to Histacom2/SeizureWarning.Designer.cs index fc86942..b340f86 100644 --- a/TimeHACK.Main/SeizureWarning.Designer.cs +++ b/Histacom2/SeizureWarning.Designer.cs @@ -1,4 +1,4 @@ -namespace TimeHACK +namespace Histacom2 { partial class SeizureWarning { @@ -37,7 +37,7 @@ private void InitializeComponent() // this.pictureBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); - this.pictureBox1.BackgroundImage = global::TimeHACK.Properties.Resources.SeizureWarning; + this.pictureBox1.BackgroundImage = global::Histacom2.Properties.Resources.SeizureWarning; this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; this.pictureBox1.Location = new System.Drawing.Point(0, 0); this.pictureBox1.Name = "pictureBox1"; diff --git a/TimeHACK.Main/SeizureWarning.cs b/Histacom2/SeizureWarning.cs similarity index 96% rename from TimeHACK.Main/SeizureWarning.cs rename to Histacom2/SeizureWarning.cs index ea14576..4a209a3 100644 --- a/TimeHACK.Main/SeizureWarning.cs +++ b/Histacom2/SeizureWarning.cs @@ -9,7 +9,7 @@ using System.Windows.Forms; using System.IO; -namespace TimeHACK +namespace Histacom2 { public partial class SeizureWarning : UserControl { diff --git a/TimeHACK.Engine/Template/Win9XBSOD.resx b/Histacom2/SeizureWarning.resx similarity index 97% rename from TimeHACK.Engine/Template/Win9XBSOD.resx rename to Histacom2/SeizureWarning.resx index 29dcb1b..1af7de1 100644 --- a/TimeHACK.Engine/Template/Win9XBSOD.resx +++ b/Histacom2/SeizureWarning.resx @@ -1,120 +1,120 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 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 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 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 + \ No newline at end of file diff --git a/TimeHACK.Main/TitleScreen.Designer.cs b/Histacom2/TitleScreen.Designer.cs similarity index 94% rename from TimeHACK.Main/TitleScreen.Designer.cs rename to Histacom2/TitleScreen.Designer.cs index e03530a..ef7b0e4 100644 --- a/TimeHACK.Main/TitleScreen.Designer.cs +++ b/Histacom2/TitleScreen.Designer.cs @@ -1,4 +1,4 @@ -namespace TimeHACK +namespace Histacom2 { partial class TitleScreen { @@ -45,8 +45,8 @@ private void InitializeComponent() this.DocumentsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.ProgramsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.SettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.HelpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.achievementsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.HelpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.ShutdownToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.ossidestartmenu = new System.Windows.Forms.Panel(); this.osimage = new System.Windows.Forms.PictureBox(); @@ -85,7 +85,7 @@ private void InitializeComponent() this.program.Dock = System.Windows.Forms.DockStyle.Fill; this.program.Location = new System.Drawing.Point(0, 0); this.program.Name = "program"; - this.program.Size = new System.Drawing.Size(791, 424); + this.program.Size = new System.Drawing.Size(791, 300); this.program.TabIndex = 11; // // programContent @@ -97,7 +97,7 @@ private void InitializeComponent() this.programContent.Dock = System.Windows.Forms.DockStyle.Fill; this.programContent.Location = new System.Drawing.Point(0, 0); this.programContent.Name = "programContent"; - this.programContent.Size = new System.Drawing.Size(791, 424); + this.programContent.Size = new System.Drawing.Size(791, 300); this.programContent.TabIndex = 9; // // panel2 @@ -110,7 +110,7 @@ private void InitializeComponent() this.panel2.Controls.Add(this.gameversion); this.panel2.Controls.Add(this.startbutton); this.panel2.Dock = System.Windows.Forms.DockStyle.Bottom; - this.panel2.Location = new System.Drawing.Point(0, 396); + this.panel2.Location = new System.Drawing.Point(0, 272); this.panel2.Name = "panel2"; this.panel2.Size = new System.Drawing.Size(791, 28); this.panel2.TabIndex = 10; @@ -210,7 +210,7 @@ private void InitializeComponent() this.startmenu.BackColor = System.Drawing.Color.Silver; this.startmenu.Controls.Add(this.startmenuitems); this.startmenu.Controls.Add(this.ossidestartmenu); - this.startmenu.Location = new System.Drawing.Point(0, 176); + this.startmenu.Location = new System.Drawing.Point(0, 52); this.startmenu.Name = "startmenu"; this.startmenu.Size = new System.Drawing.Size(165, 223); this.startmenu.TabIndex = 11; @@ -232,15 +232,15 @@ private void InitializeComponent() this.startmenuitems.Name = "startmenuitems"; this.startmenuitems.Padding = new System.Windows.Forms.Padding(4, 2, 0, 0); this.startmenuitems.RenderMode = System.Windows.Forms.ToolStripRenderMode.System; - this.startmenuitems.Size = new System.Drawing.Size(143, 239); + this.startmenuitems.Size = new System.Drawing.Size(143, 220); this.startmenuitems.TabIndex = 0; this.startmenuitems.Text = "StartMenu"; // // DocumentsToolStripMenuItem // this.DocumentsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.DocumentsToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; - this.DocumentsToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicPrograms; + this.DocumentsToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; + this.DocumentsToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicPrograms; this.DocumentsToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.DocumentsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.DocumentsToolStripMenuItem.Name = "DocumentsToolStripMenuItem"; @@ -252,9 +252,9 @@ private void InitializeComponent() // ProgramsToolStripMenuItem // this.ProgramsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.ProgramsToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.ProgramsToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver; this.ProgramsToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; - this.ProgramsToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicDocuments; + this.ProgramsToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicDocuments; this.ProgramsToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.ProgramsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.ProgramsToolStripMenuItem.Name = "ProgramsToolStripMenuItem"; @@ -266,7 +266,7 @@ private void InitializeComponent() // SettingsToolStripMenuItem // this.SettingsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.SettingsToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicSettings; + this.SettingsToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicSettings; this.SettingsToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.SettingsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.SettingsToolStripMenuItem.Name = "SettingsToolStripMenuItem"; @@ -274,10 +274,20 @@ private void InitializeComponent() this.SettingsToolStripMenuItem.Size = new System.Drawing.Size(138, 36); this.SettingsToolStripMenuItem.Text = "Settings"; // + // achievementsToolStripMenuItem + // + this.achievementsToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicEndingsIcon; + this.achievementsToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.achievementsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.achievementsToolStripMenuItem.Name = "achievementsToolStripMenuItem"; + this.achievementsToolStripMenuItem.Size = new System.Drawing.Size(138, 36); + this.achievementsToolStripMenuItem.Text = "Achievements"; + this.achievementsToolStripMenuItem.Click += new System.EventHandler(this.achievementsToolStripMenuItem_Click); + // // HelpToolStripMenuItem // this.HelpToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.HelpToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicHelp; + this.HelpToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicHelp; this.HelpToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.HelpToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.HelpToolStripMenuItem.Name = "HelpToolStripMenuItem"; @@ -286,20 +296,10 @@ private void InitializeComponent() this.HelpToolStripMenuItem.Size = new System.Drawing.Size(138, 36); this.HelpToolStripMenuItem.Text = "Help"; // - // achievementsToolStripMenuItem - // - this.achievementsToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicEndingsIcon; - this.achievementsToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; - this.achievementsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; - this.achievementsToolStripMenuItem.Name = "achievementsToolStripMenuItem"; - this.achievementsToolStripMenuItem.Size = new System.Drawing.Size(138, 36); - this.achievementsToolStripMenuItem.Text = "Achievements"; - this.achievementsToolStripMenuItem.Click += new System.EventHandler(this.achievementsToolStripMenuItem_Click); - // // ShutdownToolStripMenuItem // this.ShutdownToolStripMenuItem.BackColor = System.Drawing.Color.Silver; - this.ShutdownToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicShutdown; + this.ShutdownToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicShutdown; this.ShutdownToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.ShutdownToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.ShutdownToolStripMenuItem.Name = "ShutdownToolStripMenuItem"; @@ -320,7 +320,7 @@ private void InitializeComponent() // this.osimage.BackColor = System.Drawing.Color.Gray; this.osimage.Dock = System.Windows.Forms.DockStyle.Fill; - this.osimage.Image = ((System.Drawing.Image)(resources.GetObject("osimage.Image"))); + this.osimage.Image = global::Histacom2.Properties.Resources.LauncherSideBar; this.osimage.Location = new System.Drawing.Point(0, 0); this.osimage.Name = "osimage"; this.osimage.Size = new System.Drawing.Size(21, 216); @@ -331,10 +331,10 @@ private void InitializeComponent() // pictureBox2 // this.pictureBox2.BackColor = System.Drawing.Color.Transparent; - this.pictureBox2.Image = global::TimeHACK.Properties.Resources.TimeHACK_Logo; - this.pictureBox2.Location = new System.Drawing.Point(29, 12); + this.pictureBox2.Image = global::Histacom2.Properties.Resources.Histacom2_Logo; + this.pictureBox2.Location = new System.Drawing.Point(171, 88); this.pictureBox2.Name = "pictureBox2"; - this.pictureBox2.Size = new System.Drawing.Size(755, 350); + this.pictureBox2.Size = new System.Drawing.Size(613, 98); this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox2.TabIndex = 12; this.pictureBox2.TabStop = false; @@ -353,7 +353,7 @@ private void InitializeComponent() this.bottomrightcorner.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.bottomrightcorner.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("bottomrightcorner.BackgroundImage"))); this.bottomrightcorner.Cursor = System.Windows.Forms.Cursors.SizeNWSE; - this.bottomrightcorner.Location = new System.Drawing.Point(787, 420); + this.bottomrightcorner.Location = new System.Drawing.Point(787, 296); this.bottomrightcorner.Name = "bottomrightcorner"; this.bottomrightcorner.Size = new System.Drawing.Size(4, 4); this.bottomrightcorner.TabIndex = 4; @@ -362,7 +362,7 @@ private void InitializeComponent() // this.bottomleftcorner.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); this.bottomleftcorner.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("bottomleftcorner.BackgroundImage"))); - this.bottomleftcorner.Location = new System.Drawing.Point(0, 420); + this.bottomleftcorner.Location = new System.Drawing.Point(0, 296); this.bottomleftcorner.Name = "bottomleftcorner"; this.bottomleftcorner.Size = new System.Drawing.Size(4, 4); this.bottomleftcorner.TabIndex = 2; @@ -385,12 +385,12 @@ private void InitializeComponent() this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.Color.Teal; - this.ClientSize = new System.Drawing.Size(791, 424); + this.ClientSize = new System.Drawing.Size(791, 300); this.Controls.Add(this.program); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Name = "TitleScreen"; this.Tag = "ignoreFormOnTaskbar"; - this.Text = "TimeHACK Launcher"; + this.Text = "Histacom Launcher"; this.Load += new System.EventHandler(this.TitleScreen_Load); this.program.ResumeLayout(false); this.programContent.ResumeLayout(false); diff --git a/TimeHACK.Main/TitleScreen.cs b/Histacom2/TitleScreen.cs similarity index 95% rename from TimeHACK.Main/TitleScreen.cs rename to Histacom2/TitleScreen.cs index a41c413..380f6a9 100644 --- a/TimeHACK.Main/TitleScreen.cs +++ b/Histacom2/TitleScreen.cs @@ -1,18 +1,18 @@ -using TimeHACK.Properties; +using Histacom2.Properties; using System; using System.Drawing; using System.IO; using System.Windows.Forms; -using TimeHACK.OS.Win95; -using TimeHACK.OS.Win98; -using TimeHACK.Engine; -using static TimeHACK.Engine.SaveSystem; -using TimeHACK.SaveDialogs; +using Histacom2.OS.Win95; +using Histacom2.OS.Win98; +using Histacom2.Engine; +using static Histacom2.Engine.SaveSystem; +using Histacom2.SaveDialogs; using System.Runtime.InteropServices; using System.Reflection; using System.ComponentModel; -namespace TimeHACK +namespace Histacom2 { public partial class TitleScreen : Form { @@ -126,7 +126,7 @@ private void TitleScreen_Load(object sender, EventArgs e) Resources.google.Save(Path.Combine(DataDirectory, "google.jpg")); // Set GameVersion - gameversion.Text = "Alpha 1.0.3"; + gameversion.Text = "Version 2.0.0.3"; // Initialize Font File.WriteAllBytes(DataDirectory + "\\LeviWindows.ttf", Resources.LeviWindows); @@ -156,7 +156,7 @@ private static void leet() Label label1 = new Label(); label1.Parent = leet; label1.AutoSize = true; - label1.Text = "Thank you for making TimeHACK possible."; + label1.Text = "Thank you for making Histacom2 possible."; wm.StartWin95(leet, "Thank You", null, true, true); } @@ -268,7 +268,7 @@ private void gameversion_MouseHover(object sender, EventArgs e) private void gameversion_MouseLeave(object sender, EventArgs e) { - gameversion.Text = "Alpha 1.0.3"; + gameversion.Text = "2.0.0.3"; } private void startbutton_Click(object sender, EventArgs e) @@ -291,9 +291,9 @@ private void closebutton_Click_1(object sender, EventArgs e) private void updateText_Tick(object sender, EventArgs e) { - if (gameversion.Text != "Alpha 1.0.3") + if (gameversion.Text != "2.0.0.3") { - gameversion.Text = "Alpha 1.0.3"; + gameversion.Text = "2.0.0.3"; updateText.Stop(); } } diff --git a/TimeHACK.Main/TitleScreen.resx b/Histacom2/TitleScreen.resx similarity index 99% rename from TimeHACK.Main/TitleScreen.resx rename to Histacom2/TitleScreen.resx index dbffa8f..8071b69 100644 --- a/TimeHACK.Main/TitleScreen.resx +++ b/Histacom2/TitleScreen.resx @@ -150,6 +150,9 @@ 153, 17 + + 153, 17 + iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAIAAAAmkwkpAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO @@ -176,21 +179,6 @@ iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAIAAAAmkwkpAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO wgAADsIBFShKgAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAaSURBVBhXYzh8 /DQcgTj/YQDKQZEBcY6fBgAaSCiZEc9BxAAAAABJRU5ErkJggg== - - - - - iVBORw0KGgoAAAANSUhEUgAAABUAAADYCAIAAACLAz+rAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wQAADsEBuJFr7QAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xNkRpr/UAAAHWSURBVGhD7dBb - cuJADEDRrJ51ZWdEZV2Zfkh2E9kVZkrni1brGsPXI6f6nOpzqs+pPqf6nOpzqs+pPqf6nOpzqs+pPqf6 - nOpzqs+pPqf6nOpzqs+p/n3P55NPbd9OD8ha2LcXLt0RnOdecO5xt2G06X4/99MjmG4YmfH/Y6vZ4xy8 - 19gL1nvcTZxeEBmmHr8XpIexCHt1+ohXr6uLaK7sf+cD++EXqnmixl5jwdkwneZdz0rwVdz1t6+eyyBW - bDQ7Y88hNqz9b73g7GHD7cVwN5sXnF4xMkw3jDZdr9gKsGScXrDb467n9+ve7od3We012zFd6SkMUxP2 - rBumk7FnfcL15NWzaJjanMNk7Dk0orm67vuVbs+4noz9js4wnYT9jgcYpua8V9SG6Xq/y/aDV68PXkRz - ZT8bVl3Vx/6tXrcX0VzZ/87N/bfRzzpshb1mu32it7u3e6ELyu9ZbAxDXRM39/vnea5u7iPs3dULFj1s - bMJesN7jzhz1gsgwbZz0p+7seWkPGwc9iwGWop6tGHsf33OOnfx/HGJhL/QRLjY+/v+LsHd7zznm9yLV - a3yAver9ft11PW+2vRufYpqI6nP8719XvaFeQ1O903NeU33O3/aPxw8jRp/ZGK00QQAAAABJRU5ErkJg - gg== diff --git a/TimeHACK.Main/packages.config b/Histacom2/packages.config similarity index 100% rename from TimeHACK.Main/packages.config rename to Histacom2/packages.config diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.resx b/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.resx deleted file mode 100644 index 9c71c8b..0000000 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.resx +++ /dev/null @@ -1,1120 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 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 - - - - 17, 17 - - - { - "messages": [ - { - "user": "System", - "delay": 5000, - "message": "SkyHigh has joined the chat.", - "special": "addsh", - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 5000, - "message": "damn", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 6000, - "message": "I thought my friend rain49 was going to be on...", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 6000, - "message": "hmm... how about we play a game while we wait for my friend to come?", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 5000, - "message": "alright, go ahead and guess what my name is!", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 1000, - "message": "ill make 2 buttons pop up, you click the one you want to guess", - "special": "nameguess", - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 5000, - "message": "actually, if ya dont wanna do that its fine, i guess", - "special": null, - "userchat": true - }, - { - "user": "System", - "delay": 3000, - "message": "rain49 has joined the chat.", - "special": "addrain", - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 3000, - "message": "hey rain", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 3000, - "message": "ive sort of been waiting", - "special": null, - "userchat": true - }, - { - "user": "rain49", - "delay": 4000, - "message": "sorry man", - "special": null, - "userchat": true - }, - { - "user": "rain49", - "delay": 4000, - "message": "it took a while for this to load", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 4000, - "message": "anyway... let's get to it", - "special": null, - "userchat": true - }, - { - "user": "rain49", - "delay": 5000, - "message": "wait, who's this @user guy?", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 2500, - "message": "oh, he's someone who just came on. doesnt seem to talk much", - "special": null, - "userchat": true - }, - { - "user": "rain49", - "delay": 5000, - "message": "ah ok", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 4500, - "message": "i would remove him from this chat but i cant", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 3000, - "message": "i dont think he should know about, well, ya know..", - "special": null, - "userchat": true - }, - { - "user": "rain49", - "delay": 5000, - "message": "right, that", - "special": null, - "userchat": true - }, - { - "user": "rain49", - "delay": 3500, - "message": "since he's here should we just tell him?", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 2500, - "message": "well i suppose we have to", - "special": null, - "userchat": true - }, - { - "user": "rain49", - "delay": 5000, - "message": "ok then", - "special": null, - "userchat": true - }, - { - "user": "rain49", - "delay": 5500, - "message": "so @user, we are going to break the chat rules here..", - "special": null, - "userchat": true - }, - { - "user": "rain49", - "delay": 3000, - "message": "so if you dont wanna get banned i recommend you just logout now", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 2500, - "message": "let's give him some time", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 9000, - "message": "to leave the chat", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 3500, - "message": "...", - "special": null, - "userchat": true - }, - { - "user": "rain49", - "delay": 3000, - "message": "i guess he wants to risk it", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 3000, - "message": "tell him what we will do", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 2000, - "message": "you haven't said that yet", - "special": null, - "userchat": true - }, - { - "user": "rain49", - "delay": 6000, - "message": "right, right", - "special": null, - "userchat": true - }, - { - "user": "rain49", - "delay": 4000, - "message": "so there's this really cool program on the 12padams website called skindows95", - "special": null, - "userchat": true - }, - { - "user": "rain49", - "delay": 5500, - "message": "normally youd have to pay for it", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 4000, - "message": "Yeah... it's really hard to even get to the buy button - stupid", - "special": null, - "userchat": true - }, - { - "user": "rain49", - "delay": 6500, - "message": "But.. i have a copy i can send to you and skyhigh", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 2000, - "message": "Yeah... kind of not pirating because he managed to steal a copy from someone else who bought it", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 1500, - "message": "So hey...", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 1500, - "message": "You haven't left", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 2500, - "message": "Send it now...", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 1500, - "message": "I really want to skin my system", - "special": null, - "userchat": true - }, - { - "user": "rain49", - "delay": 2500, - "message": "sending!", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 6000, - "message": "thx man", - "special": null, - "userchat": true - }, - { - "user": "System", - "delay": 3000, - "message": "File \"skin95setup.exe\" has been uploaded.", - "special": "addfile", - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 4000, - "message": "yay!", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 5000, - "message": "im downloading it now", - "special": null, - "userchat": true - }, - { - "user": "rain49", - "delay": 3500, - "message": "and @user, why dont you go and download it too?", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 4000, - "message": "i think he already is ;)", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 2000, - "message": "OH THIS IS SO COOL", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 3000, - "message": "lemme send a screenshot", - "special": null, - "userchat": true - }, - { - "user": "System", - "delay": 1500, - "message": "12padams has joined the chat.", - "special": "addpadams", - "userchat": true - }, - { - "user": "rain49", - "delay": 500, - "message": "CRAP", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 1000, - "message": "ah NO WE ARE DED", - "special": null, - "userchat": true - }, - { - "user": "rain49", - "delay": 2500, - "message": "quick guys, LOGOUT!", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 1000, - "message": "i cant! the close button isnt working!", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 2500, - "message": "caught ya pirating my software!", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 1500, - "message": "now that i have you, lets have some fun, shall we?", - "special": null, - "userchat": true - }, - { - "user": "rain49", - "delay": 1500, - "message": "guys, shutdown the pc from start!", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 2000, - "message": "not so fast!", - "special": "nostart", - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 2500, - "message": "where did the start button go?", - "special": null, - "userchat": true - }, - { - "user": "rain49", - "delay": 2000, - "message": "12padams disabled it, CRAP!", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 3500, - "message": "feeling scared yet?", - "special": null, - "userchat": true - }, - { - "user": "rain49", - "delay": 3500, - "message": "no, cuz i can just unplug my computer!", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 3500, - "message": "i wouldnt do that if i were you..", - "special": null, - "userchat": true - }, - { - "user": "rain49", - "delay": 1000, - "message": "oh yeah? just watch this!", - "special": null, - "userchat": true - }, - { - "user": "System", - "delay": 1500, - "message": "rain49 has left the chat.", - "special": "removerain", - "userchat": true - }, - { - "user": "12padams", - "delay": 3500, - "message": "all your computers are infected with a virus that makes them unable to boot.", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 2500, - "message": "and now, theres only two, SkyHigh, and @user.", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 5000, - "message": "please just let us go!", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 2500, - "message": "you downloaded pirated software, so you both shall be punished!", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 5000, - "message": "dont worry @user, ill look online for help!", - "special": "iconsded", - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 3000, - "message": "why cant i open anything?", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 4500, - "message": "i told you that you are going to be punished.", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 3000, - "message": "your computers have a lethal virus that i call \"Win9X.Plague\"", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 6000, - "message": "what does it do?", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 3000, - "message": "well, it disables your computers functions one by one, slowly killing it", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 3000, - "message": "anyways, time to let it do its work!", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 2500, - "message": "no please dont, just remove this virus!", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 6000, - "message": "remove the virus, you say?", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 3500, - "message": "well the whole of windows 95 is a virus! now where do i begin...", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 4500, - "message": "i see a taskbar at the bottom of the screen.", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 4000, - "message": "the taskbar was made by microsoft making its debut in windows 95", - "special": "taskbarded", - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 6000, - "message": "hey! give me back my taskbar!", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 4000, - "message": "you wanted me to remove viruses, didnt you? the taskbar was infected since it had no start button", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 1500, - "message": "and your icons are infected too so you dont need them", - "special": "iconsgone", - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 3000, - "message": "please stop!", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 4000, - "message": "you want to know how to stop this?", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 3000, - "message": "please just let us go and forget this happened!", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 9000, - "message": "well first, i need your full attention.", - "special": "bigtext", - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 3500, - "message": "please this is enough! you've done everything to convince me that I won't illegally download your software again!", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 5000, - "message": "i've done everything? no, what about this?", - "special": "notopbar", - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 5000, - "message": "damn it! he removed the buttons at the top so we cant get out...", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 3000, - "message": "please just STOP! me and @user didn't even upload the file!", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 5000, - "message": "rain uploaded it, not us!", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 4000, - "message": "and do you see him here now?", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 2000, - "message": "no, you got rid of him!", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 5000, - "message": "exactly.", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 5000, - "message": "speaking of, i need to remove that file which has been sitting here all this time!", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 3000, - "message": "there. now i can deal with you two...", - "special": "filepoof", - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 5000, - "message": "STOP PLEASE!!", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 3000, - "message": "stop? why you have been able to stop this whole time! just turn off your computer!", - "special": null, - "userchat": true - }, - { - "user": "SkyHigh", - "delay": 5000, - "message": "but i cant!", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 1500, - "message": "do you not know how? well then, let me do it for you.", - "special": null, - "userchat": true - }, - { - "user": "System", - "delay": 2500, - "message": "SkyHigh has left the chat.", - "special": "removesky", - "userchat": true - }, - { - "user": "12padams", - "delay": 3000, - "message": "now, we just have @user...", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 3500, - "message": "hmm, i dont remember you saying much", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 5000, - "message": "well, since you dont talk, you wont need this", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 4000, - "message": "you probably want to say \"WHY CANT I TALK!!1!\"", - "special": "notype", - "userchat": true - }, - { - "user": "12padams", - "delay": 5000, - "message": "but you cant, and i bet you dont know how", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 4000, - "message": "now lets see... it appears youre running windows 95 which you only got a week ago", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 5000, - "message": "so you must be new to computers", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 3000, - "message": "this is cool! i get to punish you, AND i get to teach you about computer history!", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 4000, - "message": "well, let us go back to 1982..", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 2500, - "message": "back then, we didnt have labels, so ill remove those...", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 4000, - "message": "", - "special": ".labelgone", - "userchat": false - }, - { - "user": "12padams", - "delay": 4000, - "message": "also, we didnt have wallpapers, or even color for that matter", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 3000, - "message": "hmm, this is going to be tricky..", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 3000, - "message": "i hope youre not scared of the dark!", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 4000, - "message": "", - "special": ".blackout", - "userchat": false - }, - { - "user": "12padams", - "delay": 3000, - "message": "and, we didnt even have sound back then!", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 6000, - "message": "so now, the sound is gone.", - "special": "nosound", - "userchat": true - }, - { - "user": "12padams", - "delay": 3500, - "message": "i think i almost got your computer converted, early 1980s should be enough of a punishment", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 3000, - "message": "but there are still quite a few things missing...", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 2000, - "message": "for example, the text needs to be fullscreen.", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 4000, - "message": "", - "special": ".fulltext", - "userchat": false - }, - { - "user": "12padams", - "delay": 4000, - "message": "and, theres also the scrollbar, which didnt exist back then..", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 3000, - "message": "this looks great! i really should add this to skindows 98..", - "special": "noscroll", - "userchat": true - }, - { - "user": "12padams", - "delay": 3000, - "message": "oh dear, this is embarassing..", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 5000, - "message": "i forgot to remove the mouse!", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 3000, - "message": "well then, enjoy it while you can, because im going to remove it", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 1000, - "message": "removing in 10", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 1000, - "message": "9", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 1000, - "message": "8", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 1000, - "message": "7", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 1000, - "message": "6", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 1000, - "message": "5", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 1000, - "message": "4", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 1000, - "message": "3", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 1000, - "message": "2", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 1000, - "message": "1", - "special": null, - "userchat": true - }, - { - "user": "12padams", - "delay": 5000, - "message": "goodbye mouse!", - "special": "nomouse", - "userchat": true - } - ] -} - - - If you do not agree to the following rules below DO NOT log into the chat: - -No Bullying -No Swearing -No Hacking -No Illegal Files/ Piracy - -Failure to follow these rules will result in serious irreversible consequences. - - \ No newline at end of file diff --git a/TimeHACK.Main/Resources/WinClassic/LauncherSideBar.png b/TimeHACK.Main/Resources/WinClassic/LauncherSideBar.png deleted file mode 100644 index 87f815c..0000000 Binary files a/TimeHACK.Main/Resources/WinClassic/LauncherSideBar.png and /dev/null differ diff --git a/TimeHACK.Main/Resources/WinClassic/Win98SideBar.png b/TimeHACK.Main/Resources/WinClassic/Win98SideBar.png deleted file mode 100644 index 5451da3..0000000 Binary files a/TimeHACK.Main/Resources/WinClassic/Win98SideBar.png and /dev/null differ diff --git a/TimeHACK.sln b/TimeHACK.sln deleted file mode 100644 index 77e181f..0000000 --- a/TimeHACK.sln +++ /dev/null @@ -1,38 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 15 -VisualStudioVersion = 15.0.26228.4 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TimeHACK.Main", "TimeHACK.Main\TimeHACK.Main.csproj", "{B958AA5F-8AED-456C-9C07-9E4C6C027042}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TimeHACK.Engine", "TimeHACK.Engine\TimeHACK.Engine.csproj", "{9477B70F-2D32-4E1D-857B-4624A1DEEB1B}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Debug|x86 = Debug|x86 - Release|Any CPU = Release|Any CPU - Release|x86 = Release|x86 - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {B958AA5F-8AED-456C-9C07-9E4C6C027042}.Debug|Any CPU.ActiveCfg = Release|Any CPU - {B958AA5F-8AED-456C-9C07-9E4C6C027042}.Debug|Any CPU.Build.0 = Release|Any CPU - {B958AA5F-8AED-456C-9C07-9E4C6C027042}.Debug|x86.ActiveCfg = Debug|Any CPU - {B958AA5F-8AED-456C-9C07-9E4C6C027042}.Debug|x86.Build.0 = Debug|Any CPU - {B958AA5F-8AED-456C-9C07-9E4C6C027042}.Release|Any CPU.ActiveCfg = Release|Any CPU - {B958AA5F-8AED-456C-9C07-9E4C6C027042}.Release|Any CPU.Build.0 = Release|Any CPU - {B958AA5F-8AED-456C-9C07-9E4C6C027042}.Release|x86.ActiveCfg = Release|x86 - {B958AA5F-8AED-456C-9C07-9E4C6C027042}.Release|x86.Build.0 = Release|x86 - {9477B70F-2D32-4E1D-857B-4624A1DEEB1B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {9477B70F-2D32-4E1D-857B-4624A1DEEB1B}.Debug|Any CPU.Build.0 = Debug|Any CPU - {9477B70F-2D32-4E1D-857B-4624A1DEEB1B}.Debug|x86.ActiveCfg = Debug|Any CPU - {9477B70F-2D32-4E1D-857B-4624A1DEEB1B}.Debug|x86.Build.0 = Debug|Any CPU - {9477B70F-2D32-4E1D-857B-4624A1DEEB1B}.Release|Any CPU.ActiveCfg = Release|Any CPU - {9477B70F-2D32-4E1D-857B-4624A1DEEB1B}.Release|Any CPU.Build.0 = Release|Any CPU - {9477B70F-2D32-4E1D-857B-4624A1DEEB1B}.Release|x86.ActiveCfg = Release|Any CPU - {9477B70F-2D32-4E1D-857B-4624A1DEEB1B}.Release|x86.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection -EndGlobal