Renaming the game!

This commit is contained in:
lempamo 2017-08-23 13:38:40 -04:00
parent 99fef5c573
commit 3306d36ecb
397 changed files with 2308 additions and 2381 deletions

View file

@ -1,54 +1,54 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows.Forms; using System.Windows.Forms;
using TimeHACK.Engine.Template; using Histacom2.Engine.Template;
namespace TimeHACK.Engine namespace Histacom2.Engine
{ {
public class BSODCreator public class BSODCreator
{ {
public static System.Drawing.Text.PrivateFontCollection pfc = new System.Drawing.Text.PrivateFontCollection(); public static System.Drawing.Text.PrivateFontCollection pfc = new System.Drawing.Text.PrivateFontCollection();
public enum BSODCauses public enum BSODCauses
{ {
Testing, Testing,
WimpEnding, WimpEnding,
PiracyEnding, PiracyEnding,
} }
public Win9XBSOD throw9XBSOD(bool except, BSODCauses type) public Win9XBSOD throw9XBSOD(bool except, BSODCauses type)
{ {
pfc.AddFontFile($@"{SaveSystem.GameDirectory}\Data\windows_command_prompt.ttf"); pfc.AddFontFile($@"{SaveSystem.GameDirectory}\Data\windows_command_prompt.ttf");
Win9XBSOD bsod = new Win9XBSOD(); Win9XBSOD bsod = new Win9XBSOD();
foreach (Control ctrl in bsod.Controls) { 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))); ctrl.Font = new System.Drawing.Font(pfc.Families[0], 20F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((0)));
} }
bsod.TopMost = true; bsod.TopMost = true;
bsod.FormBorderStyle = FormBorderStyle.None; bsod.FormBorderStyle = FormBorderStyle.None;
bsod.WindowState = FormWindowState.Maximized; bsod.WindowState = FormWindowState.Maximized;
switch (type) switch (type)
{ {
case BSODCauses.Testing: case BSODCauses.Testing:
bsod.textBox1.Text = "This is the testing type of BSOD. Hurrah."; bsod.textBox1.Text = "This is the testing type of BSOD. Hurrah.";
break; break;
case BSODCauses.WimpEnding: case BSODCauses.WimpEnding:
bsod.textBox1.Text = "An unknown but fatal exception has occured in the program \"wchat98.exe\". The current processes will be terminated."; bsod.textBox1.Text = "An unknown but fatal exception has occured in the program \"wchat98.exe\". The current processes will be terminated.";
break; break;
case BSODCauses.PiracyEnding: case BSODCauses.PiracyEnding:
bsod.textBox1.Text = "Vital elements of Windows were removed, but recovered. However, your data has been lost."; bsod.textBox1.Text = "Vital elements of Windows were removed, but recovered. However, your data has been lost.";
bsod.BackColor = System.Drawing.Color.Black; bsod.BackColor = System.Drawing.Color.Black;
foreach (Control ctrl in bsod.Controls) ctrl.ForeColor = System.Drawing.Color.Silver; foreach (Control ctrl in bsod.Controls) ctrl.ForeColor = System.Drawing.Color.Silver;
bsod.label1.BackColor = System.Drawing.Color.Silver; bsod.label1.BackColor = System.Drawing.Color.Silver;
bsod.label1.ForeColor = System.Drawing.Color.Black; bsod.label1.ForeColor = System.Drawing.Color.Black;
break; break;
default: default:
break; break;
} }
bsod.Show(); bsod.Show();
return bsod; return bsod;
} }
} }
} }

View file

@ -7,7 +7,7 @@
using System.IO; using System.IO;
using Newtonsoft.Json; using Newtonsoft.Json;
namespace TimeHACK.Engine namespace Histacom2.Engine
{ {
public static class DesktopController public static class DesktopController
{ {

View file

@ -6,7 +6,7 @@
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows.Forms; using System.Windows.Forms;
namespace TimeHACK.Engine namespace Histacom2.Engine
{ {
public static class FileDialogBoxManager public static class FileDialogBoxManager
{ {

View file

@ -7,8 +7,8 @@
<ProjectGuid>{9477B70F-2D32-4E1D-857B-4624A1DEEB1B}</ProjectGuid> <ProjectGuid>{9477B70F-2D32-4E1D-857B-4624A1DEEB1B}</ProjectGuid>
<OutputType>Library</OutputType> <OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder> <AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>TimeHACK.Engine</RootNamespace> <RootNamespace>Histacom2.Engine</RootNamespace>
<AssemblyName>TimeHACK.Engine</AssemblyName> <AssemblyName>Histacom2.Engine</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion> <TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment> <FileAlignment>512</FileAlignment>
</PropertyGroup> </PropertyGroup>

View file

@ -5,7 +5,7 @@
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace TimeHACK.Engine namespace Histacom2.Engine
{ {
public class MessageParser public class MessageParser
{ {

View file

@ -6,7 +6,7 @@
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows.Forms; using System.Windows.Forms;
namespace TimeHACK.Engine namespace Histacom2.Engine
{ {
public class Paintbrush public class Paintbrush
{ {

View file

@ -5,11 +5,11 @@
// General Information about an assembly is controlled through the following // General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information // set of attributes. Change these attribute values to modify the information
// associated with an assembly. // associated with an assembly.
[assembly: AssemblyTitle("TimeHACK.Engine")] [assembly: AssemblyTitle("Histacom2.Engine")]
[assembly: AssemblyDescription("")] [assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")] [assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")] [assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("TimeHACK.Engine")] [assembly: AssemblyProduct("Histacom2.Engine")]
[assembly: AssemblyCopyright("Copyright © 2017")] [assembly: AssemblyCopyright("Copyright © 2017")]
[assembly: AssemblyTrademark("")] [assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")] [assembly: AssemblyCulture("")]

View file

@ -8,7 +8,7 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
namespace TimeHACK.Engine.Properties { namespace Histacom2.Engine.Properties {
using System; using System;
@ -39,7 +39,7 @@ internal Resources() {
public static global::System.Resources.ResourceManager ResourceManager { public static global::System.Resources.ResourceManager ResourceManager {
get { get {
if (object.ReferenceEquals(resourceMan, null)) { 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; resourceMan = temp;
} }
return resourceMan; return resourceMan;

View file

Before

Width:  |  Height:  |  Size: 97 KiB

After

Width:  |  Height:  |  Size: 97 KiB

View file

Before

Width:  |  Height:  |  Size: 97 KiB

After

Width:  |  Height:  |  Size: 97 KiB

View file

Before

Width:  |  Height:  |  Size: 75 KiB

After

Width:  |  Height:  |  Size: 75 KiB

View file

Before

Width:  |  Height:  |  Size: 177 B

After

Width:  |  Height:  |  Size: 177 B

View file

Before

Width:  |  Height:  |  Size: 173 B

After

Width:  |  Height:  |  Size: 173 B

View file

Before

Width:  |  Height:  |  Size: 173 B

After

Width:  |  Height:  |  Size: 173 B

View file

Before

Width:  |  Height:  |  Size: 165 B

After

Width:  |  Height:  |  Size: 165 B

View file

Before

Width:  |  Height:  |  Size: 164 B

After

Width:  |  Height:  |  Size: 164 B

View file

Before

Width:  |  Height:  |  Size: 164 B

After

Width:  |  Height:  |  Size: 164 B

View file

Before

Width:  |  Height:  |  Size: 170 B

After

Width:  |  Height:  |  Size: 170 B

View file

Before

Width:  |  Height:  |  Size: 173 B

After

Width:  |  Height:  |  Size: 173 B

View file

Before

Width:  |  Height:  |  Size: 165 B

After

Width:  |  Height:  |  Size: 165 B

View file

Before

Width:  |  Height:  |  Size: 429 B

After

Width:  |  Height:  |  Size: 429 B

View file

Before

Width:  |  Height:  |  Size: 384 B

After

Width:  |  Height:  |  Size: 384 B

View file

Before

Width:  |  Height:  |  Size: 430 B

After

Width:  |  Height:  |  Size: 430 B

View file

Before

Width:  |  Height:  |  Size: 432 B

After

Width:  |  Height:  |  Size: 432 B

View file

Before

Width:  |  Height:  |  Size: 236 B

After

Width:  |  Height:  |  Size: 236 B

View file

Before

Width:  |  Height:  |  Size: 206 B

After

Width:  |  Height:  |  Size: 206 B

View file

Before

Width:  |  Height:  |  Size: 201 B

After

Width:  |  Height:  |  Size: 201 B

View file

Before

Width:  |  Height:  |  Size: 229 B

After

Width:  |  Height:  |  Size: 229 B

View file

Before

Width:  |  Height:  |  Size: 157 B

After

Width:  |  Height:  |  Size: 157 B

View file

Before

Width:  |  Height:  |  Size: 4.8 MiB

After

Width:  |  Height:  |  Size: 4.8 MiB

View file

@ -18,7 +18,7 @@
using System.Text.RegularExpressions; using System.Text.RegularExpressions;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace TimeHACK.Engine namespace Histacom2.Engine
{ {
public static class SaveSystem public static class SaveSystem
{ {
@ -37,7 +37,7 @@ public static string GameDirectory
{ {
get 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); var read = new BinaryReader(fobj);
fobj.Read(header, 0, magic.Length); fobj.Read(header, 0, magic.Length);
if (!magic.SequenceEqual(header)) 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(); int numprops = read.ReadInt32();
var bools = new List<System.Reflection.PropertyInfo>(); var bools = new List<System.Reflection.PropertyInfo>();
// Holy code duplication, Batman. // Holy code duplication, Batman.

View file

@ -2,7 +2,7 @@
using System.Windows.Forms; using System.Windows.Forms;
using System.Drawing; using System.Drawing;
namespace TimeHACK.Engine namespace Histacom2.Engine
{ {
public class TaskBarController public class TaskBarController
{ {

View file

@ -1,4 +1,4 @@
namespace TimeHACK.Engine.Template namespace Histacom2.Engine.Template
{ {
partial class AboutBox95 partial class AboutBox95
{ {
@ -84,7 +84,7 @@ private void InitializeComponent()
// //
// pictureBox2 // 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.Location = new System.Drawing.Point(76, 154);
this.pictureBox2.Name = "pictureBox2"; this.pictureBox2.Name = "pictureBox2";
this.pictureBox2.Size = new System.Drawing.Size(250, 2); this.pictureBox2.Size = new System.Drawing.Size(250, 2);

View file

@ -1,7 +1,7 @@
using System; using System;
using System.Windows.Forms; using System.Windows.Forms;
namespace TimeHACK.Engine.Template namespace Histacom2.Engine.Template
{ {
public partial class AboutBox95 : UserControl public partial class AboutBox95 : UserControl
{ {

View file

@ -1,4 +1,4 @@
namespace TimeHACK.Engine.Template namespace Histacom2.Engine.Template
{ {
partial class Infobox95 partial class Infobox95
{ {
@ -86,7 +86,7 @@ private void InitializeComponent()
// pictureBox1 // pictureBox1
// //
this.pictureBox1.ErrorImage = null; 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.InitialImage = null;
this.pictureBox1.Location = new System.Drawing.Point(15, 16); this.pictureBox1.Location = new System.Drawing.Point(15, 16);
this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Name = "pictureBox1";

View file

@ -4,7 +4,7 @@
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using System.Windows.Forms; using System.Windows.Forms;
namespace TimeHACK.Engine.Template namespace Histacom2.Engine.Template
{ {
public partial class Infobox95 : UserControl public partial class Infobox95 : UserControl
{ {

View file

@ -1,141 +1,141 @@
namespace TimeHACK.Engine.Template namespace Histacom2.Engine.Template
{ {
partial class Win9XBSOD partial class Win9XBSOD
{ {
/// <summary> /// <summary>
/// Required designer variable. /// Required designer variable.
/// </summary> /// </summary>
private System.ComponentModel.IContainer components = null; private System.ComponentModel.IContainer components = null;
/// <summary> /// <summary>
/// Clean up any resources being used. /// Clean up any resources being used.
/// </summary> /// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing) protected override void Dispose(bool disposing)
{ {
if (disposing && (components != null)) if (disposing && (components != null))
{ {
components.Dispose(); components.Dispose();
} }
base.Dispose(disposing); base.Dispose(disposing);
} }
#region Windows Form Designer generated code #region Windows Form Designer generated code
/// <summary> /// <summary>
/// Required method for Designer support - do not modify /// Required method for Designer support - do not modify
/// the contents of this method with the code editor. /// the contents of this method with the code editor.
/// </summary> /// </summary>
private void InitializeComponent() private void InitializeComponent()
{ {
this.label1 = new System.Windows.Forms.Label(); this.label1 = new System.Windows.Forms.Label();
this.textBox1 = new System.Windows.Forms.TextBox(); this.textBox1 = new System.Windows.Forms.TextBox();
this.textBox2 = new System.Windows.Forms.TextBox(); this.textBox2 = new System.Windows.Forms.TextBox();
this.textBox3 = new System.Windows.Forms.TextBox(); this.textBox3 = new System.Windows.Forms.TextBox();
this.panel1 = new System.Windows.Forms.Panel(); this.panel1 = new System.Windows.Forms.Panel();
this.panel1.SuspendLayout(); this.panel1.SuspendLayout();
this.SuspendLayout(); this.SuspendLayout();
// //
// label1 // label1
// //
this.label1.Anchor = System.Windows.Forms.AnchorStyles.None; this.label1.Anchor = System.Windows.Forms.AnchorStyles.None;
this.label1.AutoSize = true; this.label1.AutoSize = true;
this.label1.BackColor = System.Drawing.Color.Silver; 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.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.ForeColor = System.Drawing.Color.Blue;
this.label1.Location = new System.Drawing.Point(549, 185); this.label1.Location = new System.Drawing.Point(549, 185);
this.label1.Name = "label1"; this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(138, 31); this.label1.Size = new System.Drawing.Size(138, 31);
this.label1.TabIndex = 0; this.label1.TabIndex = 0;
this.label1.Text = " Windows "; this.label1.Text = " Windows ";
// //
// textBox1 // textBox1
// //
this.textBox1.Anchor = System.Windows.Forms.AnchorStyles.None; this.textBox1.Anchor = System.Windows.Forms.AnchorStyles.None;
this.textBox1.BackColor = System.Drawing.Color.Blue; this.textBox1.BackColor = System.Drawing.Color.Blue;
this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None; 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.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.ForeColor = System.Drawing.Color.White;
this.textBox1.Location = new System.Drawing.Point(186, 272); this.textBox1.Location = new System.Drawing.Point(186, 272);
this.textBox1.Multiline = true; this.textBox1.Multiline = true;
this.textBox1.Name = "textBox1"; this.textBox1.Name = "textBox1";
this.textBox1.ReadOnly = true; this.textBox1.ReadOnly = true;
this.textBox1.Size = new System.Drawing.Size(947, 81); this.textBox1.Size = new System.Drawing.Size(947, 81);
this.textBox1.TabIndex = 0; this.textBox1.TabIndex = 0;
this.textBox1.TabStop = false; this.textBox1.TabStop = false;
this.textBox1.Text = "A fatal exception 0E has occured at 0028:C0034B23. The current application will " + this.textBox1.Text = "A fatal exception 0E has occured at 0028:C0034B23. The current application will " +
"be terminated."; "be terminated.";
// //
// textBox2 // textBox2
// //
this.textBox2.Anchor = System.Windows.Forms.AnchorStyles.None; this.textBox2.Anchor = System.Windows.Forms.AnchorStyles.None;
this.textBox2.BackColor = System.Drawing.Color.Blue; this.textBox2.BackColor = System.Drawing.Color.Blue;
this.textBox2.BorderStyle = System.Windows.Forms.BorderStyle.None; 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.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.ForeColor = System.Drawing.Color.White;
this.textBox2.Location = new System.Drawing.Point(205, 377); this.textBox2.Location = new System.Drawing.Point(205, 377);
this.textBox2.Multiline = true; this.textBox2.Multiline = true;
this.textBox2.Name = "textBox2"; this.textBox2.Name = "textBox2";
this.textBox2.ReadOnly = true; this.textBox2.ReadOnly = true;
this.textBox2.Size = new System.Drawing.Size(947, 101); this.textBox2.Size = new System.Drawing.Size(947, 101);
this.textBox2.TabIndex = 1; this.textBox2.TabIndex = 1;
this.textBox2.TabStop = false; this.textBox2.TabStop = false;
this.textBox2.Text = "* Press any key to rewind time to before the crash.\r\n* Press ESC to shutdown yo" + 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."; "ur computer. You will lose any\r\n unsaved data in all applications.";
// //
// textBox3 // textBox3
// //
this.textBox3.Anchor = System.Windows.Forms.AnchorStyles.None; this.textBox3.Anchor = System.Windows.Forms.AnchorStyles.None;
this.textBox3.BackColor = System.Drawing.Color.Blue; this.textBox3.BackColor = System.Drawing.Color.Blue;
this.textBox3.BorderStyle = System.Windows.Forms.BorderStyle.None; 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.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.ForeColor = System.Drawing.Color.White;
this.textBox3.Location = new System.Drawing.Point(439, 506); this.textBox3.Location = new System.Drawing.Point(439, 506);
this.textBox3.Multiline = true; this.textBox3.Multiline = true;
this.textBox3.Name = "textBox3"; this.textBox3.Name = "textBox3";
this.textBox3.ReadOnly = true; this.textBox3.ReadOnly = true;
this.textBox3.Size = new System.Drawing.Size(382, 34); this.textBox3.Size = new System.Drawing.Size(382, 34);
this.textBox3.TabIndex = 2; this.textBox3.TabIndex = 2;
this.textBox3.TabStop = false; this.textBox3.TabStop = false;
this.textBox3.Text = "Press any key to rewind _"; this.textBox3.Text = "Press any key to rewind _";
// //
// panel1 // panel1
// //
this.panel1.Controls.Add(this.label1); this.panel1.Controls.Add(this.label1);
this.panel1.Controls.Add(this.textBox3); this.panel1.Controls.Add(this.textBox3);
this.panel1.Controls.Add(this.textBox1); this.panel1.Controls.Add(this.textBox1);
this.panel1.Controls.Add(this.textBox2); this.panel1.Controls.Add(this.textBox2);
this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
this.panel1.Location = new System.Drawing.Point(0, 0); this.panel1.Location = new System.Drawing.Point(0, 0);
this.panel1.Name = "panel1"; this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(1280, 720); this.panel1.Size = new System.Drawing.Size(1280, 720);
this.panel1.TabIndex = 3; this.panel1.TabIndex = 3;
// //
// Win9XBSOD // Win9XBSOD
// //
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.Blue; this.BackColor = System.Drawing.Color.Blue;
this.ClientSize = new System.Drawing.Size(1280, 720); this.ClientSize = new System.Drawing.Size(1280, 720);
this.Controls.Add(this.panel1); this.Controls.Add(this.panel1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
this.Name = "Win9XBSOD"; this.Name = "Win9XBSOD";
this.Tag = "ignoreFormOnTaskbar"; this.Tag = "ignoreFormOnTaskbar";
this.Text = "Win9XBSOD"; this.Text = "Win9XBSOD";
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Win9XBSOD_FormClosed); this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Win9XBSOD_FormClosed);
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Win9XBSOD_KeyDown); this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Win9XBSOD_KeyDown);
this.panel1.ResumeLayout(false); this.panel1.ResumeLayout(false);
this.panel1.PerformLayout(); this.panel1.PerformLayout();
this.ResumeLayout(false); this.ResumeLayout(false);
} }
#endregion #endregion
internal System.Windows.Forms.Label label1; internal System.Windows.Forms.Label label1;
internal System.Windows.Forms.TextBox textBox1; internal System.Windows.Forms.TextBox textBox1;
internal System.Windows.Forms.TextBox textBox2; internal System.Windows.Forms.TextBox textBox2;
internal System.Windows.Forms.TextBox textBox3; internal System.Windows.Forms.TextBox textBox3;
private System.Windows.Forms.Panel panel1; private System.Windows.Forms.Panel panel1;
} }
} }

View file

@ -8,7 +8,7 @@
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows.Forms; using System.Windows.Forms;
namespace TimeHACK.Engine.Template namespace Histacom2.Engine.Template
{ {
public partial class Win9XBSOD : Form public partial class Win9XBSOD : Form
{ {

View file

@ -1,4 +1,4 @@
namespace TimeHACK.Engine.Template namespace Histacom2.Engine.Template
{ {
partial class WinClassic partial class WinClassic
{ {

View file

@ -3,7 +3,7 @@
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using System.Windows.Forms; using System.Windows.Forms;
namespace TimeHACK.Engine.Template namespace Histacom2.Engine.Template
{ {
public partial class WinClassic : Form public partial class WinClassic : Form
{ {

View file

@ -6,7 +6,7 @@
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace TimeHACK.Engine namespace Histacom2.Engine
{ {
public class Theme public class Theme
{ {

View file

@ -1,4 +1,4 @@
namespace TimeHACK.Engine.UI namespace Histacom2.Engine.UI
{ {
partial class ClassicButton partial class ClassicButton
{ {

View file

@ -8,7 +8,7 @@
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows.Forms; using System.Windows.Forms;
namespace TimeHACK.Engine.UI namespace Histacom2.Engine.UI
{ {
public partial class ClassicButton : UserControl public partial class ClassicButton : UserControl
{ {

View file

@ -6,7 +6,7 @@
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows.Forms; using System.Windows.Forms;
namespace TimeHACK.UI namespace Histacom2.UI
{ {
public class ProgressBar : Control public class ProgressBar : Control
{ {

View file

@ -1,10 +1,10 @@
using System; using System;
using System.Windows.Forms; using System.Windows.Forms;
using System.Drawing; using System.Drawing;
using TimeHACK.Engine.Template; using Histacom2.Engine.Template;
using System.Media; using System.Media;
namespace TimeHACK.Engine namespace Histacom2.Engine
{ {
public class WindowManager public class WindowManager
{ {

View file

@ -1,4 +1,4 @@
namespace TimeHACK namespace Histacom2
{ {
partial class AchievementBox partial class AchievementBox
{ {
@ -50,7 +50,7 @@ private void InitializeComponent()
// //
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 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.ClientSize = new System.Drawing.Size(202, 102);
this.Controls.Add(this.button1); this.Controls.Add(this.button1);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;

View file

@ -8,9 +8,9 @@
using System.Threading; using System.Threading;
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows.Forms; using System.Windows.Forms;
using TimeHACK.Engine; using Histacom2.Engine;
namespace TimeHACK namespace Histacom2
{ {
public partial class AchievementBox : Form public partial class AchievementBox : Form
{ {

View file

@ -1,4 +1,4 @@
namespace TimeHACK namespace Histacom2
{ {
partial class AchievementScreen partial class AchievementScreen
{ {

View file

@ -7,9 +7,9 @@
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows.Forms; using System.Windows.Forms;
using TimeHACK.Engine; using Histacom2.Engine;
namespace TimeHACK namespace Histacom2
{ {
public partial class AchievementScreen : Form public partial class AchievementScreen : Form
{ {

View file

@ -1,4 +1,4 @@
namespace TimeHACK.OS.Win95.Win95Apps namespace Histacom2.OS.Win95.Win95Apps
{ {
partial class WinClassicCalculator partial class WinClassicCalculator
{ {
@ -548,7 +548,7 @@ private void InitializeComponent()
// //
// pictureBox1 // 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.pictureBox1.Location = new System.Drawing.Point(1, 24); this.pictureBox1.Location = new System.Drawing.Point(1, 24);
this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Name = "pictureBox1";

View file

@ -7,9 +7,9 @@
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows.Forms; 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 public partial class WinClassicCalculator : UserControl
{ {

View file

@ -1,4 +1,4 @@
namespace TimeHACK.OS.Win95.Win95Apps namespace Histacom2.OS.Win95.Win95Apps
{ {
partial class WinClassicDownloader partial class WinClassicDownloader
{ {

View file

@ -1,9 +1,9 @@
using System; using System;
using System.IO; using System.IO;
using System.Windows.Forms; 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 public partial class WinClassicDownloader : UserControl
{ {

View file

@ -1,4 +1,4 @@
namespace TimeHACK.OS.Win95.Win95Apps namespace Histacom2.OS.Win95.Win95Apps
{ {
partial class WinClassicNotepad partial class WinClassicNotepad
{ {
@ -73,7 +73,7 @@ private void InitializeComponent()
// fileToolStripMenuItem // fileToolStripMenuItem
// //
this.fileToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.newToolStripMenuItem, this.newToolStripMenuItem,
@ -90,7 +90,7 @@ private void InitializeComponent()
// newToolStripMenuItem // newToolStripMenuItem
// //
this.newToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.newToolStripMenuItem.Name = "newToolStripMenuItem"; this.newToolStripMenuItem.Name = "newToolStripMenuItem";
this.newToolStripMenuItem.Size = new System.Drawing.Size(142, 22); this.newToolStripMenuItem.Size = new System.Drawing.Size(142, 22);
@ -99,7 +99,7 @@ private void InitializeComponent()
// openToolStripMenuItem // openToolStripMenuItem
// //
this.openToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.openToolStripMenuItem.Name = "openToolStripMenuItem"; this.openToolStripMenuItem.Name = "openToolStripMenuItem";
this.openToolStripMenuItem.Size = new System.Drawing.Size(142, 22); this.openToolStripMenuItem.Size = new System.Drawing.Size(142, 22);
@ -109,7 +109,7 @@ private void InitializeComponent()
// saveToolStripMenuItem // saveToolStripMenuItem
// //
this.saveToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.saveToolStripMenuItem.Name = "saveToolStripMenuItem"; this.saveToolStripMenuItem.Name = "saveToolStripMenuItem";
this.saveToolStripMenuItem.Size = new System.Drawing.Size(142, 22); this.saveToolStripMenuItem.Size = new System.Drawing.Size(142, 22);
@ -119,7 +119,7 @@ private void InitializeComponent()
// saveAsToolStripMenuItem // saveAsToolStripMenuItem
// //
this.saveAsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem"; this.saveAsToolStripMenuItem.Name = "saveAsToolStripMenuItem";
this.saveAsToolStripMenuItem.Size = new System.Drawing.Size(142, 22); this.saveAsToolStripMenuItem.Size = new System.Drawing.Size(142, 22);
@ -128,7 +128,7 @@ private void InitializeComponent()
// pageSetupToolStripMenuItem // pageSetupToolStripMenuItem
// //
this.pageSetupToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.pageSetupToolStripMenuItem.Name = "pageSetupToolStripMenuItem"; this.pageSetupToolStripMenuItem.Name = "pageSetupToolStripMenuItem";
this.pageSetupToolStripMenuItem.Size = new System.Drawing.Size(142, 22); this.pageSetupToolStripMenuItem.Size = new System.Drawing.Size(142, 22);
@ -137,7 +137,7 @@ private void InitializeComponent()
// printToolStripMenuItem // printToolStripMenuItem
// //
this.printToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.printToolStripMenuItem.Name = "printToolStripMenuItem"; this.printToolStripMenuItem.Name = "printToolStripMenuItem";
this.printToolStripMenuItem.Size = new System.Drawing.Size(142, 22); this.printToolStripMenuItem.Size = new System.Drawing.Size(142, 22);
@ -146,7 +146,7 @@ private void InitializeComponent()
// exitToolStripMenuItem // exitToolStripMenuItem
// //
this.exitToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
this.exitToolStripMenuItem.Size = new System.Drawing.Size(142, 22); this.exitToolStripMenuItem.Size = new System.Drawing.Size(142, 22);
@ -156,7 +156,7 @@ private void InitializeComponent()
// editToolStripMenuItem // editToolStripMenuItem
// //
this.editToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.editToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.undoToolStripMenuItem, this.undoToolStripMenuItem,
@ -174,7 +174,7 @@ private void InitializeComponent()
// undoToolStripMenuItem // undoToolStripMenuItem
// //
this.undoToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.undoToolStripMenuItem.Name = "undoToolStripMenuItem"; this.undoToolStripMenuItem.Name = "undoToolStripMenuItem";
this.undoToolStripMenuItem.Size = new System.Drawing.Size(134, 22); this.undoToolStripMenuItem.Size = new System.Drawing.Size(134, 22);
@ -184,7 +184,7 @@ private void InitializeComponent()
// cutToolStripMenuItem // cutToolStripMenuItem
// //
this.cutToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.cutToolStripMenuItem.Name = "cutToolStripMenuItem"; this.cutToolStripMenuItem.Name = "cutToolStripMenuItem";
this.cutToolStripMenuItem.Size = new System.Drawing.Size(134, 22); this.cutToolStripMenuItem.Size = new System.Drawing.Size(134, 22);
@ -194,7 +194,7 @@ private void InitializeComponent()
// copyToolStripMenuItem // copyToolStripMenuItem
// //
this.copyToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.copyToolStripMenuItem.Name = "copyToolStripMenuItem"; this.copyToolStripMenuItem.Name = "copyToolStripMenuItem";
this.copyToolStripMenuItem.Size = new System.Drawing.Size(134, 22); this.copyToolStripMenuItem.Size = new System.Drawing.Size(134, 22);
@ -204,7 +204,7 @@ private void InitializeComponent()
// pasteToolStripMenuItem // pasteToolStripMenuItem
// //
this.pasteToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.pasteToolStripMenuItem.Name = "pasteToolStripMenuItem"; this.pasteToolStripMenuItem.Name = "pasteToolStripMenuItem";
this.pasteToolStripMenuItem.Size = new System.Drawing.Size(134, 22); this.pasteToolStripMenuItem.Size = new System.Drawing.Size(134, 22);
@ -214,7 +214,7 @@ private void InitializeComponent()
// deleteToolStripMenuItem // deleteToolStripMenuItem
// //
this.deleteToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem"; this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem";
this.deleteToolStripMenuItem.Size = new System.Drawing.Size(134, 22); this.deleteToolStripMenuItem.Size = new System.Drawing.Size(134, 22);
@ -224,7 +224,7 @@ private void InitializeComponent()
// selectAllToolStripMenuItem // selectAllToolStripMenuItem
// //
this.selectAllToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.selectAllToolStripMenuItem.Name = "selectAllToolStripMenuItem"; this.selectAllToolStripMenuItem.Name = "selectAllToolStripMenuItem";
this.selectAllToolStripMenuItem.Size = new System.Drawing.Size(134, 22); this.selectAllToolStripMenuItem.Size = new System.Drawing.Size(134, 22);
@ -234,7 +234,7 @@ private void InitializeComponent()
// timeDateToolStripMenuItem // timeDateToolStripMenuItem
// //
this.timeDateToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.timeDateToolStripMenuItem.Name = "timeDateToolStripMenuItem"; this.timeDateToolStripMenuItem.Name = "timeDateToolStripMenuItem";
this.timeDateToolStripMenuItem.Size = new System.Drawing.Size(134, 22); this.timeDateToolStripMenuItem.Size = new System.Drawing.Size(134, 22);
@ -244,7 +244,7 @@ private void InitializeComponent()
// wordWrapToolStripMenuItem // wordWrapToolStripMenuItem
// //
this.wordWrapToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.wordWrapToolStripMenuItem.CheckOnClick = true; this.wordWrapToolStripMenuItem.CheckOnClick = true;
this.wordWrapToolStripMenuItem.Name = "wordWrapToolStripMenuItem"; this.wordWrapToolStripMenuItem.Name = "wordWrapToolStripMenuItem";
@ -255,7 +255,7 @@ private void InitializeComponent()
// searchToolStripMenuItem // searchToolStripMenuItem
// //
this.searchToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.searchToolStripMenuItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.searchToolStripMenuItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.searchToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.searchToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
@ -268,7 +268,7 @@ private void InitializeComponent()
// findToolStripMenuItem // findToolStripMenuItem
// //
this.findToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.findToolStripMenuItem.Name = "findToolStripMenuItem"; this.findToolStripMenuItem.Name = "findToolStripMenuItem";
this.findToolStripMenuItem.Size = new System.Drawing.Size(124, 22); this.findToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
@ -277,7 +277,7 @@ private void InitializeComponent()
// findNextToolStripMenuItem // findNextToolStripMenuItem
// //
this.findNextToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.findNextToolStripMenuItem.Name = "findNextToolStripMenuItem"; this.findNextToolStripMenuItem.Name = "findNextToolStripMenuItem";
this.findNextToolStripMenuItem.Size = new System.Drawing.Size(124, 22); this.findNextToolStripMenuItem.Size = new System.Drawing.Size(124, 22);
@ -286,7 +286,7 @@ private void InitializeComponent()
// helpToolStripMenuItem // helpToolStripMenuItem
// //
this.helpToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.helpToolStripMenuItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.helpToolStripMenuItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
@ -299,7 +299,7 @@ private void InitializeComponent()
// helpTopicsToolStripMenuItem // helpTopicsToolStripMenuItem
// //
this.helpTopicsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.helpTopicsToolStripMenuItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.helpTopicsToolStripMenuItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.helpTopicsToolStripMenuItem.Name = "helpTopicsToolStripMenuItem"; this.helpTopicsToolStripMenuItem.Name = "helpTopicsToolStripMenuItem";
@ -309,7 +309,7 @@ private void InitializeComponent()
// aboutNotepadToolStripMenuItem // aboutNotepadToolStripMenuItem
// //
this.aboutNotepadToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.aboutNotepadToolStripMenuItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; this.aboutNotepadToolStripMenuItem.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text;
this.aboutNotepadToolStripMenuItem.Name = "aboutNotepadToolStripMenuItem"; this.aboutNotepadToolStripMenuItem.Name = "aboutNotepadToolStripMenuItem";

View file

@ -7,11 +7,11 @@
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows.Forms; using System.Windows.Forms;
using TimeHACK.Engine; using Histacom2.Engine;
using static TimeHACK.Engine.FileDialogBoxManager; using static Histacom2.Engine.FileDialogBoxManager;
using System.IO; using System.IO;
namespace TimeHACK.OS.Win95.Win95Apps namespace Histacom2.OS.Win95.Win95Apps
{ {
public partial class WinClassicNotepad : UserControl public partial class WinClassicNotepad : UserControl
{ {

View file

@ -7,8 +7,8 @@
<ProjectGuid>{B958AA5F-8AED-456C-9C07-9E4C6C027042}</ProjectGuid> <ProjectGuid>{B958AA5F-8AED-456C-9C07-9E4C6C027042}</ProjectGuid>
<OutputType>WinExe</OutputType> <OutputType>WinExe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder> <AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>TimeHACK</RootNamespace> <RootNamespace>Histacom2</RootNamespace>
<AssemblyName>TimeHACK</AssemblyName> <AssemblyName>Histacom2</AssemblyName>
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion> <TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment> <FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects> <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
@ -28,8 +28,8 @@
<ProductName>HistacomCS</ProductName> <ProductName>HistacomCS</ProductName>
<PublisherName>HistacomCS Development Team</PublisherName> <PublisherName>HistacomCS Development Team</PublisherName>
<WebPage>publish.htm</WebPage> <WebPage>publish.htm</WebPage>
<ApplicationRevision>0</ApplicationRevision> <ApplicationRevision>3</ApplicationRevision>
<ApplicationVersion>1.0.1.0</ApplicationVersion> <ApplicationVersion>2.0.0.3</ApplicationVersion>
<UseApplicationTrust>true</UseApplicationTrust> <UseApplicationTrust>true</UseApplicationTrust>
<CreateDesktopShortcut>true</CreateDesktopShortcut> <CreateDesktopShortcut>true</CreateDesktopShortcut>
<PublishWizardCompleted>true</PublishWizardCompleted> <PublishWizardCompleted>true</PublishWizardCompleted>
@ -55,7 +55,7 @@
<WarningLevel>4</WarningLevel> <WarningLevel>4</WarningLevel>
</PropertyGroup> </PropertyGroup>
<PropertyGroup> <PropertyGroup>
<StartupObject>TimeHACK.Program</StartupObject> <StartupObject>Histacom2.Program</StartupObject>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'"> <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<DebugSymbols>true</DebugSymbols> <DebugSymbols>true</DebugSymbols>
@ -262,6 +262,11 @@
<Compile Include="OS\Win98\Win98Apps\WinClassicWindowsExplorer.Designer.cs"> <Compile Include="OS\Win98\Win98Apps\WinClassicWindowsExplorer.Designer.cs">
<DependentUpon>WinClassicWindowsExplorer.cs</DependentUpon> <DependentUpon>WinClassicWindowsExplorer.cs</DependentUpon>
</Compile> </Compile>
<Compile Include="Properties\Resources1.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="SaveDialogs\LoadGameDialog.cs"> <Compile Include="SaveDialogs\LoadGameDialog.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
</Compile> </Compile>
@ -336,11 +341,6 @@
</Compile> </Compile>
<Compile Include="Program.cs" /> <Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="SaveDialogs\SaveFileTroubleShooter.cs"> <Compile Include="SaveDialogs\SaveFileTroubleShooter.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
</Compile> </Compile>
@ -450,8 +450,7 @@
</EmbeddedResource> </EmbeddedResource>
<EmbeddedResource Include="OS\Win95\Win95Apps\WebChat1998.resx"> <EmbeddedResource Include="OS\Win95\Win95Apps\WebChat1998.resx">
<DependentUpon>WebChat1998.cs</DependentUpon> <DependentUpon>WebChat1998.cs</DependentUpon>
<Generator>ResXFileCodeGenerator</Generator> <SubType>Designer</SubType>
<LastGenOutput>WebChat19981.Designer.cs</LastGenOutput>
</EmbeddedResource> </EmbeddedResource>
<EmbeddedResource Include="OS\Win98\Win98Apps\AddressBook\FRMWinClassicAddressBookNewFolder.resx"> <EmbeddedResource Include="OS\Win98\Win98Apps\AddressBook\FRMWinClassicAddressBookNewFolder.resx">
<DependentUpon>FRMWinClassicAddressBookNewFolder.cs</DependentUpon> <DependentUpon>FRMWinClassicAddressBookNewFolder.cs</DependentUpon>
@ -472,9 +471,9 @@
<DependentUpon>Win95TaskBarItem.cs</DependentUpon> <DependentUpon>Win95TaskBarItem.cs</DependentUpon>
</EmbeddedResource> </EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx"> <EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator> <Generator>PublicResXFileCodeGenerator</Generator>
<SubType>Designer</SubType> <SubType>Designer</SubType>
<LastGenOutput>Resources.Designer.cs</LastGenOutput> <LastGenOutput>Resources1.Designer.cs</LastGenOutput>
</EmbeddedResource> </EmbeddedResource>
<EmbeddedResource Include="SaveDialogs\SaveFileTroubleShooter.resx"> <EmbeddedResource Include="SaveDialogs\SaveFileTroubleShooter.resx">
<DependentUpon>SaveFileTroubleShooter.cs</DependentUpon> <DependentUpon>SaveFileTroubleShooter.cs</DependentUpon>
@ -612,6 +611,7 @@
<None Include="Resources\termNothing.png" /> <None Include="Resources\termNothing.png" />
<None Include="Resources\termPaste.png" /> <None Include="Resources\termPaste.png" />
<None Include="Resources\termSettings.png" /> <None Include="Resources\termSettings.png" />
<Content Include="Resources\TitleScreen\Histacom2_Logo.png" />
<Content Include="Resources\TitleScreen\TaskBarButton.png" /> <Content Include="Resources\TitleScreen\TaskBarButton.png" />
<Content Include="Resources\TitleScreen\TaskBarClock.png" /> <Content Include="Resources\TitleScreen\TaskBarClock.png" />
<Content Include="Resources\TitleScreen\TimeHACK_Logo.png" /> <Content Include="Resources\TitleScreen\TimeHACK_Logo.png" />
@ -704,12 +704,11 @@
<Content Include="Resources\WinClassic\WinClassicTime.png" /> <Content Include="Resources\WinClassic\WinClassicTime.png" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\TimeHACK.Engine\TimeHACK.Engine.csproj"> <ProjectReference Include="..\Histacom2.Engine\Histacom2.Engine.csproj">
<Project>{9477b70f-2d32-4e1d-857b-4624a1deeb1b}</Project> <Project>{9477b70f-2d32-4e1d-857b-4624a1deeb1b}</Project>
<Name>TimeHACK.Engine</Name> <Name>Histacom2.Engine</Name>
</ProjectReference> </ProjectReference>
</ItemGroup> </ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets. Other similar extension points exist, see Microsoft.Common.targets.

View file

Before

Width:  |  Height:  |  Size: 97 KiB

After

Width:  |  Height:  |  Size: 97 KiB

View file

@ -1,4 +1,4 @@
namespace TimeHACK.OS.Win2K.Win2KApps namespace Histacom2.OS.Win2K.Win2KApps
{ {
partial class SurviveTheDay partial class SurviveTheDay
{ {

View file

@ -1,107 +1,107 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.ComponentModel; using System.ComponentModel;
using System.Drawing; using System.Drawing;
using System.Data; using System.Data;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows.Forms; using System.Windows.Forms;
using System.Media; using System.Media;
using System.Threading; using System.Threading;
using Newtonsoft.Json.Linq; using Newtonsoft.Json.Linq;
namespace TimeHACK.OS.Win2K.Win2KApps namespace Histacom2.OS.Win2K.Win2KApps
{ {
public partial class SurviveTheDay : UserControl public partial class SurviveTheDay : UserControl
{ {
public SurviveTheDay() public SurviveTheDay()
{ {
InitializeComponent(); InitializeComponent();
} }
private void typer(string newtxt, string overtxt, bool over) private void typer(string newtxt, string overtxt, bool over)
{ {
SoundPlayer beep = new SoundPlayer(Properties.Resources.std_beep); SoundPlayer beep = new SoundPlayer(Properties.Resources.std_beep);
SoundPlayer overbeep = new SoundPlayer(Properties.Resources.std_gobeep); SoundPlayer overbeep = new SoundPlayer(Properties.Resources.std_gobeep);
this.Invoke(new Action(() => this.Invoke(new Action(() =>
{ {
words.Text = ""; words.Text = "";
gameoverlbl.Text = ""; gameoverlbl.Text = "";
gameoverlbl.Show(); gameoverlbl.Show();
})); }));
foreach (char c in newtxt) foreach (char c in newtxt)
{ {
this.Invoke(new Action(() => this.Invoke(new Action(() =>
{ {
words.Text += c; words.Text += c;
})); }));
beep.Play(); beep.Play();
Thread.Sleep(40); Thread.Sleep(40);
} }
if (over) if (over)
{ {
Thread.Sleep(200); Thread.Sleep(200);
foreach (char c in overtxt) foreach (char c in overtxt)
{ {
this.Invoke(new Action(() => this.Invoke(new Action(() =>
{ {
gameoverlbl.Text += c; gameoverlbl.Text += c;
})); }));
overbeep.Play(); overbeep.Play();
Thread.Sleep(150); Thread.Sleep(150);
} }
} }
this.Invoke(new Action(() => this.Invoke(new Action(() =>
{ {
if ((string)button1.Tag != "") button1.Show(); if ((string)button1.Tag != "") button1.Show();
if ((string)button2.Tag != "") button2.Show(); if ((string)button2.Tag != "") button2.Show();
if ((string)button3.Tag != "") button3.Show(); if ((string)button3.Tag != "") button3.Show();
if ((string)button4.Tag != "") button4.Show(); if ((string)button4.Tag != "") button4.Show();
if ((string)button5.Tag != "") button5.Show(); if ((string)button5.Tag != "") button5.Show();
})); }));
} }
private void choice_click(object sender, EventArgs e) private void choice_click(object sender, EventArgs e)
{ {
Button btn = sender as Button; Button btn = sender as Button;
if (btn.Tag == null | (string)btn.Tag == "") return; if (btn.Tag == null | (string)btn.Tag == "") return;
if ((string)btn.Tag == "quit") if ((string)btn.Tag == "quit")
{ {
this.ParentForm.Close(); this.ParentForm.Close();
return; return;
} }
JObject story = JObject.Parse(Properties.Resources.std_story); JObject story = JObject.Parse(Properties.Resources.std_story);
JToken path = story[(string)btn.Tag]; JToken path = story[(string)btn.Tag];
button1.Text = (string)path["btn1txt"]; button1.Text = (string)path["btn1txt"];
button1.Tag = (string)path["btn1tag"]; button1.Tag = (string)path["btn1tag"];
button1.Hide(); button1.Hide();
button2.Text = (string)path["btn2txt"]; button2.Text = (string)path["btn2txt"];
button2.Tag = (string)path["btn2tag"]; button2.Tag = (string)path["btn2tag"];
button2.Hide(); button2.Hide();
button3.Text = (string)path["btn3txt"]; button3.Text = (string)path["btn3txt"];
button3.Tag = (string)path["btn3tag"]; button3.Tag = (string)path["btn3tag"];
button3.Hide(); button3.Hide();
button4.Text = (string)path["btn4txt"]; button4.Text = (string)path["btn4txt"];
button4.Tag = (string)path["btn4tag"]; button4.Tag = (string)path["btn4tag"];
button4.Hide(); button4.Hide();
button5.Text = (string)path["btn5txt"]; button5.Text = (string)path["btn5txt"];
button5.Tag = (string)path["btn5tag"]; button5.Tag = (string)path["btn5tag"];
button5.Hide(); button5.Hide();
time.Text = (string)path["time"]; time.Text = (string)path["time"];
var t = new Thread(new ThreadStart(() => var t = new Thread(new ThreadStart(() =>
{ {
typer((string)path["txt"], (string)path["overtxt"], (bool)path["over"]); typer((string)path["txt"], (string)path["overtxt"], (bool)path["over"]);
})); }));
t.IsBackground = true; t.IsBackground = true;
t.Start(); t.Start();
} }
} }
} }

View file

@ -1,6 +1,6 @@
using TimeHACK.OS.Win95; using Histacom2.OS.Win95;
namespace TimeHACK.OS.Win95 namespace Histacom2.OS.Win95
{ {
partial class Windows95 partial class Windows95
{ {
@ -143,7 +143,7 @@ private void InitializeComponent()
// taskbar // taskbar
// //
this.taskbar.BackColor = System.Drawing.Color.Silver; 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.clockPanel);
this.taskbar.Controls.Add(this.taskbarItems); this.taskbar.Controls.Add(this.taskbarItems);
this.taskbar.Controls.Add(this.startbutton); this.taskbar.Controls.Add(this.startbutton);
@ -155,7 +155,7 @@ private void InitializeComponent()
// //
// clockPanel // 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.Controls.Add(this.taskbartime);
this.clockPanel.Dock = System.Windows.Forms.DockStyle.Right; this.clockPanel.Dock = System.Windows.Forms.DockStyle.Right;
this.clockPanel.Location = new System.Drawing.Point(575, 0); this.clockPanel.Location = new System.Drawing.Point(575, 0);
@ -185,7 +185,7 @@ private void InitializeComponent()
// //
// startbutton // 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.Location = new System.Drawing.Point(2, 4);
this.startbutton.Name = "startbutton"; this.startbutton.Name = "startbutton";
this.startbutton.Size = new System.Drawing.Size(54, 22); this.startbutton.Size = new System.Drawing.Size(54, 22);
@ -230,7 +230,7 @@ private void InitializeComponent()
// ProgramsToolStripMenuItem // ProgramsToolStripMenuItem
// //
this.ProgramsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.ProgramsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ProgramsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.AccessoriesToolStripMenuItem, this.AccessoriesToolStripMenuItem,
@ -247,7 +247,7 @@ private void InitializeComponent()
this.WebChatToolStripMenuItem, this.WebChatToolStripMenuItem,
this.TimeDistorterToolStripMenuItem, this.TimeDistorterToolStripMenuItem,
this.FTPClientToolStripMenuItem}); this.FTPClientToolStripMenuItem});
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.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.ProgramsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.ProgramsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.ProgramsToolStripMenuItem.Name = "ProgramsToolStripMenuItem"; this.ProgramsToolStripMenuItem.Name = "ProgramsToolStripMenuItem";
@ -258,7 +258,7 @@ private void InitializeComponent()
// AccessoriesToolStripMenuItem // AccessoriesToolStripMenuItem
// //
this.AccessoriesToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.AccessoriesToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.AccessoriesToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.CommunicationsToolStripMenuItem, this.CommunicationsToolStripMenuItem,
@ -273,7 +273,7 @@ private void InitializeComponent()
this.PaintToolStripMenuItem, this.PaintToolStripMenuItem,
this.PhoneDialerToolStripMenuItem, this.PhoneDialerToolStripMenuItem,
this.WordPadToolStripMenuItem}); 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.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.AccessoriesToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.AccessoriesToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.AccessoriesToolStripMenuItem.Name = "AccessoriesToolStripMenuItem"; this.AccessoriesToolStripMenuItem.Name = "AccessoriesToolStripMenuItem";
@ -283,12 +283,12 @@ private void InitializeComponent()
// CommunicationsToolStripMenuItem // CommunicationsToolStripMenuItem
// //
this.CommunicationsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.CommunicationsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.CommunicationsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.InternetConnectionWizardToolStripMenuItem, this.InternetConnectionWizardToolStripMenuItem,
this.NetMeetingToolStripMenuItem}); 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.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.CommunicationsToolStripMenuItem.Name = "CommunicationsToolStripMenuItem"; this.CommunicationsToolStripMenuItem.Name = "CommunicationsToolStripMenuItem";
this.CommunicationsToolStripMenuItem.Size = new System.Drawing.Size(181, 28); this.CommunicationsToolStripMenuItem.Size = new System.Drawing.Size(181, 28);
@ -297,7 +297,7 @@ private void InitializeComponent()
// InternetConnectionWizardToolStripMenuItem // InternetConnectionWizardToolStripMenuItem
// //
this.InternetConnectionWizardToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.InternetConnectionWizardToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("InternetConnectionWizardToolStripMenuItem.Image"))); this.InternetConnectionWizardToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("InternetConnectionWizardToolStripMenuItem.Image")));
this.InternetConnectionWizardToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.InternetConnectionWizardToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
@ -309,7 +309,7 @@ private void InitializeComponent()
// NetMeetingToolStripMenuItem // NetMeetingToolStripMenuItem
// //
this.NetMeetingToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.NetMeetingToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("NetMeetingToolStripMenuItem.Image"))); this.NetMeetingToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("NetMeetingToolStripMenuItem.Image")));
this.NetMeetingToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.NetMeetingToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
@ -321,14 +321,14 @@ private void InitializeComponent()
// MultimediaToolStripMenuItem // MultimediaToolStripMenuItem
// //
this.MultimediaToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.MultimediaToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.MultimediaToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.CDPlayerToolStripMenuItem, this.CDPlayerToolStripMenuItem,
this.SoundRecorderToolStripMenuItem, this.SoundRecorderToolStripMenuItem,
this.VolumeControlToolStripMenuItem, this.VolumeControlToolStripMenuItem,
this.WindowsMediaPlayerToolStripMenuItem}); 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.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.MultimediaToolStripMenuItem.Name = "MultimediaToolStripMenuItem"; this.MultimediaToolStripMenuItem.Name = "MultimediaToolStripMenuItem";
this.MultimediaToolStripMenuItem.Size = new System.Drawing.Size(181, 28); this.MultimediaToolStripMenuItem.Size = new System.Drawing.Size(181, 28);
@ -337,7 +337,7 @@ private void InitializeComponent()
// CDPlayerToolStripMenuItem // CDPlayerToolStripMenuItem
// //
this.CDPlayerToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.CDPlayerToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("CDPlayerToolStripMenuItem.Image"))); this.CDPlayerToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("CDPlayerToolStripMenuItem.Image")));
this.CDPlayerToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.CDPlayerToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
@ -348,7 +348,7 @@ private void InitializeComponent()
// SoundRecorderToolStripMenuItem // SoundRecorderToolStripMenuItem
// //
this.SoundRecorderToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.SoundRecorderToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("SoundRecorderToolStripMenuItem.Image"))); this.SoundRecorderToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("SoundRecorderToolStripMenuItem.Image")));
this.SoundRecorderToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.SoundRecorderToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
@ -359,7 +359,7 @@ private void InitializeComponent()
// VolumeControlToolStripMenuItem // VolumeControlToolStripMenuItem
// //
this.VolumeControlToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.VolumeControlToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("VolumeControlToolStripMenuItem.Image"))); this.VolumeControlToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("VolumeControlToolStripMenuItem.Image")));
this.VolumeControlToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.VolumeControlToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
@ -370,7 +370,7 @@ private void InitializeComponent()
// WindowsMediaPlayerToolStripMenuItem // WindowsMediaPlayerToolStripMenuItem
// //
this.WindowsMediaPlayerToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.WindowsMediaPlayerToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("WindowsMediaPlayerToolStripMenuItem.Image"))); this.WindowsMediaPlayerToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("WindowsMediaPlayerToolStripMenuItem.Image")));
this.WindowsMediaPlayerToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.WindowsMediaPlayerToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
@ -381,12 +381,12 @@ private void InitializeComponent()
// toolStripMenuItem1 // toolStripMenuItem1
// //
this.toolStripMenuItem1.BackColor = System.Drawing.Color.Silver; this.toolStripMenuItem1.BackColor = System.Drawing.Color.Silver;
this.toolStripMenuItem1.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; this.toolStripMenuItem1.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver;
this.toolStripMenuItem1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.toolStripMenuItem1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.toolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.toolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.toolStripMenuItem2, this.toolStripMenuItem2,
this.toolStripMenuItem3}); this.toolStripMenuItem3});
this.toolStripMenuItem1.Image = global::TimeHACK.Properties.Resources.WinClassicProgramItem; this.toolStripMenuItem1.Image = global::Histacom2.Properties.Resources.WinClassicProgramItem;
this.toolStripMenuItem1.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.toolStripMenuItem1.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.toolStripMenuItem1.Name = "toolStripMenuItem1"; this.toolStripMenuItem1.Name = "toolStripMenuItem1";
this.toolStripMenuItem1.Size = new System.Drawing.Size(181, 28); this.toolStripMenuItem1.Size = new System.Drawing.Size(181, 28);
@ -395,7 +395,7 @@ private void InitializeComponent()
// toolStripMenuItem2 // toolStripMenuItem2
// //
this.toolStripMenuItem2.BackColor = System.Drawing.Color.Silver; this.toolStripMenuItem2.BackColor = System.Drawing.Color.Silver;
this.toolStripMenuItem2.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; this.toolStripMenuItem2.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver;
this.toolStripMenuItem2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.toolStripMenuItem2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.toolStripMenuItem2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripMenuItem2.Image"))); this.toolStripMenuItem2.Image = ((System.Drawing.Image)(resources.GetObject("toolStripMenuItem2.Image")));
this.toolStripMenuItem2.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.toolStripMenuItem2.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
@ -406,7 +406,7 @@ private void InitializeComponent()
// toolStripMenuItem3 // toolStripMenuItem3
// //
this.toolStripMenuItem3.BackColor = System.Drawing.Color.Silver; this.toolStripMenuItem3.BackColor = System.Drawing.Color.Silver;
this.toolStripMenuItem3.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; this.toolStripMenuItem3.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver;
this.toolStripMenuItem3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.toolStripMenuItem3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.toolStripMenuItem3.Image = ((System.Drawing.Image)(resources.GetObject("toolStripMenuItem3.Image"))); this.toolStripMenuItem3.Image = ((System.Drawing.Image)(resources.GetObject("toolStripMenuItem3.Image")));
this.toolStripMenuItem3.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.toolStripMenuItem3.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
@ -417,11 +417,11 @@ private void InitializeComponent()
// GamesToolStripMenuItem // GamesToolStripMenuItem
// //
this.GamesToolStripMenuItem.BackColor = System.Drawing.Color.Silver; this.GamesToolStripMenuItem.BackColor = System.Drawing.Color.Silver;
this.GamesToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; this.GamesToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver;
this.GamesToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.GamesToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.GamesToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.GamesToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.MinsweeperToolStripMenuItem}); this.MinsweeperToolStripMenuItem});
this.GamesToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicProgramItem; this.GamesToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicProgramItem;
this.GamesToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.GamesToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.GamesToolStripMenuItem.Name = "GamesToolStripMenuItem"; this.GamesToolStripMenuItem.Name = "GamesToolStripMenuItem";
this.GamesToolStripMenuItem.Size = new System.Drawing.Size(181, 28); this.GamesToolStripMenuItem.Size = new System.Drawing.Size(181, 28);
@ -430,9 +430,9 @@ private void InitializeComponent()
// MinsweeperToolStripMenuItem // MinsweeperToolStripMenuItem
// //
this.MinsweeperToolStripMenuItem.BackColor = System.Drawing.Color.Silver; this.MinsweeperToolStripMenuItem.BackColor = System.Drawing.Color.Silver;
this.MinsweeperToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; this.MinsweeperToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver;
this.MinsweeperToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.MinsweeperToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.MinsweeperToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicMinesweeper; this.MinsweeperToolStripMenuItem.Image = global::Histacom2.Properties.Resources.WinClassicMinesweeper;
this.MinsweeperToolStripMenuItem.Name = "MinsweeperToolStripMenuItem"; this.MinsweeperToolStripMenuItem.Name = "MinsweeperToolStripMenuItem";
this.MinsweeperToolStripMenuItem.Size = new System.Drawing.Size(144, 22); this.MinsweeperToolStripMenuItem.Size = new System.Drawing.Size(144, 22);
this.MinsweeperToolStripMenuItem.Text = "Minesweeper"; this.MinsweeperToolStripMenuItem.Text = "Minesweeper";
@ -441,7 +441,7 @@ private void InitializeComponent()
// CalculatorToolStripMenuItem // CalculatorToolStripMenuItem
// //
this.CalculatorToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.CalculatorToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("CalculatorToolStripMenuItem.Image"))); this.CalculatorToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("CalculatorToolStripMenuItem.Image")));
this.CalculatorToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.CalculatorToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
@ -453,9 +453,9 @@ private void InitializeComponent()
// HyperTerminalToolStripMenuItem // HyperTerminalToolStripMenuItem
// //
this.HyperTerminalToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.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.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.HyperTerminalToolStripMenuItem.Name = "HyperTerminalToolStripMenuItem"; this.HyperTerminalToolStripMenuItem.Name = "HyperTerminalToolStripMenuItem";
this.HyperTerminalToolStripMenuItem.Size = new System.Drawing.Size(181, 28); this.HyperTerminalToolStripMenuItem.Size = new System.Drawing.Size(181, 28);
@ -464,7 +464,7 @@ private void InitializeComponent()
// ImagingToolStripMenuItem // ImagingToolStripMenuItem
// //
this.ImagingToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.ImagingToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("ImagingToolStripMenuItem.Image"))); this.ImagingToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("ImagingToolStripMenuItem.Image")));
this.ImagingToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.ImagingToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
@ -475,7 +475,7 @@ private void InitializeComponent()
// NotePadToolStripMenuItem // NotePadToolStripMenuItem
// //
this.NotePadToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.NotePadToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("NotePadToolStripMenuItem.Image"))); this.NotePadToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("NotePadToolStripMenuItem.Image")));
this.NotePadToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.NotePadToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
@ -487,7 +487,7 @@ private void InitializeComponent()
// OnlineRegistrationToolStripMenuItem // OnlineRegistrationToolStripMenuItem
// //
this.OnlineRegistrationToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.OnlineRegistrationToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("OnlineRegistrationToolStripMenuItem.Image"))); this.OnlineRegistrationToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("OnlineRegistrationToolStripMenuItem.Image")));
this.OnlineRegistrationToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.OnlineRegistrationToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
@ -498,7 +498,7 @@ private void InitializeComponent()
// PaintToolStripMenuItem // PaintToolStripMenuItem
// //
this.PaintToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.PaintToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("PaintToolStripMenuItem.Image"))); this.PaintToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("PaintToolStripMenuItem.Image")));
this.PaintToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.PaintToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
@ -509,7 +509,7 @@ private void InitializeComponent()
// PhoneDialerToolStripMenuItem // PhoneDialerToolStripMenuItem
// //
this.PhoneDialerToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.PhoneDialerToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("PhoneDialerToolStripMenuItem.Image"))); this.PhoneDialerToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("PhoneDialerToolStripMenuItem.Image")));
this.PhoneDialerToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.PhoneDialerToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
@ -520,7 +520,7 @@ private void InitializeComponent()
// WordPadToolStripMenuItem // WordPadToolStripMenuItem
// //
this.WordPadToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.WordPadToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("WordPadToolStripMenuItem.Image"))); this.WordPadToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("WordPadToolStripMenuItem.Image")));
this.WordPadToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.WordPadToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
@ -532,14 +532,14 @@ private void InitializeComponent()
// StartUpToolStripMenuItem // StartUpToolStripMenuItem
// //
this.StartUpToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.StartUpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.StartUpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.AOLInternetFREETrialToolStripMenuItem, this.AOLInternetFREETrialToolStripMenuItem,
this.ATTWorldNetSignupToolStripMenuItem, this.ATTWorldNetSignupToolStripMenuItem,
this.SetupCompuServe30ToolStripMenuItem, this.SetupCompuServe30ToolStripMenuItem,
this.SetupWOWFromCompuServeToolStripMenuItem}); 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.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.StartUpToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.StartUpToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.StartUpToolStripMenuItem.Name = "StartUpToolStripMenuItem"; this.StartUpToolStripMenuItem.Name = "StartUpToolStripMenuItem";
@ -549,7 +549,7 @@ private void InitializeComponent()
// AOLInternetFREETrialToolStripMenuItem // AOLInternetFREETrialToolStripMenuItem
// //
this.AOLInternetFREETrialToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.AOLInternetFREETrialToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.AOLInternetFREETrialToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.AOLInternetFREETrialToolStripMenuItem.Name = "AOLInternetFREETrialToolStripMenuItem"; this.AOLInternetFREETrialToolStripMenuItem.Name = "AOLInternetFREETrialToolStripMenuItem";
@ -559,7 +559,7 @@ private void InitializeComponent()
// ATTWorldNetSignupToolStripMenuItem // ATTWorldNetSignupToolStripMenuItem
// //
this.ATTWorldNetSignupToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.ATTWorldNetSignupToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.ATTWorldNetSignupToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.ATTWorldNetSignupToolStripMenuItem.Name = "ATTWorldNetSignupToolStripMenuItem"; this.ATTWorldNetSignupToolStripMenuItem.Name = "ATTWorldNetSignupToolStripMenuItem";
@ -569,7 +569,7 @@ private void InitializeComponent()
// SetupCompuServe30ToolStripMenuItem // SetupCompuServe30ToolStripMenuItem
// //
this.SetupCompuServe30ToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.SetupCompuServe30ToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.SetupCompuServe30ToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.SetupCompuServe30ToolStripMenuItem.Name = "SetupCompuServe30ToolStripMenuItem"; this.SetupCompuServe30ToolStripMenuItem.Name = "SetupCompuServe30ToolStripMenuItem";
@ -579,7 +579,7 @@ private void InitializeComponent()
// SetupWOWFromCompuServeToolStripMenuItem // SetupWOWFromCompuServeToolStripMenuItem
// //
this.SetupWOWFromCompuServeToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.SetupWOWFromCompuServeToolStripMenuItem.Name = "SetupWOWFromCompuServeToolStripMenuItem"; this.SetupWOWFromCompuServeToolStripMenuItem.Name = "SetupWOWFromCompuServeToolStripMenuItem";
this.SetupWOWFromCompuServeToolStripMenuItem.Size = new System.Drawing.Size(241, 22); this.SetupWOWFromCompuServeToolStripMenuItem.Size = new System.Drawing.Size(241, 22);
@ -588,11 +588,11 @@ private void InitializeComponent()
// MSDOSPromptToolStripMenuItem // MSDOSPromptToolStripMenuItem
// //
this.MSDOSPromptToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.MSDOSPromptToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.MSDOSPromptToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.EmptyToolStripMenuItem}); 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.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.MSDOSPromptToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.MSDOSPromptToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.MSDOSPromptToolStripMenuItem.Name = "MSDOSPromptToolStripMenuItem"; this.MSDOSPromptToolStripMenuItem.Name = "MSDOSPromptToolStripMenuItem";
@ -602,7 +602,7 @@ private void InitializeComponent()
// EmptyToolStripMenuItem // EmptyToolStripMenuItem
// //
this.EmptyToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.EmptyToolStripMenuItem.Name = "EmptyToolStripMenuItem"; this.EmptyToolStripMenuItem.Name = "EmptyToolStripMenuItem";
this.EmptyToolStripMenuItem.Size = new System.Drawing.Size(116, 22); this.EmptyToolStripMenuItem.Size = new System.Drawing.Size(116, 22);
@ -611,7 +611,7 @@ private void InitializeComponent()
// InternetExplorerToolStripMenuItem // InternetExplorerToolStripMenuItem
// //
this.InternetExplorerToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.InternetExplorerToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("InternetExplorerToolStripMenuItem.Image"))); this.InternetExplorerToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("InternetExplorerToolStripMenuItem.Image")));
this.InternetExplorerToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.InternetExplorerToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
@ -624,7 +624,7 @@ private void InitializeComponent()
// MSDOSPromptToolStripMenuItem1 // MSDOSPromptToolStripMenuItem1
// //
this.MSDOSPromptToolStripMenuItem1.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.MSDOSPromptToolStripMenuItem1.Image = ((System.Drawing.Image)(resources.GetObject("MSDOSPromptToolStripMenuItem1.Image"))); this.MSDOSPromptToolStripMenuItem1.Image = ((System.Drawing.Image)(resources.GetObject("MSDOSPromptToolStripMenuItem1.Image")));
this.MSDOSPromptToolStripMenuItem1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.MSDOSPromptToolStripMenuItem1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
@ -637,7 +637,7 @@ private void InitializeComponent()
// OutlookExpressToolStripMenuItem // OutlookExpressToolStripMenuItem
// //
this.OutlookExpressToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.OutlookExpressToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("OutlookExpressToolStripMenuItem.Image"))); this.OutlookExpressToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("OutlookExpressToolStripMenuItem.Image")));
this.OutlookExpressToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.OutlookExpressToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
@ -649,7 +649,7 @@ private void InitializeComponent()
// WindowsExplorerToolStripMenuItem1 // WindowsExplorerToolStripMenuItem1
// //
this.WindowsExplorerToolStripMenuItem1.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.WindowsExplorerToolStripMenuItem1.Image = ((System.Drawing.Image)(resources.GetObject("WindowsExplorerToolStripMenuItem1.Image"))); this.WindowsExplorerToolStripMenuItem1.Image = ((System.Drawing.Image)(resources.GetObject("WindowsExplorerToolStripMenuItem1.Image")));
this.WindowsExplorerToolStripMenuItem1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.WindowsExplorerToolStripMenuItem1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
@ -662,7 +662,7 @@ private void InitializeComponent()
// GuessTheNumberToolStripMenuItem // GuessTheNumberToolStripMenuItem
// //
this.GuessTheNumberToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.GuessTheNumberToolStripMenuItem.Name = "GuessTheNumberToolStripMenuItem"; this.GuessTheNumberToolStripMenuItem.Name = "GuessTheNumberToolStripMenuItem";
this.GuessTheNumberToolStripMenuItem.Size = new System.Drawing.Size(181, 28); this.GuessTheNumberToolStripMenuItem.Size = new System.Drawing.Size(181, 28);
@ -672,7 +672,7 @@ private void InitializeComponent()
// StartRunnerToolStripMenuItem // StartRunnerToolStripMenuItem
// //
this.StartRunnerToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.StartRunnerToolStripMenuItem.Name = "StartRunnerToolStripMenuItem"; this.StartRunnerToolStripMenuItem.Name = "StartRunnerToolStripMenuItem";
this.StartRunnerToolStripMenuItem.Size = new System.Drawing.Size(181, 28); this.StartRunnerToolStripMenuItem.Size = new System.Drawing.Size(181, 28);
@ -682,7 +682,7 @@ private void InitializeComponent()
// ErrorBlasterToolStripMenuItem // ErrorBlasterToolStripMenuItem
// //
this.ErrorBlasterToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.ErrorBlasterToolStripMenuItem.Name = "ErrorBlasterToolStripMenuItem"; this.ErrorBlasterToolStripMenuItem.Name = "ErrorBlasterToolStripMenuItem";
this.ErrorBlasterToolStripMenuItem.Size = new System.Drawing.Size(181, 28); this.ErrorBlasterToolStripMenuItem.Size = new System.Drawing.Size(181, 28);
@ -692,7 +692,7 @@ private void InitializeComponent()
// SkindowsToolStripMenuItem // SkindowsToolStripMenuItem
// //
this.SkindowsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.SkindowsToolStripMenuItem.Name = "SkindowsToolStripMenuItem"; this.SkindowsToolStripMenuItem.Name = "SkindowsToolStripMenuItem";
this.SkindowsToolStripMenuItem.Size = new System.Drawing.Size(181, 28); this.SkindowsToolStripMenuItem.Size = new System.Drawing.Size(181, 28);
@ -702,7 +702,7 @@ private void InitializeComponent()
// WebChatToolStripMenuItem // WebChatToolStripMenuItem
// //
this.WebChatToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.WebChatToolStripMenuItem.Name = "WebChatToolStripMenuItem"; this.WebChatToolStripMenuItem.Name = "WebChatToolStripMenuItem";
this.WebChatToolStripMenuItem.Size = new System.Drawing.Size(181, 28); this.WebChatToolStripMenuItem.Size = new System.Drawing.Size(181, 28);
@ -713,7 +713,7 @@ private void InitializeComponent()
// TimeDistorterToolStripMenuItem // TimeDistorterToolStripMenuItem
// //
this.TimeDistorterToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.TimeDistorterToolStripMenuItem.Name = "TimeDistorterToolStripMenuItem"; this.TimeDistorterToolStripMenuItem.Name = "TimeDistorterToolStripMenuItem";
this.TimeDistorterToolStripMenuItem.Size = new System.Drawing.Size(181, 28); this.TimeDistorterToolStripMenuItem.Size = new System.Drawing.Size(181, 28);
@ -723,7 +723,7 @@ private void InitializeComponent()
// FTPClientToolStripMenuItem // FTPClientToolStripMenuItem
// //
this.FTPClientToolStripMenuItem.BackColor = System.Drawing.Color.Silver; this.FTPClientToolStripMenuItem.BackColor = System.Drawing.Color.Silver;
this.FTPClientToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; this.FTPClientToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver;
this.FTPClientToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; this.FTPClientToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
this.FTPClientToolStripMenuItem.Name = "FTPClientToolStripMenuItem"; this.FTPClientToolStripMenuItem.Name = "FTPClientToolStripMenuItem";
this.FTPClientToolStripMenuItem.Size = new System.Drawing.Size(181, 28); this.FTPClientToolStripMenuItem.Size = new System.Drawing.Size(181, 28);
@ -734,12 +734,12 @@ private void InitializeComponent()
// DocumentsToolStripMenuItem // DocumentsToolStripMenuItem
// //
this.DocumentsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.DocumentsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.downloaderTestToolStripMenuItem, this.downloaderTestToolStripMenuItem,
this.installerTestToolStripMenuItem, this.installerTestToolStripMenuItem,
this.storyTest1ToolStripMenuItem}); 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.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.DocumentsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.DocumentsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.DocumentsToolStripMenuItem.Name = "DocumentsToolStripMenuItem"; this.DocumentsToolStripMenuItem.Name = "DocumentsToolStripMenuItem";
@ -767,7 +767,7 @@ private void InitializeComponent()
// //
// storyTest1ToolStripMenuItem // storyTest1ToolStripMenuItem
// //
this.storyTest1ToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; this.storyTest1ToolStripMenuItem.BackgroundImage = global::Histacom2.Properties.Resources.sliversilver;
this.storyTest1ToolStripMenuItem.Name = "storyTest1ToolStripMenuItem"; this.storyTest1ToolStripMenuItem.Name = "storyTest1ToolStripMenuItem";
this.storyTest1ToolStripMenuItem.Size = new System.Drawing.Size(159, 22); this.storyTest1ToolStripMenuItem.Size = new System.Drawing.Size(159, 22);
this.storyTest1ToolStripMenuItem.Text = "StoryTest1"; this.storyTest1ToolStripMenuItem.Text = "StoryTest1";
@ -780,7 +780,7 @@ private void InitializeComponent()
this.ControlPanelToolStripMenuItem, this.ControlPanelToolStripMenuItem,
this.PrintersToolStripMenuItem, this.PrintersToolStripMenuItem,
this.TaskbarToolStripMenuItem}); 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.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.SettingsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.SettingsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.SettingsToolStripMenuItem.Name = "SettingsToolStripMenuItem"; this.SettingsToolStripMenuItem.Name = "SettingsToolStripMenuItem";
@ -792,7 +792,7 @@ private void InitializeComponent()
// //
this.ControlPanelToolStripMenuItem.BackColor = System.Drawing.Color.Silver; this.ControlPanelToolStripMenuItem.BackColor = System.Drawing.Color.Silver;
this.ControlPanelToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ControlPanelToolStripMenuItem.BackgroundImage"))); this.ControlPanelToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ControlPanelToolStripMenuItem.BackgroundImage")));
this.ControlPanelToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.Win95ControlPanelIcon; this.ControlPanelToolStripMenuItem.Image = global::Histacom2.Properties.Resources.Win95ControlPanelIcon;
this.ControlPanelToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.ControlPanelToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.ControlPanelToolStripMenuItem.Name = "ControlPanelToolStripMenuItem"; this.ControlPanelToolStripMenuItem.Name = "ControlPanelToolStripMenuItem";
this.ControlPanelToolStripMenuItem.Size = new System.Drawing.Size(146, 22); this.ControlPanelToolStripMenuItem.Size = new System.Drawing.Size(146, 22);
@ -802,7 +802,7 @@ private void InitializeComponent()
// //
this.PrintersToolStripMenuItem.BackColor = System.Drawing.Color.Silver; this.PrintersToolStripMenuItem.BackColor = System.Drawing.Color.Silver;
this.PrintersToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("PrintersToolStripMenuItem.BackgroundImage"))); this.PrintersToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("PrintersToolStripMenuItem.BackgroundImage")));
this.PrintersToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.Win95PrintersFolder; this.PrintersToolStripMenuItem.Image = global::Histacom2.Properties.Resources.Win95PrintersFolder;
this.PrintersToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.PrintersToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.PrintersToolStripMenuItem.Name = "PrintersToolStripMenuItem"; this.PrintersToolStripMenuItem.Name = "PrintersToolStripMenuItem";
this.PrintersToolStripMenuItem.Size = new System.Drawing.Size(146, 22); this.PrintersToolStripMenuItem.Size = new System.Drawing.Size(146, 22);
@ -827,7 +827,7 @@ private void InitializeComponent()
this.ComputerToolStripMenuItem, this.ComputerToolStripMenuItem,
this.OnTheInternetToolStripMenuItem, this.OnTheInternetToolStripMenuItem,
this.PeopleToolStripMenuItem}); 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.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.FindToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.FindToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.FindToolStripMenuItem.Name = "FindToolStripMenuItem"; this.FindToolStripMenuItem.Name = "FindToolStripMenuItem";
@ -875,7 +875,7 @@ private void InitializeComponent()
// HelpToolStripMenuItem // HelpToolStripMenuItem
// //
this.HelpToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.HelpToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.HelpToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.HelpToolStripMenuItem.Name = "HelpToolStripMenuItem"; this.HelpToolStripMenuItem.Name = "HelpToolStripMenuItem";
@ -887,7 +887,7 @@ private void InitializeComponent()
// RunToolStripMenuItem // RunToolStripMenuItem
// //
this.RunToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.RunToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.RunToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.RunToolStripMenuItem.Name = "RunToolStripMenuItem"; this.RunToolStripMenuItem.Name = "RunToolStripMenuItem";
@ -899,7 +899,7 @@ private void InitializeComponent()
// SuspendToolStripMenuItem // SuspendToolStripMenuItem
// //
this.SuspendToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.SuspendToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.SuspendToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.SuspendToolStripMenuItem.Name = "SuspendToolStripMenuItem"; this.SuspendToolStripMenuItem.Name = "SuspendToolStripMenuItem";
@ -910,7 +910,7 @@ private void InitializeComponent()
// ShutdownToolStripMenuItem // ShutdownToolStripMenuItem
// //
this.ShutdownToolStripMenuItem.BackColor = System.Drawing.Color.Silver; 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.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.ShutdownToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.ShutdownToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.ShutdownToolStripMenuItem.Name = "ShutdownToolStripMenuItem"; this.ShutdownToolStripMenuItem.Name = "ShutdownToolStripMenuItem";
@ -930,7 +930,7 @@ private void InitializeComponent()
// osimage // osimage
// //
this.osimage.Dock = System.Windows.Forms.DockStyle.Fill; this.osimage.Dock = System.Windows.Forms.DockStyle.Fill;
this.osimage.Image = global::TimeHACK.Properties.Resources.Win95SideBar; this.osimage.Image = global::Histacom2.Properties.Resources.Win95SideBar;
this.osimage.Location = new System.Drawing.Point(0, 0); this.osimage.Location = new System.Drawing.Point(0, 0);
this.osimage.Name = "osimage"; this.osimage.Name = "osimage";
this.osimage.Size = new System.Drawing.Size(26, 297); this.osimage.Size = new System.Drawing.Size(26, 297);
@ -1052,7 +1052,7 @@ private void InitializeComponent()
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "Windows95"; this.Name = "Windows95";
this.Tag = "ignoreFormOnTaskbar"; this.Tag = "ignoreFormOnTaskbar";
this.Text = "TimeHACKDesktop"; this.Text = "Histacom2Desktop";
this.Load += new System.EventHandler(this.Desktop_Load); this.Load += new System.EventHandler(this.Desktop_Load);
this.panel1.ResumeLayout(false); this.panel1.ResumeLayout(false);
this.taskbar.ResumeLayout(false); this.taskbar.ResumeLayout(false);

View file

@ -4,13 +4,13 @@
using System.IO; using System.IO;
using System.Media; using System.Media;
using System.Windows.Forms; using System.Windows.Forms;
using TimeHACK.Engine; using Histacom2.Engine;
using TimeHACK.Engine.Template; using Histacom2.Engine.Template;
using TimeHACK.Engine.Template.Taskbars; using Histacom2.Engine.Template.Taskbars;
using TimeHACK.OS.Win95.Win95Apps; using Histacom2.OS.Win95.Win95Apps;
using TimeHACK.OS.Win95.Win95Apps.Story; using Histacom2.OS.Win95.Win95Apps.Story;
using static TimeHACK.Engine.SaveSystem; using static Histacom2.Engine.SaveSystem;
namespace TimeHACK.OS.Win95 namespace Histacom2.OS.Win95
{ {
public partial class Windows95 : Form public partial class Windows95 : Form
{ {
@ -94,7 +94,7 @@ private void Desktop_Load(object sender, EventArgs e)
// Check for and set VM Mode // Check for and set VM Mode
if (this.FormBorderStyle != FormBorderStyle.None) if (this.FormBorderStyle != FormBorderStyle.None)
{ {
this.Text = "TimeHACK - VM Mode"; this.Text = "Histacom2 - VM Mode";
} }
// Start the ClockTimer // Start the ClockTimer
@ -343,7 +343,7 @@ private void desktopicons_DoubleClick(object sender, EventArgs e)
private void infoboxTestToolStripMenuItem_Click(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! \nJust 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! \nJust use wm.startInfobox95(string title, string text, InfoboxType type, InfoboxButtons btns)!", InfoboxType.Info, InfoboxButtons.OK);
app.BringToFront(); app.BringToFront();
startmenu.Hide(); startmenu.Hide();

View file

@ -1,4 +1,4 @@
namespace TimeHACK.OS.Win95.Win95Apps namespace Histacom2.OS.Win95.Win95Apps
{ {
partial class GuessTheNumber partial class GuessTheNumber
{ {
@ -68,7 +68,7 @@ private void InitializeComponent()
// //
// pictureBox1 // pictureBox1
// //
this.pictureBox1.BackgroundImage = global::TimeHACK.Properties.Resources.GTN95_Check; this.pictureBox1.BackgroundImage = global::Histacom2.Properties.Resources.GTN95_Check;
this.pictureBox1.Location = new System.Drawing.Point(191, 30); this.pictureBox1.Location = new System.Drawing.Point(191, 30);
this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Name = "pictureBox1";
this.pictureBox1.Size = new System.Drawing.Size(55, 27); this.pictureBox1.Size = new System.Drawing.Size(55, 27);
@ -85,7 +85,7 @@ private void InitializeComponent()
// //
// pictureBox3 // pictureBox3
// //
this.pictureBox3.BackgroundImage = global::TimeHACK.Properties.Resources.GTN95_Restart; this.pictureBox3.BackgroundImage = global::Histacom2.Properties.Resources.GTN95_Restart;
this.pictureBox3.Location = new System.Drawing.Point(19, 62); this.pictureBox3.Location = new System.Drawing.Point(19, 62);
this.pictureBox3.Name = "pictureBox3"; this.pictureBox3.Name = "pictureBox3";
this.pictureBox3.Size = new System.Drawing.Size(227, 23); this.pictureBox3.Size = new System.Drawing.Size(227, 23);

View file

@ -8,7 +8,7 @@
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows.Forms; using System.Windows.Forms;
namespace TimeHACK.OS.Win95.Win95Apps namespace Histacom2.OS.Win95.Win95Apps
{ {
public partial class GuessTheNumber : UserControl public partial class GuessTheNumber : UserControl
{ {

View file

@ -1,4 +1,4 @@
namespace TimeHACK.OS.Win95.Win95Apps.IE4Sites namespace Histacom2.OS.Win95.Win95Apps.IE4Sites
{ {
partial class _12padams1998 partial class _12padams1998
{ {

View file

@ -7,10 +7,10 @@
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows.Forms; using System.Windows.Forms;
using TimeHACK.Engine; using Histacom2.Engine;
using System.Threading; using System.Threading;
namespace TimeHACK.OS.Win95.Win95Apps.IE4Sites namespace Histacom2.OS.Win95.Win95Apps.IE4Sites
{ {
public partial class _12padams1998 : UserControl public partial class _12padams1998 : UserControl
{ {

View file

@ -1,4 +1,4 @@
namespace TimeHACK.OS.Win95.Win95Apps.IE4Sites namespace Histacom2.OS.Win95.Win95Apps.IE4Sites
{ {
partial class GoogleHome partial class GoogleHome
{ {

View file

@ -8,7 +8,7 @@
using System.Threading.Tasks; using System.Threading.Tasks;
using System.Windows.Forms; using System.Windows.Forms;
namespace TimeHACK.OS.Win95.Win95Apps.IE4Sites namespace Histacom2.OS.Win95.Win95Apps.IE4Sites
{ {
public partial class GoogleHome : UserControl public partial class GoogleHome : UserControl
{ {

Some files were not shown because too many files have changed in this diff Show more