diff options
| author | lempamo <[email protected]> | 2017-05-20 09:19:29 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-05-20 09:19:29 -0400 |
| commit | 6b6678c7667afd035ed959e2ddd56bc506d878c9 (patch) | |
| tree | c20001bd412885f8c4082bec2634f4e4feb58251 | |
| parent | c4578aa476699552fbb950fd536a757be7086977 (diff) | |
| parent | 516928f112a8b646d81d99693fbbcd4e5c45b6e2 (diff) | |
| download | histacom2-6b6678c7667afd035ed959e2ddd56bc506d878c9.tar.gz histacom2-6b6678c7667afd035ed959e2ddd56bc506d878c9.tar.bz2 histacom2-6b6678c7667afd035ed959e2ddd56bc506d878c9.zip | |
Merge pull request #1 from TimeHACKDevs/master
Merge
152 files changed, 6113 insertions, 815 deletions
diff --git a/.vs/TimeHACK/v14/.suo b/.vs/TimeHACK/v14/.suo Binary files differindex d68371c..0db053e 100644 --- a/.vs/TimeHACK/v14/.suo +++ b/.vs/TimeHACK/v14/.suo diff --git a/.vs/TimeHACK/v15/.suo b/.vs/TimeHACK/v15/.suo Binary files differindex d20ff58..5b5f043 100644 --- a/.vs/TimeHACK/v15/.suo +++ b/.vs/TimeHACK/v15/.suo diff --git a/Data/google.jpg b/Data/google.jpg Binary files differnew file mode 100644 index 0000000..26df90c --- /dev/null +++ b/Data/google.jpg diff --git a/Profiles/user.save b/Profiles/user.save new file mode 100644 index 0000000..e7cefbf --- /dev/null +++ b/Profiles/user.save @@ -0,0 +1 @@ +eyJVc2VybmFtZSI6bnVsbCwiSW5zdGFsbGVkUHJvZ3JhbXMiOnt9LCJFeHBlcmllbmNlZFN0b3JpZXMiOltdfQ==
\ No newline at end of file @@ -1,32 +1,35 @@ + <a href="https://ci.appveyor.com/project/timehack/timehack"><img src="https://ci.appveyor.com/api/projects/status/8x34p8b0i2idblgd?svg=true" style="border: 0;" alt="AppVeyor Badge"></a> [](https://discord.gg/FZgQMDe) # TimeHACK -## The original hacking simulator! +## The remake of the original hacking simulator! TimeHACK is a C# version of the PC game Histacom, released by 12padams in 2010. Here are some of our goals: -* Get TimeHACK to the same playable state that Histacom is in. -* Write a new engine and make an API to develop your own applications. +* Get TimeHACK to the same playable state that Histacom's in and beyond. +* Write a new engine and make an API so that you can easily develop your own applications. * Create a new Window Manager to make the development of apps easier. ## Building -TimeHACK is currently being developed on Microsoft Visual Studio 2017. Visual Studio 2015 has also been proven to work. If you are using a different IDE, please use caution. We cannot guarantee the stability of other IDEs. +TimeHACK is currently being developed in Microsoft Visual Studio 2017. Visual Studio 2015 has also been proven to work. If you are using a different IDE, please do so with caution. We cannot guarantee the stability of other IDEs. -Load the ``.SLN`` project file into Visual Studio and compile. No further steps are required. This list may grow in the future. +Load the ``.sln`` project file into Visual Studio and compile. No further steps are required. This list may grow in the future. ## Links -TimeHACK has a forum at http://www.ashifter.ml/timehack/forum +TimeHACK has a forum at https://www.ashifter.ml/timehack/forum + +TimeHACK has a Discord server at https://discord.gg/FZgQMDe (You can also click on the dark blue Discord Badge) -TimeHACK has a Discord at https://discord.gg/FZgQMDe (You can also click on the Purple Discord Badge) +TimeHACK has an AppVeyor project at https://ci.appveyor.com/project/timehack/timehack (You can also use the AppVeyor badge) -TimeHACK has an AppVeyor at https://ci.appveyor.com/project/timehack/timehack (You can also use the AppVeyor Badge) +TimeHACK has a YouTube channel at https://www.youtube.com/channel/UCU3uiIgHdLaNvPYEB1hWPsg (We have a tutorial on how to contribute over there) ## Documentation -TimeHACK Documentation can be found at the TimeHACK Wiki. https://github.com/TimeHACKDevs/TimeHACK/wiki +TimeHACK's documentation can be found on the TimeHACK Wiki: https://github.com/TimeHACKDevs/TimeHACK/wiki ## Other Repositories -We do have another repo which is of an completely discontinued porject called "HistacomVB", the idea of it being that it was, rather than a rewrite like this, the old game except being built upon. In the end however we stopped it because have "HistacomVB" and "TimeHACK" was just stupid. If you REALLY want to see the repo you can here: http://www.github.com/TimeHACKDevs/HistacomVB +* A completely discontinued project called "HistacomVB". +The idea of it being that it was the old game except being built upon. In the end, however, we stopped it because having "HistacomVB" and "TimeHACK" was unnecessary. If you REALLY want to see the repo, click here: http://www.github.com/TimeHACKDevs/HistacomVB ## License -TimeHACK is Licensed under the [MIT Software license](https://github.com/TimeHACKDevs/TimeHACK/blob/master/LICENSE). All code contributed to the TimeHACK project is the property of the TimeHACK development team, and will not be removed upon request. - +TimeHACK is licensed under the [MIT license](https://github.com/TimeHACKDevs/TimeHACK/blob/master/LICENSE). All code committed to the TimeHACK repository becomes the property of the TimeHACK Development Team, and will **not** be removed upon request. diff --git a/TimeHACK.Engine/SaveSystem.cs b/TimeHACK.Engine/SaveSystem.cs new file mode 100644 index 0000000..89c9cb0 --- /dev/null +++ b/TimeHACK.Engine/SaveSystem.cs @@ -0,0 +1,106 @@ +using System; +using System.Collections.Generic; +using System.IO; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Newtonsoft.Json; + +namespace TimeHACK.Engine +{ + public static class SaveSystem + { + public static Save CurrentSave { get; private set; } + public static Boolean DevMode = false; + + public static string GameDirectory + { + get + { + return Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "TimeHACK"); + } + } + + public static string AllProfilesDirectory + { + get + { + return Path.Combine(GameDirectory, "Profiles"); + } + } + + public static string ProfileName = ""; + public static string ProfileFile = "main.save"; + + public static string ProfileDirectory + { + get + { + return Path.Combine(GameDirectory, Path.Combine("Profiles", ProfileName)); + } + } + + public static bool LoadSave() + { + // ON A FINAL RELEASE USE THE "FINAL RELEASE THINGS" + #region Final Release Things + //Read base64 string from file + //string b64 = File.ReadAllText(Path.Combine(ProfileDirectory, ProfileFile)); + //Get Unicode byte array + //byte[] bytes = Convert.FromBase64String(b64); + //Decode the Unicode + //string json = Encoding.UTF8.GetString(bytes); + //Deserialize save object. + #endregion + // USE THE THINGS IN THE "DEVELOPER THINGS" FOR A DEVELOPMENT RELEASE + #region Developer Things + string json = File.ReadAllText(Path.Combine(ProfileDirectory, ProfileFile)); + #endregion + CurrentSave = JsonConvert.DeserializeObject<Save>(json); + return true; + } + + public static void NewGame() + { + + //TODO: User must set a username....somehow + if (!Directory.Exists(GameDirectory)) + Directory.CreateDirectory(GameDirectory); + + if (!Directory.Exists(AllProfilesDirectory)) + Directory.CreateDirectory(AllProfilesDirectory); + + if (!Directory.Exists(ProfileDirectory)) + Directory.CreateDirectory(ProfileDirectory); + + var save = new Save(); + save.ExperiencedStories = new List<string>(); + save.InstalledPrograms = new Dictionary<string, bool>(); + CurrentSave = save; + SaveGame(); + } + + public static void SaveGame() + { + //Serialize the save to JSON. + string json = JsonConvert.SerializeObject(CurrentSave, Formatting.Indented); + + // ADD THE TWO LINES OF CODE BELOW ON A FINAL RELEASE + //Get JSON bytes (Unicode format). + //var bytes = Encoding.UTF8.GetBytes(json); + //Encode the array into Base64. + //string b64 = Convert.ToBase64String(bytes); + //Write to disk. + + // CHANGE THE "JSON" TO "B64" ON A FINAL RELEASE! + File.WriteAllText(Path.Combine(ProfileDirectory, ProfileFile), json); + } + } + + public class Save + { + public string Username { get; set; } + public Dictionary<string, bool> InstalledPrograms { get; set; } + public List<string> ExperiencedStories { get; set; } + } +} diff --git a/TimeHACK.Engine/TaskBarController.cs b/TimeHACK.Engine/TaskBarController.cs index 3ede876..3d73d63 100644 --- a/TimeHACK.Engine/TaskBarController.cs +++ b/TimeHACK.Engine/TaskBarController.cs @@ -1,8 +1,4 @@ -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; -using System.Threading.Tasks; +using System.Collections.Generic; using System.Windows.Forms; using System.Drawing; diff --git a/TimeHACK.Engine/Template/WinClassic.cs b/TimeHACK.Engine/Template/WinClassic.cs index ea99353..615d0f4 100644 --- a/TimeHACK.Engine/Template/WinClassic.cs +++ b/TimeHACK.Engine/Template/WinClassic.cs @@ -26,7 +26,7 @@ namespace TimeHACK.Engine.Template private void Programtopbar_drag(object sender, MouseEventArgs e) { - if (e.Button == MouseButtons.Left) + if (e.Button == MouseButtons.Left && max == false) { ReleaseCapture(); SendMessage(Handle, WM_NCLBUTTONDOWN, HT_CAPTION, 0); diff --git a/TimeHACK.Engine/TimeHACK.Engine.csproj b/TimeHACK.Engine/TimeHACK.Engine.csproj index ecb6b48..14707ae 100644 --- a/TimeHACK.Engine/TimeHACK.Engine.csproj +++ b/TimeHACK.Engine/TimeHACK.Engine.csproj @@ -47,6 +47,7 @@ <ItemGroup> <Compile Include="BSODCreator.cs" /> <None Include="Resources\WinClassic\Window\pjBg6mKP.bin" /> + <Compile Include="SaveSystem.cs" /> <Compile Include="TaskBarController.cs" /> <Compile Include="Template\Win9XBSOD.cs"> <SubType>Form</SubType> diff --git a/TimeHACK.Engine/WindowManager.cs b/TimeHACK.Engine/WindowManager.cs index 6bb7cc5..2d5ef8a 100644 --- a/TimeHACK.Engine/WindowManager.cs +++ b/TimeHACK.Engine/WindowManager.cs @@ -10,7 +10,7 @@ namespace TimeHACK.Engine { public static System.Drawing.Text.PrivateFontCollection pfc = new System.Drawing.Text.PrivateFontCollection(); - public WinClassic startWin95(UserControl content, String title, Image icon, Boolean MaxButton, Boolean MinButton) + public WinClassic startWin95(UserControl content, String title, Image icon, Boolean MaxButton, Boolean MinButton, Boolean ShowApplicationAsDialog = false) { // Setup Window WinClassic app = new WinClassic(); @@ -64,13 +64,11 @@ namespace TimeHACK.Engine // Set some values (for the taskbar) app.Tag = TaskBarController.AvalibleApplicationID; - app.Text = title; + app.Text = title; // Show the app - app.Show(); - app.BringToFront(); app.TopMost = true; - + if (ShowApplicationAsDialog == false) { app.Show(); } else { app.ShowDialog(); } return app; } diff --git a/TimeHACK.Engine/bin/Debug/TimeHACK.Engine.dll b/TimeHACK.Engine/bin/Debug/TimeHACK.Engine.dll Binary files differindex e569db6..a041063 100644 --- a/TimeHACK.Engine/bin/Debug/TimeHACK.Engine.dll +++ b/TimeHACK.Engine/bin/Debug/TimeHACK.Engine.dll diff --git a/TimeHACK.Engine/bin/Debug/TimeHACK.Engine.pdb b/TimeHACK.Engine/bin/Debug/TimeHACK.Engine.pdb Binary files differindex 668c688..7d98108 100644 --- a/TimeHACK.Engine/bin/Debug/TimeHACK.Engine.pdb +++ b/TimeHACK.Engine/bin/Debug/TimeHACK.Engine.pdb diff --git a/TimeHACK.Engine/bin/Release/TimeHACK.Engine.dll b/TimeHACK.Engine/bin/Release/TimeHACK.Engine.dll Binary files differindex 4bb4674..6e12988 100644 --- a/TimeHACK.Engine/bin/Release/TimeHACK.Engine.dll +++ b/TimeHACK.Engine/bin/Release/TimeHACK.Engine.dll diff --git a/TimeHACK.Engine/bin/Release/TimeHACK.Engine.pdb b/TimeHACK.Engine/bin/Release/TimeHACK.Engine.pdb Binary files differindex bea88dc..7eebc93 100644 --- a/TimeHACK.Engine/bin/Release/TimeHACK.Engine.pdb +++ b/TimeHACK.Engine/bin/Release/TimeHACK.Engine.pdb diff --git a/TimeHACK.Engine/obj/Debug/CoreCompileInputs.cache b/TimeHACK.Engine/obj/Debug/CoreCompileInputs.cache index fbbd8f0..fc241b3 100644 --- a/TimeHACK.Engine/obj/Debug/CoreCompileInputs.cache +++ b/TimeHACK.Engine/obj/Debug/CoreCompileInputs.cache @@ -1 +1 @@ -7aea260e995a5c8b26639269dc8e3704ae145c65 +34172df9cedd638ac7a23f9204409797a1d64c7b diff --git a/TimeHACK.Engine/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/TimeHACK.Engine/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache Binary files differindex bac2e0d..c2faf9c 100644 --- a/TimeHACK.Engine/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache +++ b/TimeHACK.Engine/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache diff --git a/TimeHACK.Engine/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll b/TimeHACK.Engine/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll Binary files differnew file mode 100644 index 0000000..3b060b6 --- /dev/null +++ b/TimeHACK.Engine/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll diff --git a/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.Properties.Resources.resources b/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.Properties.Resources.resources Binary files differnew file mode 100644 index 0000000..db7dda3 --- /dev/null +++ b/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.Properties.Resources.resources diff --git a/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.Template.AboutBox95.resources b/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.Template.AboutBox95.resources Binary files differnew file mode 100644 index 0000000..6c05a97 --- /dev/null +++ b/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.Template.AboutBox95.resources diff --git a/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.Template.Infobox95.resources b/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.Template.Infobox95.resources Binary files differnew file mode 100644 index 0000000..6c05a97 --- /dev/null +++ b/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.Template.Infobox95.resources diff --git a/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.Template.Win9XBSOD.resources b/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.Template.Win9XBSOD.resources Binary files differnew file mode 100644 index 0000000..6c05a97 --- /dev/null +++ b/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.Template.Win9XBSOD.resources diff --git a/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.Template.WinClassic.resources b/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.Template.WinClassic.resources Binary files differnew file mode 100644 index 0000000..690267a --- /dev/null +++ b/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.Template.WinClassic.resources diff --git a/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.csproj.FileListAbsolute.txt b/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..4854434 --- /dev/null +++ b/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.csproj.FileListAbsolute.txt @@ -0,0 +1,12 @@ +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Engine\bin\Debug\TimeHACK.Engine.dll +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Engine\bin\Debug\TimeHACK.Engine.pdb +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Engine\bin\Debug\Newtonsoft.Json.dll +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Engine\obj\Debug\TimeHACK.Engine.csprojResolveAssemblyReference.cache +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Engine\obj\Debug\TimeHACK.Engine.Properties.Resources.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Engine\obj\Debug\TimeHACK.Engine.Template.Win9XBSOD.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Engine\obj\Debug\TimeHACK.Engine.Template.AboutBox95.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Engine\obj\Debug\TimeHACK.Engine.Template.Infobox95.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Engine\obj\Debug\TimeHACK.Engine.Template.WinClassic.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Engine\obj\Debug\TimeHACK.Engine.csproj.GenerateResource.Cache +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Engine\obj\Debug\TimeHACK.Engine.dll +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Engine\obj\Debug\TimeHACK.Engine.pdb diff --git a/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.csproj.GenerateResource.Cache b/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.csproj.GenerateResource.Cache Binary files differnew file mode 100644 index 0000000..c63151a --- /dev/null +++ b/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.csproj.GenerateResource.Cache diff --git a/TimeHACK.Engine/obj/Release/TimeHACK.Engine.csprojResolveAssemblyReference.cache b/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.csprojResolveAssemblyReference.cache Binary files differindex 7f234df..97183e6 100644 --- a/TimeHACK.Engine/obj/Release/TimeHACK.Engine.csprojResolveAssemblyReference.cache +++ b/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.csprojResolveAssemblyReference.cache diff --git a/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.dll b/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.dll Binary files differnew file mode 100644 index 0000000..a041063 --- /dev/null +++ b/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.dll diff --git a/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.pdb b/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.pdb Binary files differnew file mode 100644 index 0000000..7d98108 --- /dev/null +++ b/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.pdb diff --git a/TimeHACK.Engine/obj/Release/CoreCompileInputs.cache b/TimeHACK.Engine/obj/Release/CoreCompileInputs.cache index 016901c..fc241b3 100644 --- a/TimeHACK.Engine/obj/Release/CoreCompileInputs.cache +++ b/TimeHACK.Engine/obj/Release/CoreCompileInputs.cache @@ -1 +1 @@ -03f745c6a0e75bab98ef9919670fab0f1de5ece4 +34172df9cedd638ac7a23f9204409797a1d64c7b diff --git a/TimeHACK.Engine/obj/Release/DesignTimeResolveAssemblyReferences.cache b/TimeHACK.Engine/obj/Release/DesignTimeResolveAssemblyReferences.cache Binary files differdeleted file mode 100644 index 53f448c..0000000 --- a/TimeHACK.Engine/obj/Release/DesignTimeResolveAssemblyReferences.cache +++ /dev/null diff --git a/TimeHACK.Engine/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache b/TimeHACK.Engine/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache Binary files differdeleted file mode 100644 index 4103602..0000000 --- a/TimeHACK.Engine/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache +++ /dev/null diff --git a/TimeHACK.Engine/obj/Release/TimeHACK.Engine.csproj.FileListAbsolute.txt b/TimeHACK.Engine/obj/Release/TimeHACK.Engine.csproj.FileListAbsolute.txt index ff60e63..f9bcb5d 100644 --- a/TimeHACK.Engine/obj/Release/TimeHACK.Engine.csproj.FileListAbsolute.txt +++ b/TimeHACK.Engine/obj/Release/TimeHACK.Engine.csproj.FileListAbsolute.txt @@ -2,8 +2,6 @@ D:\Documents\GitHub\TimeHACK\TimeHACK.Engine\bin\Release\TimeHACK.Engine.dll D:\Documents\GitHub\TimeHACK\TimeHACK.Engine\bin\Release\TimeHACK.Engine.pdb D:\Documents\GitHub\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK.Engine.csprojResolveAssemblyReference.cache D:\Documents\GitHub\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK.Engine.Properties.Resources.resources -D:\Documents\GitHub\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK.Main.Template.Infobox95.resources -D:\Documents\GitHub\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK.Main.Template.WinClassic.resources D:\Documents\GitHub\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK.Engine.csproj.GenerateResource.Cache D:\Documents\GitHub\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK.Engine.dll D:\Documents\GitHub\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK.Engine.pdb @@ -30,7 +28,6 @@ I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK.Engine.csproj.GenerateResource.Cache I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK.Engine.dll I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK.Engine.pdb -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK.Engine.csprojResolveAssemblyReference.cache C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Engine\bin\Release\TimeHACK.Engine.dll C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Engine\bin\Release\TimeHACK.Engine.pdb C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Engine\bin\Release\Newtonsoft.Json.dll @@ -43,3 +40,32 @@ C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Engine\obj\Release\Time C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Engine\obj\Release\TimeHACK.Engine.csproj.GenerateResource.Cache C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Engine\obj\Release\TimeHACK.Engine.dll C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Engine\obj\Release\TimeHACK.Engine.pdb +D:\Documents\GitHub\TimeHACK\TimeHACK.Engine\bin\Release\Newtonsoft.Json.dll +D:\Documents\GitHub\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK.Engine.Template.Win9XBSOD.resources +D:\Documents\GitHub\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK.Engine.Template.AboutBox95.resources +D:\Documents\GitHub\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK.Engine.Template.Infobox95.resources +D:\Documents\GitHub\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK.Engine.Template.WinClassic.resources +C:\Users\Michael\Documents\TimeHACK\TimeHACK.Engine\bin\Release\TimeHACK.Engine.dll +C:\Users\Michael\Documents\TimeHACK\TimeHACK.Engine\bin\Release\TimeHACK.Engine.pdb +C:\Users\Michael\Documents\TimeHACK\TimeHACK.Engine\bin\Release\Newtonsoft.Json.dll +C:\Users\Michael\Documents\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK.Engine.csprojResolveAssemblyReference.cache +C:\Users\Michael\Documents\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK.Engine.Properties.Resources.resources +C:\Users\Michael\Documents\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK.Engine.Template.Win9XBSOD.resources +C:\Users\Michael\Documents\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK.Engine.Template.AboutBox95.resources +C:\Users\Michael\Documents\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK.Engine.Template.Infobox95.resources +C:\Users\Michael\Documents\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK.Engine.Template.WinClassic.resources +C:\Users\Michael\Documents\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK.Engine.csproj.GenerateResource.Cache +C:\Users\Michael\Documents\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK.Engine.dll +C:\Users\Michael\Documents\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK.Engine.pdb +C:\Users\trm\Documents\TimeHACK\TimeHACK.Engine\bin\Release\TimeHACK.Engine.dll +C:\Users\trm\Documents\TimeHACK\TimeHACK.Engine\bin\Release\TimeHACK.Engine.pdb +C:\Users\trm\Documents\TimeHACK\TimeHACK.Engine\bin\Release\Newtonsoft.Json.dll +C:\Users\trm\Documents\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK.Engine.csprojResolveAssemblyReference.cache +C:\Users\trm\Documents\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK.Engine.Properties.Resources.resources +C:\Users\trm\Documents\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK.Engine.Template.Win9XBSOD.resources +C:\Users\trm\Documents\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK.Engine.Template.AboutBox95.resources +C:\Users\trm\Documents\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK.Engine.Template.Infobox95.resources +C:\Users\trm\Documents\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK.Engine.Template.WinClassic.resources +C:\Users\trm\Documents\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK.Engine.csproj.GenerateResource.Cache +C:\Users\trm\Documents\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK.Engine.dll +C:\Users\trm\Documents\TimeHACK\TimeHACK.Engine\obj\Release\TimeHACK.Engine.pdb diff --git a/TimeHACK.Engine/obj/Release/TimeHACK.Engine.csproj.GenerateResource.Cache b/TimeHACK.Engine/obj/Release/TimeHACK.Engine.csproj.GenerateResource.Cache Binary files differindex 7b238df..5860591 100644 --- a/TimeHACK.Engine/obj/Release/TimeHACK.Engine.csproj.GenerateResource.Cache +++ b/TimeHACK.Engine/obj/Release/TimeHACK.Engine.csproj.GenerateResource.Cache diff --git a/TimeHACK.Engine/obj/Release/TimeHACK.Engine.dll b/TimeHACK.Engine/obj/Release/TimeHACK.Engine.dll Binary files differindex 4bb4674..6e12988 100644 --- a/TimeHACK.Engine/obj/Release/TimeHACK.Engine.dll +++ b/TimeHACK.Engine/obj/Release/TimeHACK.Engine.dll diff --git a/TimeHACK.Engine/obj/Release/TimeHACK.Engine.pdb b/TimeHACK.Engine/obj/Release/TimeHACK.Engine.pdb Binary files differindex bea88dc..7eebc93 100644 --- a/TimeHACK.Engine/obj/Release/TimeHACK.Engine.pdb +++ b/TimeHACK.Engine/obj/Release/TimeHACK.Engine.pdb diff --git a/TimeHACK.Main/OS/Win95/Win95.Designer.cs b/TimeHACK.Main/OS/Win95/Win95.Designer.cs index 2e88c36..5ec9550 100644 --- a/TimeHACK.Main/OS/Win95/Win95.Designer.cs +++ b/TimeHACK.Main/OS/Win95/Win95.Designer.cs @@ -1,4 +1,6 @@ -namespace TimeHACK.OS.Win95 +using TimeHACK.OS.Win95; + +namespace TimeHACK.OS.Win95 { partial class Windows95 { @@ -29,21 +31,21 @@ private void InitializeComponent() { this.components = new System.ComponentModel.Container(); - this.resources = new System.ComponentModel.ComponentResourceManager(typeof(Windows95)); - System.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem("My Computer", 0); - System.Windows.Forms.ListViewItem listViewItem2 = new System.Windows.Forms.ListViewItem("Network Neighborhood", 5); - System.Windows.Forms.ListViewItem listViewItem3 = new System.Windows.Forms.ListViewItem("Inbox", 3); - System.Windows.Forms.ListViewItem listViewItem4 = new System.Windows.Forms.ListViewItem("Recycle Bin", 7); - System.Windows.Forms.ListViewItem listViewItem5 = new System.Windows.Forms.ListViewItem("Internet Explorer", 2); - System.Windows.Forms.ListViewItem listViewItem6 = new System.Windows.Forms.ListViewItem("Online Services", 1); - System.Windows.Forms.ListViewItem listViewItem7 = new System.Windows.Forms.ListViewItem("Set Up The Microsoft Network", 4); - System.Windows.Forms.ListViewItem listViewItem8 = new System.Windows.Forms.ListViewItem("Outlook Express", 6); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Windows95)); + System.Windows.Forms.ListViewItem listViewItem9 = new System.Windows.Forms.ListViewItem("My Computer", 0); + System.Windows.Forms.ListViewItem listViewItem10 = new System.Windows.Forms.ListViewItem("Network Neighborhood", 5); + System.Windows.Forms.ListViewItem listViewItem11 = new System.Windows.Forms.ListViewItem("Inbox", 3); + System.Windows.Forms.ListViewItem listViewItem12 = new System.Windows.Forms.ListViewItem("Recycle Bin", 7); + System.Windows.Forms.ListViewItem listViewItem13 = new System.Windows.Forms.ListViewItem("Internet Explorer", 2); + System.Windows.Forms.ListViewItem listViewItem14 = new System.Windows.Forms.ListViewItem("Online Services", 1); + System.Windows.Forms.ListViewItem listViewItem15 = new System.Windows.Forms.ListViewItem("Set Up The Microsoft Network", 4); + System.Windows.Forms.ListViewItem listViewItem16 = new System.Windows.Forms.ListViewItem("Outlook Express", 6); this.panel1 = new System.Windows.Forms.Panel(); this.panel2 = new System.Windows.Forms.Panel(); this.taskbar = new System.Windows.Forms.Panel(); - this.taskbarItems = new System.Windows.Forms.Panel(); - this.taskbartime = new System.Windows.Forms.Label(); this.clockPanel = new System.Windows.Forms.Panel(); + this.taskbartime = new System.Windows.Forms.Label(); + this.taskbarItems = new System.Windows.Forms.Panel(); this.startbutton = new System.Windows.Forms.PictureBox(); this.startmenu = new System.Windows.Forms.Panel(); this.startmenuitems = new System.Windows.Forms.MenuStrip(); @@ -129,6 +131,7 @@ this.PropertiesToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); this.panel1.SuspendLayout(); this.taskbar.SuspendLayout(); + this.clockPanel.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.startbutton)).BeginInit(); this.startmenu.SuspendLayout(); this.startmenuitems.SuspendLayout(); @@ -159,9 +162,8 @@ // this.taskbar.BackColor = System.Drawing.Color.Silver; this.taskbar.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("taskbar.BackgroundImage"))); - this.taskbar.Controls.Add(this.taskbarItems); - this.taskbar.Controls.Add(this.taskbartime); this.taskbar.Controls.Add(this.clockPanel); + this.taskbar.Controls.Add(this.taskbarItems); this.taskbar.Controls.Add(this.startbutton); this.taskbar.Dock = System.Windows.Forms.DockStyle.Bottom; this.taskbar.Location = new System.Drawing.Point(0, 452); @@ -169,38 +171,41 @@ this.taskbar.Size = new System.Drawing.Size(640, 28); this.taskbar.TabIndex = 2; // - // taskbarItems + // clockPanel // - this.taskbarItems.Location = new System.Drawing.Point(63, 3); - this.taskbarItems.Name = "taskbarItems"; - this.taskbarItems.Size = new System.Drawing.Size(506, 22); - this.taskbarItems.TabIndex = 5; + this.clockPanel.BackgroundImage = global::TimeHACK.Properties.Resources.WinClassicTime; + this.clockPanel.Controls.Add(this.taskbartime); + this.clockPanel.Dock = System.Windows.Forms.DockStyle.Right; + this.clockPanel.Location = new System.Drawing.Point(575, 0); + this.clockPanel.Name = "clockPanel"; + this.clockPanel.Size = new System.Drawing.Size(65, 28); + this.clockPanel.TabIndex = 4; // // taskbartime // this.taskbartime.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.taskbartime.AutoSize = true; this.taskbartime.BackColor = System.Drawing.Color.Transparent; - this.taskbartime.Location = new System.Drawing.Point(577, 6); + this.taskbartime.Location = new System.Drawing.Point(10, 7); this.taskbartime.Name = "taskbartime"; this.taskbartime.Size = new System.Drawing.Size(26, 13); this.taskbartime.TabIndex = 2; this.taskbartime.Text = "time"; this.taskbartime.Click += new System.EventHandler(this.taskbartime_Click); // - // clockPanel + // taskbarItems // - this.clockPanel.BackgroundImage = global::TimeHACK.Properties.Resources.WinClassicTime; - this.clockPanel.Dock = System.Windows.Forms.DockStyle.Right; - this.clockPanel.Location = new System.Drawing.Point(575, 0); - this.clockPanel.Name = "clockPanel"; - this.clockPanel.Size = new System.Drawing.Size(65, 28); - this.clockPanel.TabIndex = 4; + this.taskbarItems.BackColor = System.Drawing.Color.Transparent; + this.taskbarItems.Cursor = System.Windows.Forms.Cursors.Default; + this.taskbarItems.Location = new System.Drawing.Point(63, 4); + this.taskbarItems.Name = "taskbarItems"; + this.taskbarItems.Size = new System.Drawing.Size(3648, 22); + this.taskbarItems.TabIndex = 5; // // startbutton // this.startbutton.Image = ((System.Drawing.Image)(resources.GetObject("startbutton.Image"))); - this.startbutton.Location = new System.Drawing.Point(3, 3); + this.startbutton.Location = new System.Drawing.Point(2, 4); this.startbutton.Name = "startbutton"; this.startbutton.Size = new System.Drawing.Size(54, 22); this.startbutton.TabIndex = 3; @@ -213,7 +218,7 @@ this.startmenu.BackColor = System.Drawing.Color.Silver; this.startmenu.Controls.Add(this.startmenuitems); this.startmenu.Controls.Add(this.ossidestartmenu); - this.startmenu.Location = new System.Drawing.Point(0, 157); + this.startmenu.Location = new System.Drawing.Point(0, 160); this.startmenu.Name = "startmenu"; this.startmenu.Size = new System.Drawing.Size(174, 300); this.startmenu.TabIndex = 3; @@ -238,7 +243,7 @@ this.startmenuitems.Name = "startmenuitems"; this.startmenuitems.Padding = new System.Windows.Forms.Padding(6, 2, 0, 0); this.startmenuitems.RenderMode = System.Windows.Forms.ToolStripRenderMode.System; - this.startmenuitems.Size = new System.Drawing.Size(141, 292); + this.startmenuitems.Size = new System.Drawing.Size(141, 311); this.startmenuitems.TabIndex = 0; this.startmenuitems.Text = "StartMenu"; // @@ -439,6 +444,7 @@ this.AddressBookToolStripMenuItem.Name = "AddressBookToolStripMenuItem"; this.AddressBookToolStripMenuItem.Size = new System.Drawing.Size(181, 28); this.AddressBookToolStripMenuItem.Text = "Address Book"; + this.AddressBookToolStripMenuItem.Click += new System.EventHandler(this.AddressBookToolStripMenuItem_Click); // // CalculatorToolStripMenuItem // @@ -727,6 +733,7 @@ // DocumentsToolStripMenuItem // this.DocumentsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.DocumentsToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; this.DocumentsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.windowManagerTestToolStripMenuItem, this.downloaderTestToolStripMenuItem, @@ -742,6 +749,8 @@ // // windowManagerTestToolStripMenuItem // + this.windowManagerTestToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.windowManagerTestToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("windowManagerTestToolStripMenuItem.BackgroundImage"))); this.windowManagerTestToolStripMenuItem.Name = "windowManagerTestToolStripMenuItem"; this.windowManagerTestToolStripMenuItem.Size = new System.Drawing.Size(186, 22); this.windowManagerTestToolStripMenuItem.Text = "WindowManagerTest"; @@ -749,6 +758,8 @@ // // downloaderTestToolStripMenuItem // + this.downloaderTestToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.downloaderTestToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("downloaderTestToolStripMenuItem.BackgroundImage"))); this.downloaderTestToolStripMenuItem.Name = "downloaderTestToolStripMenuItem"; this.downloaderTestToolStripMenuItem.Size = new System.Drawing.Size(186, 22); this.downloaderTestToolStripMenuItem.Text = "DownloaderTest"; @@ -756,6 +767,8 @@ // // installerTestToolStripMenuItem // + this.installerTestToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.installerTestToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("installerTestToolStripMenuItem.BackgroundImage"))); this.installerTestToolStripMenuItem.Name = "installerTestToolStripMenuItem"; this.installerTestToolStripMenuItem.Size = new System.Drawing.Size(186, 22); this.installerTestToolStripMenuItem.Text = "InstallerTest"; @@ -780,6 +793,7 @@ // ControlPanelToolStripMenuItem // this.ControlPanelToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.ControlPanelToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ControlPanelToolStripMenuItem.BackgroundImage"))); this.ControlPanelToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.ControlPanelToolStripMenuItem.Name = "ControlPanelToolStripMenuItem"; this.ControlPanelToolStripMenuItem.Size = new System.Drawing.Size(146, 22); @@ -788,6 +802,7 @@ // PrintersToolStripMenuItem // this.PrintersToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.PrintersToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("PrintersToolStripMenuItem.BackgroundImage"))); this.PrintersToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.PrintersToolStripMenuItem.Name = "PrintersToolStripMenuItem"; this.PrintersToolStripMenuItem.Size = new System.Drawing.Size(146, 22); @@ -796,6 +811,7 @@ // TaskbarToolStripMenuItem // this.TaskbarToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.TaskbarToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("TaskbarToolStripMenuItem.BackgroundImage"))); this.TaskbarToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.TaskbarToolStripMenuItem.Name = "TaskbarToolStripMenuItem"; this.TaskbarToolStripMenuItem.Size = new System.Drawing.Size(146, 22); @@ -804,6 +820,7 @@ // FindToolStripMenuItem // this.FindToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.FindToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("FindToolStripMenuItem.BackgroundImage"))); this.FindToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.FilesOrFoldersToolStripMenuItem, this.ComputerToolStripMenuItem, @@ -822,6 +839,7 @@ // FilesOrFoldersToolStripMenuItem // this.FilesOrFoldersToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.FilesOrFoldersToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("FilesOrFoldersToolStripMenuItem.BackgroundImage"))); this.FilesOrFoldersToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.FilesOrFoldersToolStripMenuItem.Name = "FilesOrFoldersToolStripMenuItem"; this.FilesOrFoldersToolStripMenuItem.Size = new System.Drawing.Size(163, 22); @@ -830,6 +848,7 @@ // ComputerToolStripMenuItem // this.ComputerToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.ComputerToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ComputerToolStripMenuItem.BackgroundImage"))); this.ComputerToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.ComputerToolStripMenuItem.Name = "ComputerToolStripMenuItem"; this.ComputerToolStripMenuItem.Size = new System.Drawing.Size(163, 22); @@ -838,6 +857,7 @@ // OnTheInternetToolStripMenuItem // this.OnTheInternetToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.OnTheInternetToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("OnTheInternetToolStripMenuItem.BackgroundImage"))); this.OnTheInternetToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.OnTheInternetToolStripMenuItem.Name = "OnTheInternetToolStripMenuItem"; this.OnTheInternetToolStripMenuItem.Size = new System.Drawing.Size(163, 22); @@ -846,6 +866,7 @@ // PeopleToolStripMenuItem // this.PeopleToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.PeopleToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("PeopleToolStripMenuItem.BackgroundImage"))); this.PeopleToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; this.PeopleToolStripMenuItem.Name = "PeopleToolStripMenuItem"; this.PeopleToolStripMenuItem.Size = new System.Drawing.Size(163, 22); @@ -953,14 +974,14 @@ this.desktopicons.BorderStyle = System.Windows.Forms.BorderStyle.None; this.desktopicons.ForeColor = System.Drawing.Color.White; this.desktopicons.Items.AddRange(new System.Windows.Forms.ListViewItem[] { - listViewItem1, - listViewItem2, - listViewItem3, - listViewItem4, - listViewItem5, - listViewItem6, - listViewItem7, - listViewItem8}); + listViewItem9, + listViewItem10, + listViewItem11, + listViewItem12, + listViewItem13, + listViewItem14, + listViewItem15, + listViewItem16}); this.desktopicons.LargeImageList = this.desktopImages; this.desktopicons.Location = new System.Drawing.Point(0, 0); this.desktopicons.Name = "desktopicons"; @@ -1142,7 +1163,8 @@ this.Load += new System.EventHandler(this.Desktop_Load); this.panel1.ResumeLayout(false); this.taskbar.ResumeLayout(false); - this.taskbar.PerformLayout(); + this.clockPanel.ResumeLayout(false); + this.clockPanel.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.startbutton)).EndInit(); this.startmenu.ResumeLayout(false); this.startmenu.PerformLayout(); @@ -1243,7 +1265,7 @@ internal System.Windows.Forms.ToolStripMenuItem BitmapImageToolStripMenuItem; internal System.Windows.Forms.ToolStripMenuItem MicrosoftDataLinkToolStripMenuItem; internal System.Windows.Forms.ToolStripMenuItem PropertiesToolStripMenuItem1; - internal System.ComponentModel.ComponentResourceManager resources; + internal System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Windows95)); private System.Windows.Forms.ToolStripMenuItem windowManagerTestToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem downloaderTestToolStripMenuItem; private System.Windows.Forms.ToolStripMenuItem installerTestToolStripMenuItem; diff --git a/TimeHACK.Main/OS/Win95/Win95.cs b/TimeHACK.Main/OS/Win95/Win95.cs index da8a550..eeaa9f2 100644 --- a/TimeHACK.Main/OS/Win95/Win95.cs +++ b/TimeHACK.Main/OS/Win95/Win95.cs @@ -310,6 +310,20 @@ namespace TimeHACK.OS.Win95 } } + private void AddressBookToolStripMenuItem_Click(object sender, EventArgs e) + { + WinClassicAddressBook ab = new WinClassicAddressBook(); + WinClassic app = wm.startWin95(ab, "Address Book", Properties.Resources.Win95IconWordpad, true, true); + AddTaskBarItem(app, app.Tag.ToString(), "Address Book", Properties.Resources.Win95IconWordpad); + + nonimportantapps.Add(app); + nonimportantapps[nonimportantapps.Count - 1].BringToFront(); + nonimportantapps[nonimportantapps.Count - 1].FormClosing += new FormClosingEventHandler(NonImportantApp_Closing); + + app.BringToFront(); + startmenu.Hide(); + } + //TODO: Add Outlook Express 4 } } diff --git a/TimeHACK.Main/OS/Win95/Win95.resx b/TimeHACK.Main/OS/Win95/Win95.resx index ae3e1b6..d19a5cb 100644 --- a/TimeHACK.Main/OS/Win95/Win95.resx +++ b/TimeHACK.Main/OS/Win95/Win95.resx @@ -319,6 +319,83 @@ zQAAAABJRU5ErkJggg== </value> </data> + <data name="windowManagerTestToolStripMenuItem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw + 4AAABIQCQUtXaBsAAAAASUVORK5CYII= +</value> + </data> + <data name="downloaderTestToolStripMenuItem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw + 4AAABIQCQUtXaBsAAAAASUVORK5CYII= +</value> + </data> + <data name="installerTestToolStripMenuItem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw + 4AAABIQCQUtXaBsAAAAASUVORK5CYII= +</value> + </data> + <data name="ControlPanelToolStripMenuItem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw + 4AAABIQCQUtXaBsAAAAASUVORK5CYII= +</value> + </data> + <data name="PrintersToolStripMenuItem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw + 4AAABIQCQUtXaBsAAAAASUVORK5CYII= +</value> + </data> + <data name="TaskbarToolStripMenuItem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw + 4AAABIQCQUtXaBsAAAAASUVORK5CYII= +</value> + </data> + <data name="FindToolStripMenuItem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw + 4AAABIQCQUtXaBsAAAAASUVORK5CYII= +</value> + </data> + <data name="FilesOrFoldersToolStripMenuItem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw + 4AAABIQCQUtXaBsAAAAASUVORK5CYII= +</value> + </data> + <data name="ComputerToolStripMenuItem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw + 4AAABIQCQUtXaBsAAAAASUVORK5CYII= +</value> + </data> + <data name="OnTheInternetToolStripMenuItem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw + 4AAABIQCQUtXaBsAAAAASUVORK5CYII= +</value> + </data> + <data name="PeopleToolStripMenuItem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw + 4AAABIQCQUtXaBsAAAAASUVORK5CYII= +</value> + </data> <metadata name="clockTimer.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> <value>153, 17</value> </metadata> @@ -330,7 +407,7 @@ AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0 ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAADq - ggAAAk1TRnQBSQFMAgEBDAEAATABAQEwAQEBIAEAASABAAT/ASEBAAj/AUIBTQE2BwABNgMAASgDAAGA + ggAAAk1TRnQBSQFMAgEBDAEAATgBAQE4AQEBIAEAASABAAT/ASEBAAj/AUIBTQE2BwABNgMAASgDAAGA AwABgAMAAQEBAAEgBwABAf8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A /wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8A /wD/AP8A/wD/AP8A/wD/AP8A/wD/AP8AXAAB/wMAAf8DAAH/AwAB/wMAAf8DAAH/AwAB/x8AAf8DAAH/ diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/AddressBook/FRMWinClassicAddressBookNewContact.Designer.cs b/TimeHACK.Main/OS/Win95/Win95Apps/AddressBook/FRMWinClassicAddressBookNewContact.Designer.cs new file mode 100644 index 0000000..8e9a49e --- /dev/null +++ b/TimeHACK.Main/OS/Win95/Win95Apps/AddressBook/FRMWinClassicAddressBookNewContact.Designer.cs @@ -0,0 +1,227 @@ +namespace TimeHACK.OS.Win95.Win95Apps.AddressBook +{ + partial class FRMWinClassicAddressBookNewContact + { + /// <summary> + /// Required designer variable. + /// </summary> + private System.ComponentModel.IContainer components = null; + + /// <summary> + /// Clean up any resources being used. + /// </summary> + /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Component Designer generated code + + /// <summary> + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// </summary> + private void InitializeComponent() + { + this.button1 = new System.Windows.Forms.Button(); + this.label1 = new System.Windows.Forms.Label(); + this.label2 = new System.Windows.Forms.Label(); + this.label3 = new System.Windows.Forms.Label(); + this.txtFirst = new System.Windows.Forms.TextBox(); + this.txtMiddle = new System.Windows.Forms.TextBox(); + this.txtLast = new System.Windows.Forms.TextBox(); + this.emails = new System.Windows.Forms.ListView(); + this.label4 = new System.Windows.Forms.Label(); + this.button2 = new System.Windows.Forms.Button(); + this.button3 = new System.Windows.Forms.Button(); + this.pnlAdd = new System.Windows.Forms.Panel(); + this.button4 = new System.Windows.Forms.Button(); + this.textBox1 = new System.Windows.Forms.TextBox(); + this.label5 = new System.Windows.Forms.Label(); + this.pnlAdd.SuspendLayout(); + this.SuspendLayout(); + // + // button1 + // + this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.button1.Location = new System.Drawing.Point(107, 239); + this.button1.Name = "button1"; + this.button1.Size = new System.Drawing.Size(105, 23); + this.button1.TabIndex = 0; + this.button1.Text = "OK"; + this.button1.UseVisualStyleBackColor = true; + this.button1.Click += new System.EventHandler(this.button1_Click); + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Location = new System.Drawing.Point(16, 13); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(60, 13); + this.label1.TabIndex = 1; + this.label1.Text = "First Name:"; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Location = new System.Drawing.Point(16, 36); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(72, 13); + this.label2.TabIndex = 1; + this.label2.Text = "Middle Name:"; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Location = new System.Drawing.Point(16, 59); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(61, 13); + this.label3.TabIndex = 1; + this.label3.Text = "Last Name:"; + // + // txtFirst + // + this.txtFirst.Location = new System.Drawing.Point(94, 13); + this.txtFirst.Name = "txtFirst"; + this.txtFirst.Size = new System.Drawing.Size(203, 20); + this.txtFirst.TabIndex = 2; + // + // txtMiddle + // + this.txtMiddle.Location = new System.Drawing.Point(94, 36); + this.txtMiddle.Name = "txtMiddle"; + this.txtMiddle.Size = new System.Drawing.Size(203, 20); + this.txtMiddle.TabIndex = 2; + // + // txtLast + // + this.txtLast.Location = new System.Drawing.Point(94, 59); + this.txtLast.Name = "txtLast"; + this.txtLast.Size = new System.Drawing.Size(203, 20); + this.txtLast.TabIndex = 2; + // + // emails + // + this.emails.Location = new System.Drawing.Point(94, 114); + this.emails.Name = "emails"; + this.emails.Size = new System.Drawing.Size(203, 119); + this.emails.TabIndex = 3; + this.emails.UseCompatibleStateImageBehavior = false; + this.emails.View = System.Windows.Forms.View.List; + // + // label4 + // + this.label4.AutoSize = true; + this.label4.Location = new System.Drawing.Point(91, 89); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(40, 13); + this.label4.TabIndex = 4; + this.label4.Text = "Emails:"; + // + // button2 + // + this.button2.Location = new System.Drawing.Point(13, 114); + this.button2.Name = "button2"; + this.button2.Size = new System.Drawing.Size(75, 23); + this.button2.TabIndex = 5; + this.button2.Text = "Add"; + this.button2.UseVisualStyleBackColor = true; + this.button2.Click += new System.EventHandler(this.button2_Click); + // + // button3 + // + this.button3.Location = new System.Drawing.Point(13, 143); + this.button3.Name = "button3"; + this.button3.Size = new System.Drawing.Size(75, 23); + this.button3.TabIndex = 5; + this.button3.Text = "Remove"; + this.button3.UseVisualStyleBackColor = true; + // + // pnlAdd + // + this.pnlAdd.Controls.Add(this.button4); + this.pnlAdd.Controls.Add(this.textBox1); + this.pnlAdd.Controls.Add(this.label5); + this.pnlAdd.Location = new System.Drawing.Point(94, 114); + this.pnlAdd.Name = "pnlAdd"; + this.pnlAdd.Size = new System.Drawing.Size(203, 119); + this.pnlAdd.TabIndex = 6; + this.pnlAdd.Visible = false; + // + // button4 + // + this.button4.Location = new System.Drawing.Point(59, 73); + this.button4.Name = "button4"; + this.button4.Size = new System.Drawing.Size(75, 23); + this.button4.TabIndex = 8; + this.button4.Text = "Add"; + this.button4.UseVisualStyleBackColor = true; + this.button4.Click += new System.EventHandler(this.button4_Click); + // + // textBox1 + // + this.textBox1.Location = new System.Drawing.Point(9, 31); + this.textBox1.Name = "textBox1"; + this.textBox1.Size = new System.Drawing.Size(187, 20); + this.textBox1.TabIndex = 7; + // + // label5 + // + this.label5.AutoSize = true; + this.label5.Location = new System.Drawing.Point(60, 18); + this.label5.Name = "label5"; + this.label5.Size = new System.Drawing.Size(68, 13); + this.label5.TabIndex = 0; + this.label5.Text = "Email to add:"; + // + // FRMWinClassicAddressBookNewContact + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.Controls.Add(this.button3); + this.Controls.Add(this.button2); + this.Controls.Add(this.label4); + this.Controls.Add(this.txtLast); + this.Controls.Add(this.txtMiddle); + this.Controls.Add(this.txtFirst); + this.Controls.Add(this.label3); + this.Controls.Add(this.label2); + this.Controls.Add(this.label1); + this.Controls.Add(this.button1); + this.Controls.Add(this.emails); + this.Controls.Add(this.pnlAdd); + this.Name = "FRMWinClassicAddressBookNewContact"; + this.Size = new System.Drawing.Size(332, 265); + this.Load += new System.EventHandler(this.FRMWinClassicAddressBookNewContact_Load); + this.pnlAdd.ResumeLayout(false); + this.pnlAdd.PerformLayout(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Button button1; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.Label label3; + private System.Windows.Forms.TextBox txtFirst; + private System.Windows.Forms.TextBox txtMiddle; + private System.Windows.Forms.TextBox txtLast; + private System.Windows.Forms.ListView emails; + private System.Windows.Forms.Label label4; + private System.Windows.Forms.Button button2; + private System.Windows.Forms.Button button3; + private System.Windows.Forms.Panel pnlAdd; + private System.Windows.Forms.Button button4; + private System.Windows.Forms.TextBox textBox1; + private System.Windows.Forms.Label label5; + } +} diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/AddressBook/FRMWinClassicAddressBookNewContact.cs b/TimeHACK.Main/OS/Win95/Win95Apps/AddressBook/FRMWinClassicAddressBookNewContact.cs new file mode 100644 index 0000000..4206f79 --- /dev/null +++ b/TimeHACK.Main/OS/Win95/Win95Apps/AddressBook/FRMWinClassicAddressBookNewContact.cs @@ -0,0 +1,70 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Data; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace TimeHACK.OS.Win95.Win95Apps.AddressBook +{ + public partial class FRMWinClassicAddressBookNewContact : UserControl + { + public AddressBookContact toSet = new AddressBookContact(); + public FRMWinClassicAddressBookNewContact() + { + InitializeComponent(); + Program.AddressBookSelectedContact = null; + } + + private void button2_Click(object sender, EventArgs e) + { + pnlAdd.Show(); + pnlAdd.BringToFront(); + } + + private void button1_Click(object sender, EventArgs e) + { + if (txtFirst.Text != "" && txtMiddle.Text != "" && txtLast.Text != "") + { + toSet.FirstName = txtFirst.Text; + toSet.MiddleName = txtMiddle.Text; + toSet.LastName = txtLast.Text; + + Program.AddressBookSelectedContact = toSet; + ((Form)this.TopLevelControl).Close(); + } else { + MessageBox.Show("Please fill out the First, Middle and Last name."); + } + } + + private void button4_Click(object sender, EventArgs e) + { + emails.Items.Add(textBox1.Text); + toSet.Emails.Add(textBox1.Text); + emails.BringToFront(); + } + + private void FRMWinClassicAddressBookNewContact_Load(object sender, EventArgs e) + { + if (toSet != null) + { + txtFirst.Text = toSet.FirstName; + txtMiddle.Text = toSet.MiddleName; + txtLast.Text = toSet.LastName; + if (toSet.Emails != null) + { + foreach (String email in toSet.Emails) + { + emails.Items.Add(email); + } + } + } else + { + MessageBox.Show("NULL CONTACT!"); + } + } + } +} diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicAddressBook.resx b/TimeHACK.Main/OS/Win95/Win95Apps/AddressBook/FRMWinClassicAddressBookNewContact.resx index 1af7de1..1af7de1 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicAddressBook.resx +++ b/TimeHACK.Main/OS/Win95/Win95Apps/AddressBook/FRMWinClassicAddressBookNewContact.resx diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/AddressBook/FRMWinClassicAddressBookNewFolder.Designer.cs b/TimeHACK.Main/OS/Win95/Win95Apps/AddressBook/FRMWinClassicAddressBookNewFolder.Designer.cs new file mode 100644 index 0000000..e96ea9d --- /dev/null +++ b/TimeHACK.Main/OS/Win95/Win95Apps/AddressBook/FRMWinClassicAddressBookNewFolder.Designer.cs @@ -0,0 +1,81 @@ +namespace TimeHACK.OS.Win95.Win95Apps.AddressBook +{ + partial class FRMWinClassicAddressBookNewFolder + { + /// <summary> + /// Required designer variable. + /// </summary> + private System.ComponentModel.IContainer components = null; + + /// <summary> + /// Clean up any resources being used. + /// </summary> + /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Component Designer generated code + + /// <summary> + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// </summary> + private void InitializeComponent() + { + this.label1 = new System.Windows.Forms.Label(); + this.button1 = new System.Windows.Forms.Button(); + this.textBox1 = new System.Windows.Forms.TextBox(); + this.SuspendLayout(); + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Location = new System.Drawing.Point(102, 11); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(70, 13); + this.label1.TabIndex = 1; + this.label1.Text = "Folder Name:"; + // + // button1 + // + this.button1.Location = new System.Drawing.Point(97, 78); + this.button1.Name = "button1"; + this.button1.Size = new System.Drawing.Size(75, 23); + this.button1.TabIndex = 2; + this.button1.Text = "OK"; + this.button1.UseVisualStyleBackColor = true; + this.button1.Click += new System.EventHandler(this.button1_Click); + // + // textBox1 + // + this.textBox1.Location = new System.Drawing.Point(3, 40); + this.textBox1.Name = "textBox1"; + this.textBox1.Size = new System.Drawing.Size(295, 20); + this.textBox1.TabIndex = 3; + // + // FRMWinClassicAddressBookNewFolder + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.Controls.Add(this.textBox1); + this.Controls.Add(this.button1); + this.Controls.Add(this.label1); + this.Name = "FRMWinClassicAddressBookNewFolder"; + this.Size = new System.Drawing.Size(301, 116); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + private System.Windows.Forms.Label label1; + private System.Windows.Forms.Button button1; + private System.Windows.Forms.TextBox textBox1; + } +} diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/AddressBook/FRMWinClassicAddressBookNewFolder.cs b/TimeHACK.Main/OS/Win95/Win95Apps/AddressBook/FRMWinClassicAddressBookNewFolder.cs new file mode 100644 index 0000000..6f7cbb1 --- /dev/null +++ b/TimeHACK.Main/OS/Win95/Win95Apps/AddressBook/FRMWinClassicAddressBookNewFolder.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Data; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace TimeHACK.OS.Win95.Win95Apps.AddressBook +{ + public partial class FRMWinClassicAddressBookNewFolder : UserControl + { + + public FRMWinClassicAddressBookNewFolder() + { + InitializeComponent(); + } + + private void button1_Click(object sender, EventArgs e) + { + Program.AddressBookSelectedFolderName = textBox1.Text; + ((Form)this.TopLevelControl).Close(); + } + } +} diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/AddressBook/FRMWinClassicAddressBookNewFolder.resx b/TimeHACK.Main/OS/Win95/Win95Apps/AddressBook/FRMWinClassicAddressBookNewFolder.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/TimeHACK.Main/OS/Win95/Win95Apps/AddressBook/FRMWinClassicAddressBookNewFolder.resx @@ -0,0 +1,120 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <!-- + Microsoft ResX Schema + + Version 2.0 + + The primary goals of this format is to allow a simple XML format + that is mostly human readable. The generation and parsing of the + various data types are done through the TypeConverter classes + associated with the data types. + + Example: + + ... ado.net/XML headers & schema ... + <resheader name="resmimetype">text/microsoft-resx</resheader> + <resheader name="version">2.0</resheader> + <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> + <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> + <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> + <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> + <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> + <value>[base64 mime encoded serialized .NET Framework object]</value> + </data> + <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> + <comment>This is a comment</comment> + </data> + + There are any number of "resheader" rows that contain simple + name/value pairs. + + Each data row contains a name, and value. The row also contains a + type or mimetype. Type corresponds to a .NET class that support + text/value conversion through the TypeConverter architecture. + Classes that don't support this are serialized and stored with the + mimetype set. + + The mimetype is used for serialized objects, and tells the + ResXResourceReader how to depersist the object. This is currently not + extensible. For a given mimetype the value must be set accordingly: + + Note - application/x-microsoft.net.object.binary.base64 is the format + that the ResXResourceWriter will generate, however the reader can + read any of the formats listed below. + + mimetype: application/x-microsoft.net.object.binary.base64 + value : The object must be serialized with + : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.soap.base64 + value : The object must be serialized with + : System.Runtime.Serialization.Formatters.Soap.SoapFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.bytearray.base64 + value : The object must be serialized into a byte array + : using a System.ComponentModel.TypeConverter + : and then encoded with base64 encoding. + --> + <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> + <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> + <xsd:element name="root" msdata:IsDataSet="true"> + <xsd:complexType> + <xsd:choice maxOccurs="unbounded"> + <xsd:element name="metadata"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" /> + </xsd:sequence> + <xsd:attribute name="name" use="required" type="xsd:string" /> + <xsd:attribute name="type" type="xsd:string" /> + <xsd:attribute name="mimetype" type="xsd:string" /> + <xsd:attribute ref="xml:space" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="assembly"> + <xsd:complexType> + <xsd:attribute name="alias" type="xsd:string" /> + <xsd:attribute name="name" type="xsd:string" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="data"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> + <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> + <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> + <xsd:attribute ref="xml:space" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="resheader"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" /> + </xsd:complexType> + </xsd:element> + </xsd:choice> + </xsd:complexType> + </xsd:element> + </xsd:schema> + <resheader name="resmimetype"> + <value>text/microsoft-resx</value> + </resheader> + <resheader name="version"> + <value>2.0</value> + </resheader> + <resheader name="reader"> + <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> + <resheader name="writer"> + <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> +</root>
\ No newline at end of file diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/AddressBook/WinClassicAddressBook.Designer.cs b/TimeHACK.Main/OS/Win95/Win95Apps/AddressBook/WinClassicAddressBook.Designer.cs new file mode 100644 index 0000000..41107e8 --- /dev/null +++ b/TimeHACK.Main/OS/Win95/Win95Apps/AddressBook/WinClassicAddressBook.Designer.cs @@ -0,0 +1,398 @@ +namespace TimeHACK.OS.Win95.Win95Apps +{ + partial class WinClassicAddressBook + { + /// <summary> + /// Required designer variable. + /// </summary> + private System.ComponentModel.IContainer components = null; + + /// <summary> + /// Clean up any resources being used. + /// </summary> + /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Component Designer generated code + + /// <summary> + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// </summary> + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + System.Windows.Forms.TreeNode treeNode1 = new System.Windows.Forms.TreeNode("Shared Contacts"); + this.topmenu = new System.Windows.Forms.MenuStrip(); + this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.newContactToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.newFolderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); + this.propertiesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.deleteToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator(); + this.importToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.exportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator(); + this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator(); + this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.viewToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolbarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.foldersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.toolsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.actionToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.sendMailToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.dialToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.internetToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.aboutAddressBookToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.contactsView = new System.Windows.Forms.ListView(); + this.treeView1 = new System.Windows.Forms.TreeView(); + this.toolbar = new System.Windows.Forms.Panel(); + this.toolProp = new System.Windows.Forms.PictureBox(); + this.toolNew = new System.Windows.Forms.PictureBox(); + this.toolDelete = new System.Windows.Forms.PictureBox(); + this.newContext = new System.Windows.Forms.ContextMenuStrip(this.components); + this.newContactToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); + this.newFolderToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); + this.topmenu.SuspendLayout(); + this.toolbar.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.toolProp)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.toolNew)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.toolDelete)).BeginInit(); + this.newContext.SuspendLayout(); + this.SuspendLayout(); + // + // topmenu + // + this.topmenu.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200))))); + this.topmenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.fileToolStripMenuItem, + this.viewToolStripMenuItem, + this.toolsToolStripMenuItem, + this.helpToolStripMenuItem}); + this.topmenu.Location = new System.Drawing.Point(0, 0); + this.topmenu.Name = "topmenu"; + this.topmenu.Size = new System.Drawing.Size(666, 24); + this.topmenu.TabIndex = 1; + this.topmenu.Text = "menuStrip1"; + // + // fileToolStripMenuItem + // + this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.newContactToolStripMenuItem, + this.newFolderToolStripMenuItem, + this.toolStripSeparator1, + this.propertiesToolStripMenuItem, + this.deleteToolStripMenuItem, + this.toolStripSeparator2, + this.importToolStripMenuItem, + this.exportToolStripMenuItem, + this.toolStripSeparator3, + this.toolStripSeparator4, + this.exitToolStripMenuItem}); + this.fileToolStripMenuItem.Name = "fileToolStripMenuItem"; + this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20); + this.fileToolStripMenuItem.Text = "File"; + // + // newContactToolStripMenuItem + // + this.newContactToolStripMenuItem.Name = "newContactToolStripMenuItem"; + this.newContactToolStripMenuItem.Size = new System.Drawing.Size(152, 22); + this.newContactToolStripMenuItem.Text = "New contact..."; + this.newContactToolStripMenuItem.Click += new System.EventHandler(this.newContactToolStripMenuItem_Click); + // + // newFolderToolStripMenuItem + // + this.newFolderToolStripMenuItem.Name = "newFolderToolStripMenuItem"; + this.newFolderToolStripMenuItem.Size = new System.Drawing.Size(152, 22); + this.newFolderToolStripMenuItem.Text = "New folder..."; + this.newFolderToolStripMenuItem.Click += new System.EventHandler(this.newFolderToolStripMenuItem_Click); + // + // toolStripSeparator1 + // + this.toolStripSeparator1.Name = "toolStripSeparator1"; + this.toolStripSeparator1.Size = new System.Drawing.Size(149, 6); + // + // propertiesToolStripMenuItem + // + this.propertiesToolStripMenuItem.Name = "propertiesToolStripMenuItem"; + this.propertiesToolStripMenuItem.Size = new System.Drawing.Size(152, 22); + this.propertiesToolStripMenuItem.Text = "Properties"; + this.propertiesToolStripMenuItem.Click += new System.EventHandler(this.propertiesToolStripMenuItem_Click); + // + // deleteToolStripMenuItem + // + this.deleteToolStripMenuItem.Name = "deleteToolStripMenuItem"; + this.deleteToolStripMenuItem.Size = new System.Drawing.Size(152, 22); + this.deleteToolStripMenuItem.Text = "Delete"; + this.deleteToolStripMenuItem.Click += new System.EventHandler(this.deleteToolStripMenuItem_Click); + // + // toolStripSeparator2 + // + this.toolStripSeparator2.Name = "toolStripSeparator2"; + this.toolStripSeparator2.Size = new System.Drawing.Size(149, 6); + // + // importToolStripMenuItem + // + this.importToolStripMenuItem.Name = "importToolStripMenuItem"; + this.importToolStripMenuItem.Size = new System.Drawing.Size(152, 22); + this.importToolStripMenuItem.Text = "Import..."; + // + // exportToolStripMenuItem + // + this.exportToolStripMenuItem.Name = "exportToolStripMenuItem"; + this.exportToolStripMenuItem.Size = new System.Drawing.Size(152, 22); + this.exportToolStripMenuItem.Text = "Export..."; + // + // toolStripSeparator3 + // + this.toolStripSeparator3.Name = "toolStripSeparator3"; + this.toolStripSeparator3.Size = new System.Drawing.Size(149, 6); + // + // toolStripSeparator4 + // + this.toolStripSeparator4.Name = "toolStripSeparator4"; + this.toolStripSeparator4.Size = new System.Drawing.Size(149, 6); + // + // exitToolStripMenuItem + // + this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; + this.exitToolStripMenuItem.Size = new System.Drawing.Size(152, 22); + this.exitToolStripMenuItem.Text = "Exit"; + this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click); + // + // viewToolStripMenuItem + // + this.viewToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.toolbarToolStripMenuItem, + this.foldersToolStripMenuItem}); + this.viewToolStripMenuItem.Name = "viewToolStripMenuItem"; + this.viewToolStripMenuItem.Size = new System.Drawing.Size(44, 20); + this.viewToolStripMenuItem.Text = "View"; + // + // toolbarToolStripMenuItem + // + this.toolbarToolStripMenuItem.Checked = true; + this.toolbarToolStripMenuItem.CheckOnClick = true; + this.toolbarToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; + this.toolbarToolStripMenuItem.Name = "toolbarToolStripMenuItem"; + this.toolbarToolStripMenuItem.Size = new System.Drawing.Size(152, 22); + this.toolbarToolStripMenuItem.Text = "Toolbar"; + this.toolbarToolStripMenuItem.Click += new System.EventHandler(this.toolbarToolStripMenuItem_Click); + // + // foldersToolStripMenuItem + // + this.foldersToolStripMenuItem.Checked = true; + this.foldersToolStripMenuItem.CheckOnClick = true; + this.foldersToolStripMenuItem.CheckState = System.Windows.Forms.CheckState.Checked; + this.foldersToolStripMenuItem.Name = "foldersToolStripMenuItem"; + this.foldersToolStripMenuItem.Size = new System.Drawing.Size(152, 22); + this.foldersToolStripMenuItem.Text = "Folders"; + this.foldersToolStripMenuItem.Click += new System.EventHandler(this.foldersToolStripMenuItem_Click); + // + // toolsToolStripMenuItem + // + this.toolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.actionToolStripMenuItem}); + this.toolsToolStripMenuItem.Name = "toolsToolStripMenuItem"; + this.toolsToolStripMenuItem.Size = new System.Drawing.Size(47, 20); + this.toolsToolStripMenuItem.Text = "Tools"; + // + // actionToolStripMenuItem + // + this.actionToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.sendMailToolStripMenuItem, + this.dialToolStripMenuItem, + this.internetToolStripMenuItem}); + this.actionToolStripMenuItem.Name = "actionToolStripMenuItem"; + this.actionToolStripMenuItem.Size = new System.Drawing.Size(152, 22); + this.actionToolStripMenuItem.Text = "Action"; + // + // sendMailToolStripMenuItem + // + this.sendMailToolStripMenuItem.Name = "sendMailToolStripMenuItem"; + this.sendMailToolStripMenuItem.Size = new System.Drawing.Size(152, 22); + this.sendMailToolStripMenuItem.Text = "Send Mail"; + // + // dialToolStripMenuItem + // + this.dialToolStripMenuItem.Name = "dialToolStripMenuItem"; + this.dialToolStripMenuItem.Size = new System.Drawing.Size(152, 22); + this.dialToolStripMenuItem.Text = "Dial"; + // + // internetToolStripMenuItem + // + this.internetToolStripMenuItem.Name = "internetToolStripMenuItem"; + this.internetToolStripMenuItem.Size = new System.Drawing.Size(152, 22); + this.internetToolStripMenuItem.Text = "Internet Call"; + // + // helpToolStripMenuItem + // + this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.aboutAddressBookToolStripMenuItem}); + this.helpToolStripMenuItem.Name = "helpToolStripMenuItem"; + this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20); + this.helpToolStripMenuItem.Text = "Help"; + // + // aboutAddressBookToolStripMenuItem + // + this.aboutAddressBookToolStripMenuItem.Name = "aboutAddressBookToolStripMenuItem"; + this.aboutAddressBookToolStripMenuItem.Size = new System.Drawing.Size(182, 22); + this.aboutAddressBookToolStripMenuItem.Text = "About Address Book"; + // + // contactsView + // + this.contactsView.Dock = System.Windows.Forms.DockStyle.Fill; + this.contactsView.Location = new System.Drawing.Point(208, 72); + this.contactsView.Name = "contactsView"; + this.contactsView.Size = new System.Drawing.Size(458, 353); + this.contactsView.TabIndex = 3; + this.contactsView.UseCompatibleStateImageBehavior = false; + this.contactsView.View = System.Windows.Forms.View.List; + // + // treeView1 + // + this.treeView1.Dock = System.Windows.Forms.DockStyle.Left; + this.treeView1.Location = new System.Drawing.Point(0, 72); + this.treeView1.Name = "treeView1"; + treeNode1.Name = "Node0"; + treeNode1.Text = "Shared Contacts"; + this.treeView1.Nodes.AddRange(new System.Windows.Forms.TreeNode[] { + treeNode1}); + this.treeView1.Size = new System.Drawing.Size(208, 353); + this.treeView1.TabIndex = 4; + this.treeView1.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeView1_AfterSelect); + // + // toolbar + // + this.toolbar.BackColor = System.Drawing.Color.Silver; + this.toolbar.BackgroundImage = global::TimeHACK.Properties.Resources.WinClassicGENERALApplicationToolbarBackground; + this.toolbar.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.toolbar.Controls.Add(this.toolProp); + this.toolbar.Controls.Add(this.toolNew); + this.toolbar.Controls.Add(this.toolDelete); + this.toolbar.Dock = System.Windows.Forms.DockStyle.Top; + this.toolbar.Location = new System.Drawing.Point(0, 24); + this.toolbar.Name = "toolbar"; + this.toolbar.Size = new System.Drawing.Size(666, 48); + this.toolbar.TabIndex = 5; + // + // toolProp + // + this.toolProp.BackColor = System.Drawing.Color.Transparent; + this.toolProp.Image = global::TimeHACK.Properties.Resources.WinClassicAddressBookPropertiesIcon; + this.toolProp.Location = new System.Drawing.Point(65, 3); + this.toolProp.Name = "toolProp"; + this.toolProp.Size = new System.Drawing.Size(61, 39); + this.toolProp.TabIndex = 0; + this.toolProp.TabStop = false; + this.toolProp.Click += new System.EventHandler(this.toolProp_Click); + // + // toolNew + // + this.toolNew.BackColor = System.Drawing.Color.Transparent; + this.toolNew.Image = global::TimeHACK.Properties.Resources.WinClassicAddressBookNewIcon; + this.toolNew.Location = new System.Drawing.Point(16, 4); + this.toolNew.Name = "toolNew"; + this.toolNew.Size = new System.Drawing.Size(43, 39); + this.toolNew.TabIndex = 0; + this.toolNew.TabStop = false; + // + // toolDelete + // + this.toolDelete.BackColor = System.Drawing.Color.Transparent; + this.toolDelete.Image = global::TimeHACK.Properties.Resources.WinClassicAddressBookDeleteIcon; + this.toolDelete.Location = new System.Drawing.Point(132, 3); + this.toolDelete.Name = "toolDelete"; + this.toolDelete.Size = new System.Drawing.Size(61, 39); + this.toolDelete.TabIndex = 0; + this.toolDelete.TabStop = false; + this.toolDelete.Click += new System.EventHandler(this.toolDelete_Click); + // + // newContext + // + this.newContext.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.newContactToolStripMenuItem1, + this.newFolderToolStripMenuItem1}); + this.newContext.Name = "newContext"; + this.newContext.Size = new System.Drawing.Size(153, 48); + // + // newContactToolStripMenuItem1 + // + this.newContactToolStripMenuItem1.Name = "newContactToolStripMenuItem1"; + this.newContactToolStripMenuItem1.Size = new System.Drawing.Size(152, 22); + this.newContactToolStripMenuItem1.Text = "New Contact..."; + this.newContactToolStripMenuItem1.Click += new System.EventHandler(this.newContactToolStripMenuItem1_Click); + // + // newFolderToolStripMenuItem1 + // + this.newFolderToolStripMenuItem1.Name = "newFolderToolStripMenuItem1"; + this.newFolderToolStripMenuItem1.Size = new System.Drawing.Size(152, 22); + this.newFolderToolStripMenuItem1.Text = "New Folder..."; + this.newFolderToolStripMenuItem1.Click += new System.EventHandler(this.newFolderToolStripMenuItem1_Click); + // + // WinClassicAddressBook + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.Controls.Add(this.contactsView); + this.Controls.Add(this.treeView1); + this.Controls.Add(this.toolbar); + this.Controls.Add(this.topmenu); + this.Name = "WinClassicAddressBook"; + this.Size = new System.Drawing.Size(666, 425); + this.topmenu.ResumeLayout(false); + this.topmenu.PerformLayout(); + this.toolbar.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.toolProp)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.toolNew)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.toolDelete)).EndInit(); + this.newContext.ResumeLayout(false); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + private System.Windows.Forms.MenuStrip topmenu; + private System.Windows.Forms.ToolStripMenuItem fileToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem viewToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem toolsToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem helpToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem newContactToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem newFolderToolStripMenuItem; + private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; + private System.Windows.Forms.ToolStripMenuItem propertiesToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem deleteToolStripMenuItem; + private System.Windows.Forms.ToolStripSeparator toolStripSeparator2; + private System.Windows.Forms.ToolStripMenuItem importToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem exportToolStripMenuItem; + private System.Windows.Forms.ToolStripSeparator toolStripSeparator3; + private System.Windows.Forms.ToolStripSeparator toolStripSeparator4; + private System.Windows.Forms.ToolStripMenuItem exitToolStripMenuItem; + private System.Windows.Forms.ListView contactsView; + private System.Windows.Forms.TreeView treeView1; + private System.Windows.Forms.ToolStripMenuItem toolbarToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem foldersToolStripMenuItem; + private System.Windows.Forms.Panel toolbar; + private System.Windows.Forms.PictureBox toolNew; + private System.Windows.Forms.PictureBox toolDelete; + private System.Windows.Forms.PictureBox toolProp; + private System.Windows.Forms.ToolStripMenuItem actionToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem sendMailToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem dialToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem internetToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem aboutAddressBookToolStripMenuItem; + private System.Windows.Forms.ContextMenuStrip newContext; + private System.Windows.Forms.ToolStripMenuItem newContactToolStripMenuItem1; + private System.Windows.Forms.ToolStripMenuItem newFolderToolStripMenuItem1; + } +} diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/AddressBook/WinClassicAddressBook.cs b/TimeHACK.Main/OS/Win95/Win95Apps/AddressBook/WinClassicAddressBook.cs new file mode 100644 index 0000000..32d5ebc --- /dev/null +++ b/TimeHACK.Main/OS/Win95/Win95Apps/AddressBook/WinClassicAddressBook.cs @@ -0,0 +1,293 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Data; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; +using TimeHACK.Engine; +using TimeHACK.Engine.Template; + +namespace TimeHACK.OS.Win95.Win95Apps +{ + public partial class WinClassicAddressBook : UserControl + { + WindowManager wm = new WindowManager(); + + public List<AddressBookContactList> AddressBookObjects; + public WinClassicAddressBook() + { + InitializeComponent(); + foreach (ToolStripMenuItem item in topmenu.Items) + { + item.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((0))); + item.BackColor = Color.Silver; + item.BackgroundImage = Properties.Resources.sliversilver; + item.BackgroundImageLayout = ImageLayout.Center; + item.DisplayStyle = ToolStripItemDisplayStyle.Text; + } + + //Time to prepare to load all the fonts up for the combo boxes + + //foreach (FontFamily font in System.Drawing.FontFamily.Families) + //{ + // Added to the ComboBox here + + //comboFont.Items.Add(font.Name); + //} + + AddressBookObjects = new List<AddressBookContactList> + { + new AddressBookContactList() + { + AttachedNode = treeView1.Nodes[0].Text, + } + }; + } + + private void treeView1_AfterSelect(object sender, TreeViewEventArgs e) + { + UpdateContactListFromNodeName(treeView1.SelectedNode.Text); + } + + //AddressBookContactList GetAddressBookContactListFromNode(string NodeText) + //{ + // AddressBookContactList toReturn = new AddressBookContactList(); + // foreach (AddressBookContactList lstitem in AddressBookObjects) + // { + // if (lstitem.AttachedNode == NodeText) + // { + // toReturn = lstitem; + // } + // } + // if (toReturn == null) + // { + // // Something has gone wrong! + // MessageBox.Show("Unable to find list of items"); + // } + // MessageBox.Show("Gone through process!"); + // return toReturn; + //} + + public void UpdateContactListFromNodeName(string NodeName) + { + contactsView.Items.Clear(); + try + { + foreach (AddressBookContactList ContactList in AddressBookObjects) + { + if (ContactList.AttachedNode == NodeName) + { + foreach (AddressBookContact contact in ContactList.Contacts) + { + if (contact != null) + { + if (contact.FirstName != null) + { + contactsView.Items.Add(contact.FirstName + " " + contact.MiddleName + " " + contact.LastName); + } + } + else + { + MessageBox.Show("Null contact!"); + } + } + } + } + } catch + { + + } + } + + public void AddFolderToNode(TreeNode OldTreeNode, string NewNodeName) + { + if (OldTreeNode != null) + { + OldTreeNode.Nodes.Add(NewNodeName); + + AddressBookObjects.Add(new AddressBookContactList + { + AttachedNode = NewNodeName, + }); + } + } + + private void newFolderToolStripMenuItem_Click(object sender, EventArgs e) + { + NewFolder(); + } + + void NewFolder() + { + AddressBook.FRMWinClassicAddressBookNewFolder abnf = new AddressBook.FRMWinClassicAddressBookNewFolder(); + WinClassic app = wm.startWin95(abnf, "Address Book - New Folder", Properties.Resources.Win95IconWordpad, true, true, true); + + if (treeView1.SelectedNode != null) + { + if (Program.AddressBookSelectedFolderName != null) + { + AddFolderToNode(treeView1.SelectedNode, Program.AddressBookSelectedFolderName); + } + else + { + wm.startInfobox95("Address Book - New Folder", "You must enter a folder name!", Properties.Resources.Win95Error); + } + } + } + + private void newContactToolStripMenuItem_Click(object sender, EventArgs e) + { + NewContact(); + } + + void NewContact() + { + AddressBook.FRMWinClassicAddressBookNewContact abnc = new AddressBook.FRMWinClassicAddressBookNewContact(); + WinClassic app = wm.startWin95(abnc, "Address Book - New Contact", Properties.Resources.Win95IconWordpad, true, true, true); + + if (treeView1.SelectedNode != null) + { + if (Program.AddressBookSelectedContact != null) + { + foreach (AddressBookContactList ContactList in AddressBookObjects) + { + if (ContactList.AttachedNode == treeView1.SelectedNode.Text) + { + ContactList.Contacts.Add(Program.AddressBookSelectedContact); + contactsView.Items.Add(Program.AddressBookSelectedContact.FirstName + " " + Program.AddressBookSelectedContact.MiddleName + " " + Program.AddressBookSelectedContact.LastName); + } + } + } + } + } + + private void toolProp_Click(object sender, EventArgs e) + { + OpenProperties(); + } + + void OpenProperties() + { + AddressBook.FRMWinClassicAddressBookNewContact abnc = new AddressBook.FRMWinClassicAddressBookNewContact(); + + // Finds the selected contact + if (treeView1.SelectedNode != null) + { + foreach (AddressBookContactList ContactList in AddressBookObjects) + { + if (ContactList.AttachedNode == treeView1.SelectedNode.Text) + { + foreach (AddressBookContact Contact in ContactList.Contacts) + { + if ((Contact.FirstName + " " + Contact.MiddleName + " " + Contact.LastName) == contactsView.FocusedItem.Text) + { + abnc.toSet = Contact; + } + } + } + } + WinClassic app = wm.startWin95(abnc, "Address Book - Contact Properties", Properties.Resources.Win95IconWordpad, true, true, true); + + if (treeView1.SelectedNode != null) + { + if (Program.AddressBookSelectedContact != null) + { + foreach (AddressBookContactList ContactList in AddressBookObjects) + { + if (ContactList.AttachedNode == treeView1.SelectedNode.Text) + { + foreach (AddressBookContact Contact in ContactList.Contacts) + { + if ((Contact.FirstName + " " + Contact.MiddleName + " " + Contact.LastName) == contactsView.FocusedItem.Text) + { + ContactList.Contacts.Remove(Contact); + ContactList.Contacts.Add(Program.AddressBookSelectedContact); + } + } + } + } + } + } + } + + + } + + private void propertiesToolStripMenuItem_Click(object sender, EventArgs e) + { + OpenProperties(); + } + + private void deleteToolStripMenuItem_Click(object sender, EventArgs e) + { + DeleteContact(); + } + + void DeleteContact() + { + if (treeView1.SelectedNode != null) + { + foreach (AddressBookContactList ContactList in AddressBookObjects) + { + if (ContactList.AttachedNode == treeView1.SelectedNode.Text) + { + foreach (AddressBookContact Contact in ContactList.Contacts) + { + if ((Contact.FirstName + " " + Contact.MiddleName + " " + Contact.LastName) == contactsView.FocusedItem.Text) + { + ContactList.Contacts.Remove(Contact); + } + } + } + } + } + } + + private void toolDelete_Click(object sender, EventArgs e) + { + DeleteContact(); + } + + private void newContactToolStripMenuItem1_Click(object sender, EventArgs e) + { + NewContact(); + } + + private void newFolderToolStripMenuItem1_Click(object sender, EventArgs e) + { + NewFolder(); + } + + private void toolbarToolStripMenuItem_Click(object sender, EventArgs e) + { + toolbar.Visible = toolbarToolStripMenuItem.Checked; + } + + private void foldersToolStripMenuItem_Click(object sender, EventArgs e) + { + treeView1.Visible = foldersToolStripMenuItem.Checked; + } + + private void exitToolStripMenuItem_Click(object sender, EventArgs e) + { + ((Form)this.TopLevelControl).Close(); + } + } + + public class AddressBookContact + { + public string FirstName; + public string MiddleName; + public string LastName; + public List<String> Emails = new List<String>(); + } + + public class AddressBookContactList + { + public String AttachedNode; + public List<AddressBookContact> Contacts = new List<AddressBookContact>(); + } +} diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/AddressBook/WinClassicAddressBook.resx b/TimeHACK.Main/OS/Win95/Win95Apps/AddressBook/WinClassicAddressBook.resx new file mode 100644 index 0000000..e1c367e --- /dev/null +++ b/TimeHACK.Main/OS/Win95/Win95Apps/AddressBook/WinClassicAddressBook.resx @@ -0,0 +1,126 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <!-- + Microsoft ResX Schema + + Version 2.0 + + The primary goals of this format is to allow a simple XML format + that is mostly human readable. The generation and parsing of the + various data types are done through the TypeConverter classes + associated with the data types. + + Example: + + ... ado.net/XML headers & schema ... + <resheader name="resmimetype">text/microsoft-resx</resheader> + <resheader name="version">2.0</resheader> + <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> + <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> + <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> + <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> + <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> + <value>[base64 mime encoded serialized .NET Framework object]</value> + </data> + <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> + <comment>This is a comment</comment> + </data> + + There are any number of "resheader" rows that contain simple + name/value pairs. + + Each data row contains a name, and value. The row also contains a + type or mimetype. Type corresponds to a .NET class that support + text/value conversion through the TypeConverter architecture. + Classes that don't support this are serialized and stored with the + mimetype set. + + The mimetype is used for serialized objects, and tells the + ResXResourceReader how to depersist the object. This is currently not + extensible. For a given mimetype the value must be set accordingly: + + Note - application/x-microsoft.net.object.binary.base64 is the format + that the ResXResourceWriter will generate, however the reader can + read any of the formats listed below. + + mimetype: application/x-microsoft.net.object.binary.base64 + value : The object must be serialized with + : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.soap.base64 + value : The object must be serialized with + : System.Runtime.Serialization.Formatters.Soap.SoapFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.bytearray.base64 + value : The object must be serialized into a byte array + : using a System.ComponentModel.TypeConverter + : and then encoded with base64 encoding. + --> + <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> + <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> + <xsd:element name="root" msdata:IsDataSet="true"> + <xsd:complexType> + <xsd:choice maxOccurs="unbounded"> + <xsd:element name="metadata"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" /> + </xsd:sequence> + <xsd:attribute name="name" use="required" type="xsd:string" /> + <xsd:attribute name="type" type="xsd:string" /> + <xsd:attribute name="mimetype" type="xsd:string" /> + <xsd:attribute ref="xml:space" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="assembly"> + <xsd:complexType> + <xsd:attribute name="alias" type="xsd:string" /> + <xsd:attribute name="name" type="xsd:string" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="data"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> + <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> + <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> + <xsd:attribute ref="xml:space" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="resheader"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" /> + </xsd:complexType> + </xsd:element> + </xsd:choice> + </xsd:complexType> + </xsd:element> + </xsd:schema> + <resheader name="resmimetype"> + <value>text/microsoft-resx</value> + </resheader> + <resheader name="version"> + <value>2.0</value> + </resheader> + <resheader name="reader"> + <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> + <resheader name="writer"> + <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> + <metadata name="topmenu.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> + <value>17, 17</value> + </metadata> + <metadata name="newContext.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> + <value>118, 17</value> + </metadata> +</root>
\ No newline at end of file diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicAddressBook.Designer.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicAddressBook.Designer.cs deleted file mode 100644 index 09f32df..0000000 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicAddressBook.Designer.cs +++ /dev/null @@ -1,45 +0,0 @@ -namespace TimeHACK.OS.Win95.Win95Apps -{ - partial class WinClassicAddressBook - { - /// <summary> - /// Required designer variable. - /// </summary> - private System.ComponentModel.IContainer components = null; - - /// <summary> - /// Clean up any resources being used. - /// </summary> - /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Component Designer generated code - - /// <summary> - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// </summary> - private void InitializeComponent() - { - this.SuspendLayout(); - // - // WinClassicAddressBook - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.Name = "WinClassicAddressBook"; - this.Size = new System.Drawing.Size(260, 264); - this.ResumeLayout(false); - - } - - #endregion - } -} diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicDownloader.Designer.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicDownloader.Designer.cs index fd182fa..b0822c9 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicDownloader.Designer.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicDownloader.Designer.cs @@ -29,7 +29,7 @@ private void InitializeComponent() { this.components = new System.ComponentModel.Container(); - this.progBar = new System.Windows.Forms.ProgressBar(); + this.progBar = new TimeHACK.UI.ProgressBar(); this.amountLbl = new System.Windows.Forms.Label(); this.appName = new System.Windows.Forms.Label(); this.locationLbl = new System.Windows.Forms.Label(); @@ -45,6 +45,10 @@ this.progBar.Location = new System.Drawing.Point(5, 29); this.progBar.Name = "progBar"; this.progBar.Size = new System.Drawing.Size(290, 23); + this.progBar.ProgressColor = System.Drawing.Color.FromArgb(19, 36, 105); + this.progBar.Style = System.Windows.Forms.ProgressBarStyle.Blocks; + this.progBar.BlockWidth = 14; + this.progBar.BlockSpacing = 2; this.progBar.TabIndex = 15; // // amountLbl @@ -113,7 +117,7 @@ #endregion - internal System.Windows.Forms.ProgressBar progBar; + internal TimeHACK.UI.ProgressBar progBar; internal System.Windows.Forms.Label amountLbl; internal System.Windows.Forms.Label appName; internal System.Windows.Forms.Label locationLbl; diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.Designer.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.Designer.cs index adcb291..89e6193 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.Designer.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.Designer.cs @@ -28,10 +28,9 @@ /// </summary> private void InitializeComponent() { - this.resources = new System.ComponentModel.ComponentResourceManager(typeof(WinClassicIE4)); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WinClassicIE4)); this.program = new System.Windows.Forms.Panel(); this.browsingarea = new System.Windows.Forms.Panel(); - this.webBrowser1 = new System.Windows.Forms.WebBrowser(); this.padamsmain = new System.Windows.Forms.Panel(); this.Panel12 = new System.Windows.Forms.Panel(); this.LinkLabel17 = new System.Windows.Forms.LinkLabel(); @@ -197,6 +196,7 @@ this.TextBox2 = new System.Windows.Forms.TextBox(); this.Label7 = new System.Windows.Forms.Label(); this.pboxgoogleprototypelogo = new System.Windows.Forms.PictureBox(); + this.webBrowser1 = new System.Windows.Forms.WebBrowser(); this.Panel14 = new System.Windows.Forms.Panel(); this.GoButton = new System.Windows.Forms.Button(); this.addressbar = new System.Windows.Forms.ComboBox(); @@ -397,15 +397,6 @@ this.browsingarea.TabIndex = 9; this.browsingarea.Visible = false; // - // webBrowser1 - // - this.webBrowser1.Dock = System.Windows.Forms.DockStyle.Fill; - this.webBrowser1.Location = new System.Drawing.Point(0, 111); - this.webBrowser1.Name = "webBrowser1"; - this.webBrowser1.Size = new System.Drawing.Size(959, 483); - this.webBrowser1.TabIndex = 11; - this.webBrowser1.DocumentCompleted += new System.Windows.Forms.WebBrowserDocumentCompletedEventHandler(webBrowser1_DocumentCompleted); - // // padamsmain // this.padamsmain.AutoScroll = true; @@ -720,7 +711,7 @@ this.Panel13.Controls.Add(this.win95background); this.Panel13.Location = new System.Drawing.Point(46, 74); this.Panel13.Name = "Panel13"; - this.Panel13.Size = new System.Drawing.Size(7358, 118); + this.Panel13.Size = new System.Drawing.Size(8162, 118); this.Panel13.TabIndex = 2; // // Previewimage @@ -731,7 +722,7 @@ this.Previewimage.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.Previewimage.Location = new System.Drawing.Point(246, 6); this.Previewimage.Name = "Previewimage"; - this.Previewimage.Size = new System.Drawing.Size(5941, 118); + this.Previewimage.Size = new System.Drawing.Size(6745, 118); this.Previewimage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.Previewimage.TabIndex = 1; this.Previewimage.TabStop = false; @@ -886,7 +877,7 @@ this.Label31.ForeColor = System.Drawing.Color.White; this.Label31.Location = new System.Drawing.Point(513, 259); this.Label31.Name = "Label31"; - this.Label31.Size = new System.Drawing.Size(113, 15); + this.Label31.Size = new System.Drawing.Size(111, 15); this.Label31.TabIndex = 19; this.Label31.Text = "Privacy Statement"; // @@ -897,7 +888,7 @@ this.Label30.ForeColor = System.Drawing.Color.White; this.Label30.Location = new System.Drawing.Point(513, 234); this.Label30.Name = "Label30"; - this.Label30.Size = new System.Drawing.Size(79, 15); + this.Label30.Size = new System.Drawing.Size(77, 15); this.Label30.TabIndex = 18; this.Label30.Text = "Email Safety"; // @@ -908,7 +899,7 @@ this.Label29.ForeColor = System.Drawing.Color.White; this.Label29.Location = new System.Drawing.Point(513, 207); this.Label29.Name = "Label29"; - this.Label29.Size = new System.Drawing.Size(88, 15); + this.Label29.Size = new System.Drawing.Size(86, 15); this.Label29.TabIndex = 17; this.Label29.Text = "About Hotmail"; // @@ -955,7 +946,7 @@ this.Label27.ForeColor = System.Drawing.Color.White; this.Label27.Location = new System.Drawing.Point(258, 140); this.Label27.Name = "Label27"; - this.Label27.Size = new System.Drawing.Size(142, 15); + this.Label27.Size = new System.Drawing.Size(139, 15); this.Label27.TabIndex = 12; this.Label27.Text = "Forgot Your Password?"; // @@ -1048,7 +1039,7 @@ this.Label25.ForeColor = System.Drawing.Color.White; this.Label25.Location = new System.Drawing.Point(232, 59); this.Label25.Name = "Label25"; - this.Label25.Size = new System.Drawing.Size(75, 15); + this.Label25.Size = new System.Drawing.Size(74, 15); this.Label25.TabIndex = 3; this.Label25.Text = "Login Name"; // @@ -1121,11 +1112,10 @@ // Label58 // this.Label58.Anchor = System.Windows.Forms.AnchorStyles.Top; - this.Label58.AutoSize = false; this.Label58.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Label58.Location = new System.Drawing.Point(0, 45); this.Label58.Name = "Label58"; - this.Label58.Size = new System.Drawing.Size(browsingarea.Width, 16); + this.Label58.Size = new System.Drawing.Size(200, 16); this.Label58.TabIndex = 7; this.Label58.Text = "Where do you want to go today?"; this.Label58.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; @@ -1133,10 +1123,9 @@ // LinkLabel16 // this.LinkLabel16.Anchor = System.Windows.Forms.AnchorStyles.Top; - this.LinkLabel16.AutoSize = false; this.LinkLabel16.Location = new System.Drawing.Point(0, 317); this.LinkLabel16.Name = "LinkLabel16"; - this.LinkLabel16.Size = new System.Drawing.Size(browsingarea.Width, 13); + this.LinkLabel16.Size = new System.Drawing.Size(200, 13); this.LinkLabel16.TabIndex = 6; this.LinkLabel16.TabStop = true; this.LinkLabel16.Text = "www.12padams.com"; @@ -1145,10 +1134,9 @@ // LinkLabel15 // this.LinkLabel15.Anchor = System.Windows.Forms.AnchorStyles.Top; - this.LinkLabel15.AutoSize = false; this.LinkLabel15.Location = new System.Drawing.Point(0, 298); this.LinkLabel15.Name = "LinkLabel15"; - this.LinkLabel15.Size = new System.Drawing.Size(browsingarea.Width, 13); + this.LinkLabel15.Size = new System.Drawing.Size(200, 13); this.LinkLabel15.TabIndex = 5; this.LinkLabel15.TabStop = true; this.LinkLabel15.Text = "www.google.com"; @@ -1157,11 +1145,10 @@ // Label3 // this.Label3.Anchor = System.Windows.Forms.AnchorStyles.Top; - this.Label3.AutoSize = false; this.Label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Label3.Location = new System.Drawing.Point(0, 258); this.Label3.Name = "Label3"; - this.Label3.Size = new System.Drawing.Size(browsingarea.Width, 20); + this.Label3.Size = new System.Drawing.Size(200, 20); this.Label3.TabIndex = 2; this.Label3.Text = "Here are some sites you may wish to visit."; this.Label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; @@ -1176,7 +1163,7 @@ this.TextBox1.Multiline = true; this.TextBox1.Name = "TextBox1"; this.TextBox1.ReadOnly = true; - this.TextBox1.Size = new System.Drawing.Size(browsingarea.Width, 130); + this.TextBox1.Size = new System.Drawing.Size(200, 130); this.TextBox1.TabIndex = 1; this.TextBox1.Text = resources.GetString("TextBox1.Text"); this.TextBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; @@ -1184,11 +1171,10 @@ // Label2 // this.Label2.Anchor = System.Windows.Forms.AnchorStyles.Top; - this.Label2.AutoSize = false; this.Label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Label2.Location = new System.Drawing.Point(0, 19); this.Label2.Name = "Label2"; - this.Label2.Size = new System.Drawing.Size(browsingarea.Width, 24); + this.Label2.Size = new System.Drawing.Size(200, 24); this.Label2.TabIndex = 0; this.Label2.Text = "Welcome To Internet Explorer 4"; this.Label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; @@ -1872,7 +1858,7 @@ this.Label42.Anchor = System.Windows.Forms.AnchorStyles.Top; this.Label42.AutoSize = true; this.Label42.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.Label42.Location = new System.Drawing.Point(1124, 9); + this.Label42.Location = new System.Drawing.Point(1258, 9); this.Label42.Name = "Label42"; this.Label42.Size = new System.Drawing.Size(263, 18); this.Label42.TabIndex = 5; @@ -1883,7 +1869,7 @@ this.Label41.Anchor = System.Windows.Forms.AnchorStyles.Top; this.Label41.AutoSize = true; this.Label41.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.Label41.Location = new System.Drawing.Point(1224, 33); + this.Label41.Location = new System.Drawing.Point(1358, 33); this.Label41.Name = "Label41"; this.Label41.Size = new System.Drawing.Size(71, 24); this.Label41.TabIndex = 4; @@ -1898,14 +1884,14 @@ this.TextBox8.Multiline = true; this.TextBox8.Name = "TextBox8"; this.TextBox8.ReadOnly = true; - this.TextBox8.Size = new System.Drawing.Size(172, 6276); + this.TextBox8.Size = new System.Drawing.Size(172, 6978); this.TextBox8.TabIndex = 3; this.TextBox8.Text = resources.GetString("TextBox8.Text"); // // PictureBox11 // this.PictureBox11.Anchor = System.Windows.Forms.AnchorStyles.Top; - this.PictureBox11.Location = new System.Drawing.Point(1094, 60); + this.PictureBox11.Location = new System.Drawing.Point(1228, 60); this.PictureBox11.Name = "PictureBox11"; this.PictureBox11.Size = new System.Drawing.Size(337, 386); this.PictureBox11.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; @@ -2177,6 +2163,15 @@ this.pboxgoogleprototypelogo.TabIndex = 0; this.pboxgoogleprototypelogo.TabStop = false; // + // webBrowser1 + // + this.webBrowser1.Dock = System.Windows.Forms.DockStyle.Fill; + this.webBrowser1.Location = new System.Drawing.Point(0, 111); + this.webBrowser1.Name = "webBrowser1"; + this.webBrowser1.Size = new System.Drawing.Size(959, 483); + this.webBrowser1.TabIndex = 11; + this.webBrowser1.DocumentCompleted += new System.Windows.Forms.WebBrowserDocumentCompletedEventHandler(this.webBrowser1_DocumentCompleted); + // // Panel14 // this.Panel14.Controls.Add(this.GoButton); @@ -2199,7 +2194,7 @@ this.GoButton.Text = "Go"; this.GoButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; this.GoButton.UseVisualStyleBackColor = true; - this.GoButton.Click += new System.EventHandler(GoButton_Click); + this.GoButton.Click += new System.EventHandler(this.GoButton_Click); // // addressbar // @@ -2436,7 +2431,7 @@ this.ToolStripMenuItem20, this.ToolStripMenuItem21}); this.ToolStripMenuItem1.Name = "ToolStripMenuItem1"; - this.ToolStripMenuItem1.Size = new System.Drawing.Size(40, 20); + this.ToolStripMenuItem1.Size = new System.Drawing.Size(37, 20); this.ToolStripMenuItem1.Text = "File"; // // ToolStripMenuItem2 @@ -2449,84 +2444,84 @@ this.ToolStripMenuItem6, this.ToolStripMenuItem7}); this.ToolStripMenuItem2.Name = "ToolStripMenuItem2"; - this.ToolStripMenuItem2.Size = new System.Drawing.Size(239, 22); + this.ToolStripMenuItem2.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem2.Text = "New"; // // ToolStripMenuItem3 // this.ToolStripMenuItem3.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem3.Name = "ToolStripMenuItem3"; - this.ToolStripMenuItem3.Size = new System.Drawing.Size(181, 22); + this.ToolStripMenuItem3.Size = new System.Drawing.Size(175, 22); this.ToolStripMenuItem3.Text = "Window Ctrl+N"; // // ToolStripMenuItem4 // this.ToolStripMenuItem4.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem4.Name = "ToolStripMenuItem4"; - this.ToolStripMenuItem4.Size = new System.Drawing.Size(181, 22); + this.ToolStripMenuItem4.Size = new System.Drawing.Size(175, 22); this.ToolStripMenuItem4.Text = "Message"; // // ToolStripMenuItem5 // this.ToolStripMenuItem5.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem5.Name = "ToolStripMenuItem5"; - this.ToolStripMenuItem5.Size = new System.Drawing.Size(181, 22); + this.ToolStripMenuItem5.Size = new System.Drawing.Size(175, 22); this.ToolStripMenuItem5.Text = "Post"; // // ToolStripMenuItem6 // this.ToolStripMenuItem6.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem6.Name = "ToolStripMenuItem6"; - this.ToolStripMenuItem6.Size = new System.Drawing.Size(181, 22); + this.ToolStripMenuItem6.Size = new System.Drawing.Size(175, 22); this.ToolStripMenuItem6.Text = "Contact"; // // ToolStripMenuItem7 // this.ToolStripMenuItem7.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem7.Name = "ToolStripMenuItem7"; - this.ToolStripMenuItem7.Size = new System.Drawing.Size(181, 22); + this.ToolStripMenuItem7.Size = new System.Drawing.Size(175, 22); this.ToolStripMenuItem7.Text = "Internet Call"; // // ToolStripMenuItem8 // this.ToolStripMenuItem8.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem8.Name = "ToolStripMenuItem8"; - this.ToolStripMenuItem8.Size = new System.Drawing.Size(239, 22); + this.ToolStripMenuItem8.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem8.Text = "Open... Ctrl+O"; // // ToolStripMenuItem9 // this.ToolStripMenuItem9.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem9.Name = "ToolStripMenuItem9"; - this.ToolStripMenuItem9.Size = new System.Drawing.Size(239, 22); + this.ToolStripMenuItem9.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem9.Text = "Edit with Windows Notepad"; // // ToolStripMenuItem10 // this.ToolStripMenuItem10.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem10.Name = "ToolStripMenuItem10"; - this.ToolStripMenuItem10.Size = new System.Drawing.Size(239, 22); + this.ToolStripMenuItem10.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem10.Text = "Save Ctrl+S"; // // ToolStripMenuItem11 // this.ToolStripMenuItem11.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem11.Name = "ToolStripMenuItem11"; - this.ToolStripMenuItem11.Size = new System.Drawing.Size(239, 22); + this.ToolStripMenuItem11.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem11.Text = "Save As..."; // // ToolStripMenuItem12 // this.ToolStripMenuItem12.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem12.Name = "ToolStripMenuItem12"; - this.ToolStripMenuItem12.Size = new System.Drawing.Size(239, 22); + this.ToolStripMenuItem12.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem12.Text = "Print Setup..."; // // ToolStripMenuItem13 // this.ToolStripMenuItem13.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem13.Name = "ToolStripMenuItem13"; - this.ToolStripMenuItem13.Size = new System.Drawing.Size(239, 22); + this.ToolStripMenuItem13.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem13.Text = "Print..."; // // ToolStripMenuItem14 @@ -2537,56 +2532,56 @@ this.ToolStripMenuItem16, this.ToolStripMenuItem17}); this.ToolStripMenuItem14.Name = "ToolStripMenuItem14"; - this.ToolStripMenuItem14.Size = new System.Drawing.Size(239, 22); + this.ToolStripMenuItem14.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem14.Text = "Send"; // // ToolStripMenuItem15 // this.ToolStripMenuItem15.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem15.Name = "ToolStripMenuItem15"; - this.ToolStripMenuItem15.Size = new System.Drawing.Size(198, 22); + this.ToolStripMenuItem15.Size = new System.Drawing.Size(179, 22); this.ToolStripMenuItem15.Text = "Page by E-mail..."; // // ToolStripMenuItem16 // this.ToolStripMenuItem16.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem16.Name = "ToolStripMenuItem16"; - this.ToolStripMenuItem16.Size = new System.Drawing.Size(198, 22); + this.ToolStripMenuItem16.Size = new System.Drawing.Size(179, 22); this.ToolStripMenuItem16.Text = "Link by E-mail..."; // // ToolStripMenuItem17 // this.ToolStripMenuItem17.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem17.Name = "ToolStripMenuItem17"; - this.ToolStripMenuItem17.Size = new System.Drawing.Size(198, 22); + this.ToolStripMenuItem17.Size = new System.Drawing.Size(179, 22); this.ToolStripMenuItem17.Text = "Shortcut to Desktop"; // // ToolStripMenuItem18 // this.ToolStripMenuItem18.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem18.Name = "ToolStripMenuItem18"; - this.ToolStripMenuItem18.Size = new System.Drawing.Size(239, 22); + this.ToolStripMenuItem18.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem18.Text = "Import and Export..."; // // ToolStripMenuItem19 // this.ToolStripMenuItem19.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem19.Name = "ToolStripMenuItem19"; - this.ToolStripMenuItem19.Size = new System.Drawing.Size(239, 22); + this.ToolStripMenuItem19.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem19.Text = "Properties"; // // ToolStripMenuItem20 // this.ToolStripMenuItem20.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem20.Name = "ToolStripMenuItem20"; - this.ToolStripMenuItem20.Size = new System.Drawing.Size(239, 22); + this.ToolStripMenuItem20.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem20.Text = "Work Offline"; // // ToolStripMenuItem21 // this.ToolStripMenuItem21.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem21.Name = "ToolStripMenuItem21"; - this.ToolStripMenuItem21.Size = new System.Drawing.Size(239, 22); + this.ToolStripMenuItem21.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem21.Text = "Close"; this.ToolStripMenuItem21.Click += new System.EventHandler(this.ToolStripMenuItem21_Click); // @@ -2599,42 +2594,42 @@ this.ToolStripMenuItem26, this.ToolStripMenuItem27}); this.ToolStripMenuItem22.Name = "ToolStripMenuItem22"; - this.ToolStripMenuItem22.Size = new System.Drawing.Size(43, 20); + this.ToolStripMenuItem22.Size = new System.Drawing.Size(39, 20); this.ToolStripMenuItem22.Text = "Edit"; // // ToolStripMenuItem23 // this.ToolStripMenuItem23.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem23.Name = "ToolStripMenuItem23"; - this.ToolStripMenuItem23.Size = new System.Drawing.Size(237, 22); + this.ToolStripMenuItem23.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem23.Text = "Cut Ctrl+X"; // // ToolStripMenuItem24 // this.ToolStripMenuItem24.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem24.Name = "ToolStripMenuItem24"; - this.ToolStripMenuItem24.Size = new System.Drawing.Size(237, 22); + this.ToolStripMenuItem24.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem24.Text = "Copy Ctrl+C"; // // ToolStripMenuItem25 // this.ToolStripMenuItem25.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem25.Name = "ToolStripMenuItem25"; - this.ToolStripMenuItem25.Size = new System.Drawing.Size(237, 22); + this.ToolStripMenuItem25.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem25.Text = "Paste Ctrl+V"; // // ToolStripMenuItem26 // this.ToolStripMenuItem26.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem26.Name = "ToolStripMenuItem26"; - this.ToolStripMenuItem26.Size = new System.Drawing.Size(237, 22); + this.ToolStripMenuItem26.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem26.Text = "Select All Ctrl+A"; // // ToolStripMenuItem27 // this.ToolStripMenuItem27.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem27.Name = "ToolStripMenuItem27"; - this.ToolStripMenuItem27.Size = new System.Drawing.Size(237, 22); + this.ToolStripMenuItem27.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem27.Text = "Find (on This Page)... Ctrl+F"; // // ToolStripMenuItem28 @@ -2651,7 +2646,7 @@ this.ToolStripMenuItem71, this.ToolStripMenuItem72}); this.ToolStripMenuItem28.Name = "ToolStripMenuItem28"; - this.ToolStripMenuItem28.Size = new System.Drawing.Size(47, 20); + this.ToolStripMenuItem28.Size = new System.Drawing.Size(44, 20); this.ToolStripMenuItem28.Text = "View"; // // ToolStripMenuItem29 @@ -2664,49 +2659,49 @@ this.ToolStripMenuItem33, this.ToolStripMenuItem34}); this.ToolStripMenuItem29.Name = "ToolStripMenuItem29"; - this.ToolStripMenuItem29.Size = new System.Drawing.Size(180, 22); + this.ToolStripMenuItem29.Size = new System.Drawing.Size(166, 22); this.ToolStripMenuItem29.Text = "Toolbars"; // // ToolStripMenuItem30 // this.ToolStripMenuItem30.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem30.Name = "ToolStripMenuItem30"; - this.ToolStripMenuItem30.Size = new System.Drawing.Size(183, 22); + this.ToolStripMenuItem30.Size = new System.Drawing.Size(165, 22); this.ToolStripMenuItem30.Text = "Standard Buttons"; // // ToolStripMenuItem31 // this.ToolStripMenuItem31.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem31.Name = "ToolStripMenuItem31"; - this.ToolStripMenuItem31.Size = new System.Drawing.Size(183, 22); + this.ToolStripMenuItem31.Size = new System.Drawing.Size(165, 22); this.ToolStripMenuItem31.Text = "Address Bar"; // // ToolStripMenuItem32 // this.ToolStripMenuItem32.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem32.Name = "ToolStripMenuItem32"; - this.ToolStripMenuItem32.Size = new System.Drawing.Size(183, 22); + this.ToolStripMenuItem32.Size = new System.Drawing.Size(165, 22); this.ToolStripMenuItem32.Text = "Links"; // // ToolStripMenuItem33 // this.ToolStripMenuItem33.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem33.Name = "ToolStripMenuItem33"; - this.ToolStripMenuItem33.Size = new System.Drawing.Size(183, 22); + this.ToolStripMenuItem33.Size = new System.Drawing.Size(165, 22); this.ToolStripMenuItem33.Text = "Radio"; // // ToolStripMenuItem34 // this.ToolStripMenuItem34.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem34.Name = "ToolStripMenuItem34"; - this.ToolStripMenuItem34.Size = new System.Drawing.Size(183, 22); + this.ToolStripMenuItem34.Size = new System.Drawing.Size(165, 22); this.ToolStripMenuItem34.Text = "Customize..."; // // ToolStripMenuItem35 // this.ToolStripMenuItem35.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem35.Name = "ToolStripMenuItem35"; - this.ToolStripMenuItem35.Size = new System.Drawing.Size(180, 22); + this.ToolStripMenuItem35.Size = new System.Drawing.Size(166, 22); this.ToolStripMenuItem35.Text = "Status Bar"; // // ToolStripMenuItem36 @@ -2718,35 +2713,35 @@ this.ToolStripMenuItem39, this.ToolStripMenuItem40}); this.ToolStripMenuItem36.Name = "ToolStripMenuItem36"; - this.ToolStripMenuItem36.Size = new System.Drawing.Size(180, 22); + this.ToolStripMenuItem36.Size = new System.Drawing.Size(166, 22); this.ToolStripMenuItem36.Text = "Explorer Bar"; // // ToolStripMenuItem37 // this.ToolStripMenuItem37.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem37.Name = "ToolStripMenuItem37"; - this.ToolStripMenuItem37.Size = new System.Drawing.Size(193, 22); + this.ToolStripMenuItem37.Size = new System.Drawing.Size(184, 22); this.ToolStripMenuItem37.Text = "Search Ctrl+E"; // // ToolStripMenuItem38 // this.ToolStripMenuItem38.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem38.Name = "ToolStripMenuItem38"; - this.ToolStripMenuItem38.Size = new System.Drawing.Size(193, 22); + this.ToolStripMenuItem38.Size = new System.Drawing.Size(184, 22); this.ToolStripMenuItem38.Text = "Favorites Ctrl+I"; // // ToolStripMenuItem39 // this.ToolStripMenuItem39.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem39.Name = "ToolStripMenuItem39"; - this.ToolStripMenuItem39.Size = new System.Drawing.Size(193, 22); + this.ToolStripMenuItem39.Size = new System.Drawing.Size(184, 22); this.ToolStripMenuItem39.Text = "History Ctrl+H"; // // ToolStripMenuItem40 // this.ToolStripMenuItem40.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem40.Name = "ToolStripMenuItem40"; - this.ToolStripMenuItem40.Size = new System.Drawing.Size(193, 22); + this.ToolStripMenuItem40.Size = new System.Drawing.Size(184, 22); this.ToolStripMenuItem40.Text = "Tip of the Day"; // // ToolStripMenuItem41 @@ -2755,28 +2750,28 @@ this.ToolStripMenuItem41.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ToolStripMenuItem42}); this.ToolStripMenuItem41.Name = "ToolStripMenuItem41"; - this.ToolStripMenuItem41.Size = new System.Drawing.Size(180, 22); + this.ToolStripMenuItem41.Size = new System.Drawing.Size(166, 22); this.ToolStripMenuItem41.Text = "Go To"; // // ToolStripMenuItem42 // this.ToolStripMenuItem42.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem42.Name = "ToolStripMenuItem42"; - this.ToolStripMenuItem42.Size = new System.Drawing.Size(143, 22); + this.ToolStripMenuItem42.Size = new System.Drawing.Size(136, 22); this.ToolStripMenuItem42.Text = "Home Page"; // // ToolStripMenuItem43 // this.ToolStripMenuItem43.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem43.Name = "ToolStripMenuItem43"; - this.ToolStripMenuItem43.Size = new System.Drawing.Size(180, 22); + this.ToolStripMenuItem43.Size = new System.Drawing.Size(166, 22); this.ToolStripMenuItem43.Text = "Stop Esc"; // // ToolStripMenuItem44 // this.ToolStripMenuItem44.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem44.Name = "ToolStripMenuItem44"; - this.ToolStripMenuItem44.Size = new System.Drawing.Size(180, 22); + this.ToolStripMenuItem44.Size = new System.Drawing.Size(166, 22); this.ToolStripMenuItem44.Text = "Refresh F5"; // // ToolStripMenuItem45 @@ -2789,42 +2784,42 @@ this.ToolStripMenuItem49, this.ToolStripMenuItem50}); this.ToolStripMenuItem45.Name = "ToolStripMenuItem45"; - this.ToolStripMenuItem45.Size = new System.Drawing.Size(180, 22); + this.ToolStripMenuItem45.Size = new System.Drawing.Size(166, 22); this.ToolStripMenuItem45.Text = "Text Size"; // // ToolStripMenuItem46 // this.ToolStripMenuItem46.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem46.Name = "ToolStripMenuItem46"; - this.ToolStripMenuItem46.Size = new System.Drawing.Size(126, 22); + this.ToolStripMenuItem46.Size = new System.Drawing.Size(119, 22); this.ToolStripMenuItem46.Text = "Largest"; // // ToolStripMenuItem47 // this.ToolStripMenuItem47.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem47.Name = "ToolStripMenuItem47"; - this.ToolStripMenuItem47.Size = new System.Drawing.Size(126, 22); + this.ToolStripMenuItem47.Size = new System.Drawing.Size(119, 22); this.ToolStripMenuItem47.Text = "Larger"; // // ToolStripMenuItem48 // this.ToolStripMenuItem48.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem48.Name = "ToolStripMenuItem48"; - this.ToolStripMenuItem48.Size = new System.Drawing.Size(126, 22); + this.ToolStripMenuItem48.Size = new System.Drawing.Size(119, 22); this.ToolStripMenuItem48.Text = "Medium"; // // ToolStripMenuItem49 // this.ToolStripMenuItem49.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem49.Name = "ToolStripMenuItem49"; - this.ToolStripMenuItem49.Size = new System.Drawing.Size(126, 22); + this.ToolStripMenuItem49.Size = new System.Drawing.Size(119, 22); this.ToolStripMenuItem49.Text = "Smaller"; // // ToolStripMenuItem50 // this.ToolStripMenuItem50.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem50.Name = "ToolStripMenuItem50"; - this.ToolStripMenuItem50.Size = new System.Drawing.Size(126, 22); + this.ToolStripMenuItem50.Size = new System.Drawing.Size(119, 22); this.ToolStripMenuItem50.Text = "Smallest"; // // ToolStripMenuItem51 @@ -2835,21 +2830,21 @@ this.ToolStripMenuItem53, this.ToolStripMenuItem54}); this.ToolStripMenuItem51.Name = "ToolStripMenuItem51"; - this.ToolStripMenuItem51.Size = new System.Drawing.Size(180, 22); + this.ToolStripMenuItem51.Size = new System.Drawing.Size(166, 22); this.ToolStripMenuItem51.Text = "Encoding"; // // ToolStripMenuItem52 // this.ToolStripMenuItem52.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem52.Name = "ToolStripMenuItem52"; - this.ToolStripMenuItem52.Size = new System.Drawing.Size(249, 22); + this.ToolStripMenuItem52.Size = new System.Drawing.Size(230, 22); this.ToolStripMenuItem52.Text = "Auto-Select"; // // ToolStripMenuItem53 // this.ToolStripMenuItem53.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem53.Name = "ToolStripMenuItem53"; - this.ToolStripMenuItem53.Size = new System.Drawing.Size(249, 22); + this.ToolStripMenuItem53.Size = new System.Drawing.Size(230, 22); this.ToolStripMenuItem53.Text = "Western European (Windows)"; // // ToolStripMenuItem54 @@ -2873,133 +2868,133 @@ this.ToolStripMenuItem69, this.ToolStripMenuItem70}); this.ToolStripMenuItem54.Name = "ToolStripMenuItem54"; - this.ToolStripMenuItem54.Size = new System.Drawing.Size(249, 22); + this.ToolStripMenuItem54.Size = new System.Drawing.Size(230, 22); this.ToolStripMenuItem54.Text = "More"; // // ToolStripMenuItem55 // this.ToolStripMenuItem55.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem55.Name = "ToolStripMenuItem55"; - this.ToolStripMenuItem55.Size = new System.Drawing.Size(216, 22); + this.ToolStripMenuItem55.Size = new System.Drawing.Size(199, 22); this.ToolStripMenuItem55.Text = "Arabic"; // // ToolStripMenuItem56 // this.ToolStripMenuItem56.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem56.Name = "ToolStripMenuItem56"; - this.ToolStripMenuItem56.Size = new System.Drawing.Size(216, 22); + this.ToolStripMenuItem56.Size = new System.Drawing.Size(199, 22); this.ToolStripMenuItem56.Text = "Baltic"; // // ToolStripMenuItem57 // this.ToolStripMenuItem57.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem57.Name = "ToolStripMenuItem57"; - this.ToolStripMenuItem57.Size = new System.Drawing.Size(216, 22); + this.ToolStripMenuItem57.Size = new System.Drawing.Size(199, 22); this.ToolStripMenuItem57.Text = "Central European"; // // ToolStripMenuItem58 // this.ToolStripMenuItem58.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem58.Name = "ToolStripMenuItem58"; - this.ToolStripMenuItem58.Size = new System.Drawing.Size(216, 22); + this.ToolStripMenuItem58.Size = new System.Drawing.Size(199, 22); this.ToolStripMenuItem58.Text = "Chinese Simplified"; // // ToolStripMenuItem59 // this.ToolStripMenuItem59.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem59.Name = "ToolStripMenuItem59"; - this.ToolStripMenuItem59.Size = new System.Drawing.Size(216, 22); + this.ToolStripMenuItem59.Size = new System.Drawing.Size(199, 22); this.ToolStripMenuItem59.Text = "Chinese Traditional"; // // ToolStripMenuItem60 // this.ToolStripMenuItem60.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem60.Name = "ToolStripMenuItem60"; - this.ToolStripMenuItem60.Size = new System.Drawing.Size(216, 22); + this.ToolStripMenuItem60.Size = new System.Drawing.Size(199, 22); this.ToolStripMenuItem60.Text = "Cyrillic"; // // ToolStripMenuItem61 // this.ToolStripMenuItem61.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem61.Name = "ToolStripMenuItem61"; - this.ToolStripMenuItem61.Size = new System.Drawing.Size(216, 22); + this.ToolStripMenuItem61.Size = new System.Drawing.Size(199, 22); this.ToolStripMenuItem61.Text = "Greek"; // // ToolStripMenuItem62 // this.ToolStripMenuItem62.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem62.Name = "ToolStripMenuItem62"; - this.ToolStripMenuItem62.Size = new System.Drawing.Size(216, 22); + this.ToolStripMenuItem62.Size = new System.Drawing.Size(199, 22); this.ToolStripMenuItem62.Text = "Hebrew"; // // ToolStripMenuItem63 // this.ToolStripMenuItem63.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem63.Name = "ToolStripMenuItem63"; - this.ToolStripMenuItem63.Size = new System.Drawing.Size(216, 22); + this.ToolStripMenuItem63.Size = new System.Drawing.Size(199, 22); this.ToolStripMenuItem63.Text = "Japanese"; // // ToolStripMenuItem64 // this.ToolStripMenuItem64.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem64.Name = "ToolStripMenuItem64"; - this.ToolStripMenuItem64.Size = new System.Drawing.Size(216, 22); + this.ToolStripMenuItem64.Size = new System.Drawing.Size(199, 22); this.ToolStripMenuItem64.Text = "Korean"; // // ToolStripMenuItem65 // this.ToolStripMenuItem65.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem65.Name = "ToolStripMenuItem65"; - this.ToolStripMenuItem65.Size = new System.Drawing.Size(216, 22); + this.ToolStripMenuItem65.Size = new System.Drawing.Size(199, 22); this.ToolStripMenuItem65.Text = "Thai"; // // ToolStripMenuItem66 // this.ToolStripMenuItem66.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem66.Name = "ToolStripMenuItem66"; - this.ToolStripMenuItem66.Size = new System.Drawing.Size(216, 22); + this.ToolStripMenuItem66.Size = new System.Drawing.Size(199, 22); this.ToolStripMenuItem66.Text = "Turkish"; // // ToolStripMenuItem67 // this.ToolStripMenuItem67.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem67.Name = "ToolStripMenuItem67"; - this.ToolStripMenuItem67.Size = new System.Drawing.Size(216, 22); + this.ToolStripMenuItem67.Size = new System.Drawing.Size(199, 22); this.ToolStripMenuItem67.Text = "Unicode (UTF-8)"; // // ToolStripMenuItem68 // this.ToolStripMenuItem68.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem68.Name = "ToolStripMenuItem68"; - this.ToolStripMenuItem68.Size = new System.Drawing.Size(216, 22); + this.ToolStripMenuItem68.Size = new System.Drawing.Size(199, 22); this.ToolStripMenuItem68.Text = "User Defined"; // // ToolStripMenuItem69 // this.ToolStripMenuItem69.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem69.Name = "ToolStripMenuItem69"; - this.ToolStripMenuItem69.Size = new System.Drawing.Size(216, 22); + this.ToolStripMenuItem69.Size = new System.Drawing.Size(199, 22); this.ToolStripMenuItem69.Text = "Vietnamese"; // // ToolStripMenuItem70 // this.ToolStripMenuItem70.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem70.Name = "ToolStripMenuItem70"; - this.ToolStripMenuItem70.Size = new System.Drawing.Size(216, 22); + this.ToolStripMenuItem70.Size = new System.Drawing.Size(199, 22); this.ToolStripMenuItem70.Text = "Western European (ISO)"; // // ToolStripMenuItem71 // this.ToolStripMenuItem71.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem71.Name = "ToolStripMenuItem71"; - this.ToolStripMenuItem71.Size = new System.Drawing.Size(180, 22); + this.ToolStripMenuItem71.Size = new System.Drawing.Size(166, 22); this.ToolStripMenuItem71.Text = "Source"; // // ToolStripMenuItem72 // this.ToolStripMenuItem72.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem72.Name = "ToolStripMenuItem72"; - this.ToolStripMenuItem72.Size = new System.Drawing.Size(180, 22); + this.ToolStripMenuItem72.Size = new System.Drawing.Size(166, 22); this.ToolStripMenuItem72.Text = "Full Screen F11"; // // ToolStripMenuItem78 @@ -3010,7 +3005,7 @@ this.ToolStripMenuItem86, this.ToolStripMenuItem87}); this.ToolStripMenuItem78.Name = "ToolStripMenuItem78"; - this.ToolStripMenuItem78.Size = new System.Drawing.Size(36, 20); + this.ToolStripMenuItem78.Size = new System.Drawing.Size(34, 20); this.ToolStripMenuItem78.Text = "Go"; // // ToolStripMenuItem79 @@ -3023,63 +3018,63 @@ this.ToolStripMenuItem83, this.ToolStripMenuItem84}); this.ToolStripMenuItem79.Name = "ToolStripMenuItem79"; - this.ToolStripMenuItem79.Size = new System.Drawing.Size(191, 22); + this.ToolStripMenuItem79.Size = new System.Drawing.Size(175, 22); this.ToolStripMenuItem79.Text = "Mail and News"; // // ToolStripMenuItem80 // this.ToolStripMenuItem80.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem80.Name = "ToolStripMenuItem80"; - this.ToolStripMenuItem80.Size = new System.Drawing.Size(165, 22); + this.ToolStripMenuItem80.Size = new System.Drawing.Size(156, 22); this.ToolStripMenuItem80.Text = "Read Mail"; // // ToolStripMenuItem81 // this.ToolStripMenuItem81.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem81.Name = "ToolStripMenuItem81"; - this.ToolStripMenuItem81.Size = new System.Drawing.Size(165, 22); + this.ToolStripMenuItem81.Size = new System.Drawing.Size(156, 22); this.ToolStripMenuItem81.Text = "New Message..."; // // ToolStripMenuItem82 // this.ToolStripMenuItem82.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem82.Name = "ToolStripMenuItem82"; - this.ToolStripMenuItem82.Size = new System.Drawing.Size(165, 22); + this.ToolStripMenuItem82.Size = new System.Drawing.Size(156, 22); this.ToolStripMenuItem82.Text = "Send a Link..."; // // ToolStripMenuItem83 // this.ToolStripMenuItem83.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem83.Name = "ToolStripMenuItem83"; - this.ToolStripMenuItem83.Size = new System.Drawing.Size(165, 22); + this.ToolStripMenuItem83.Size = new System.Drawing.Size(156, 22); this.ToolStripMenuItem83.Text = "Send Page..."; // // ToolStripMenuItem84 // this.ToolStripMenuItem84.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem84.Name = "ToolStripMenuItem84"; - this.ToolStripMenuItem84.Size = new System.Drawing.Size(165, 22); + this.ToolStripMenuItem84.Size = new System.Drawing.Size(156, 22); this.ToolStripMenuItem84.Text = "Read News"; // // ToolStripMenuItem85 // this.ToolStripMenuItem85.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem85.Name = "ToolStripMenuItem85"; - this.ToolStripMenuItem85.Size = new System.Drawing.Size(191, 22); + this.ToolStripMenuItem85.Size = new System.Drawing.Size(175, 22); this.ToolStripMenuItem85.Text = "Windows Update"; // // ToolStripMenuItem86 // this.ToolStripMenuItem86.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem86.Name = "ToolStripMenuItem86"; - this.ToolStripMenuItem86.Size = new System.Drawing.Size(191, 22); + this.ToolStripMenuItem86.Size = new System.Drawing.Size(175, 22); this.ToolStripMenuItem86.Text = "Show Related Links"; // // ToolStripMenuItem87 // this.ToolStripMenuItem87.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem87.Name = "ToolStripMenuItem87"; - this.ToolStripMenuItem87.Size = new System.Drawing.Size(191, 22); + this.ToolStripMenuItem87.Size = new System.Drawing.Size(175, 22); this.ToolStripMenuItem87.Text = "Internet Options..."; // // ToolStripMenuItem73 @@ -3089,21 +3084,21 @@ this.ToolStripMenuItem75, this.ToolStripMenuItem76}); this.ToolStripMenuItem73.Name = "ToolStripMenuItem73"; - this.ToolStripMenuItem73.Size = new System.Drawing.Size(76, 20); + this.ToolStripMenuItem73.Size = new System.Drawing.Size(66, 20); this.ToolStripMenuItem73.Text = "Favorites"; // // ToolStripMenuItem74 // this.ToolStripMenuItem74.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem74.Name = "ToolStripMenuItem74"; - this.ToolStripMenuItem74.Size = new System.Drawing.Size(197, 22); + this.ToolStripMenuItem74.Size = new System.Drawing.Size(180, 22); this.ToolStripMenuItem74.Text = "Add to Favorites..."; // // ToolStripMenuItem75 // this.ToolStripMenuItem75.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem75.Name = "ToolStripMenuItem75"; - this.ToolStripMenuItem75.Size = new System.Drawing.Size(197, 22); + this.ToolStripMenuItem75.Size = new System.Drawing.Size(180, 22); this.ToolStripMenuItem75.Text = "Organize Favorites..."; // // ToolStripMenuItem76 @@ -3112,14 +3107,14 @@ this.ToolStripMenuItem76.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ToolStripMenuItem77}); this.ToolStripMenuItem76.Name = "ToolStripMenuItem76"; - this.ToolStripMenuItem76.Size = new System.Drawing.Size(197, 22); + this.ToolStripMenuItem76.Size = new System.Drawing.Size(180, 22); this.ToolStripMenuItem76.Text = "Links"; // // ToolStripMenuItem77 // this.ToolStripMenuItem77.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem77.Name = "ToolStripMenuItem77"; - this.ToolStripMenuItem77.Size = new System.Drawing.Size(111, 22); + this.ToolStripMenuItem77.Size = new System.Drawing.Size(109, 22); this.ToolStripMenuItem77.Text = "(none)"; // // ToolStripMenuItem88 @@ -3133,56 +3128,56 @@ this.ToolStripMenuItem94, this.ToolStripMenuItem95}); this.ToolStripMenuItem88.Name = "ToolStripMenuItem88"; - this.ToolStripMenuItem88.Size = new System.Drawing.Size(46, 20); + this.ToolStripMenuItem88.Size = new System.Drawing.Size(44, 20); this.ToolStripMenuItem88.Text = "Help"; // // ToolStripMenuItem89 // this.ToolStripMenuItem89.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem89.Name = "ToolStripMenuItem89"; - this.ToolStripMenuItem89.Size = new System.Drawing.Size(217, 22); + this.ToolStripMenuItem89.Size = new System.Drawing.Size(196, 22); this.ToolStripMenuItem89.Text = "Contects and Index"; // // ToolStripMenuItem90 // this.ToolStripMenuItem90.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem90.Name = "ToolStripMenuItem90"; - this.ToolStripMenuItem90.Size = new System.Drawing.Size(217, 22); + this.ToolStripMenuItem90.Size = new System.Drawing.Size(196, 22); this.ToolStripMenuItem90.Text = "Tip of the Day"; // // ToolStripMenuItem91 // this.ToolStripMenuItem91.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem91.Name = "ToolStripMenuItem91"; - this.ToolStripMenuItem91.Size = new System.Drawing.Size(217, 22); + this.ToolStripMenuItem91.Size = new System.Drawing.Size(196, 22); this.ToolStripMenuItem91.Text = "For Netscape Users"; // // ToolStripMenuItem92 // this.ToolStripMenuItem92.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem92.Name = "ToolStripMenuItem92"; - this.ToolStripMenuItem92.Size = new System.Drawing.Size(217, 22); + this.ToolStripMenuItem92.Size = new System.Drawing.Size(196, 22); this.ToolStripMenuItem92.Text = "Tour"; // // ToolStripMenuItem93 // this.ToolStripMenuItem93.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem93.Name = "ToolStripMenuItem93"; - this.ToolStripMenuItem93.Size = new System.Drawing.Size(217, 22); + this.ToolStripMenuItem93.Size = new System.Drawing.Size(196, 22); this.ToolStripMenuItem93.Text = "Online Support"; // // ToolStripMenuItem94 // this.ToolStripMenuItem94.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem94.Name = "ToolStripMenuItem94"; - this.ToolStripMenuItem94.Size = new System.Drawing.Size(217, 22); + this.ToolStripMenuItem94.Size = new System.Drawing.Size(196, 22); this.ToolStripMenuItem94.Text = "About Internet Explorer"; // // ToolStripMenuItem95 // this.ToolStripMenuItem95.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem95.Name = "ToolStripMenuItem95"; - this.ToolStripMenuItem95.Size = new System.Drawing.Size(217, 22); + this.ToolStripMenuItem95.Size = new System.Drawing.Size(196, 22); this.ToolStripMenuItem95.Text = "Send Feedback"; // // WinClassicIE4 diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.cs index 1e4e204..e6253c9 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.cs @@ -25,15 +25,7 @@ namespace TimeHACK.OS.Win95.Win95Apps private void WinClassicIE4_Load(object sender, EventArgs e) { - browsinghistory.Capacity = 99; - BringToFront(); - hidePrograms(); - browsinghistory.Add("www.microsoft.com/internetexplorer4/welcome"); - for (int i = 0; i < 99; i++) browsinghistory.Add(null); - webBrowser1.DocumentText = resources.GetString("ie4start_HTML"); - webBrowser1.Show(); - foreach (ToolStripMenuItem item in MenuStrip3.Items) item.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((0))); - foreach (Control ctrl in Panel1.Controls) ctrl.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((0))); + } private void hidePrograms() @@ -218,7 +210,7 @@ namespace TimeHACK.OS.Win95.Win95Apps } } - + //TODO: Add more websites //TODO: Relabel Buttons And Things } diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.resx b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.resx index ea0e96b..2021fda 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.resx +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.resx @@ -191,225 +191,7 @@ If you Don't like this product you may recieve a full refund on day of purchous. So Please enjoy Using this amzing software and show the world what your made of.</value> </data> - <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> - <data name="MenuStrip3.TrayLocation" type="System.Drawing.Point, System.Drawing"> + <metadata name="MenuStrip3.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> <value>17, 17</value> - </data> - <assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> - <data name="ie4start" type="System.Resources.ResXFileRef, System.Windows.Forms"> - <value>..\..\..\resources\ie4\ie4start.html;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value> - </data> - <data name="ie4start_HTML" xml:space="preserve"> - <value><html> - <head> - <title>IE4START</title> - <style> - body { - font-family: "Microsoft Sans Serif"; - text-align: center; - } - h1 { - margin-top: 19px; - font-size: 14.25pt; - font-style: bold; - } - p { - font-size: 11.25pt; - } - h2 { - font-size: 12pt; - font-style: bold; - margin-top: 50px; - } - p.end { - font-size: 9.75pt; - } - a { - color: blue; - text-decoration: underline; - cursor: pointer; - } - </style> - </head> - <body> - <h1>Welcome to Internet Explorer 4</h1> - <p>Welcome To Internet Explorer 4.<br> -Internet Explorer 4 makes browsing the web and exploring websites a pleasant experience.<br> -Just type an address in the location bar above and then press go.<br> -Instantly you will be taken to the webpage of your choosing.<br> -Where do you want to go today?</p> - <h2>Here are some sites you may want to visit.</h2> - <a id="google">www.google.com</a><br> - <a id="padams">www.12padams.com</a> - <p class="end">Where do you want to go today?</p> - </body> -</html></value> - </data> - <data name="padams" type="System.Resources.ResXFileRef, System.Windows.Forms"> - <value>..\..\..\resources\ie4\padams.html;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value> - </data> - <data name="padams_HTML" xml:space="preserve"> - <value><html> - <head> - <title>12PADAMS</title> - <style> - body { - font-family: "Microsoft Sans Serif"; - text-align: center; - } - h1 { - font-size: 9.75pt; - margin-top: 20px; - } - p { - font-size: 9.25pt; - margin-top: 0; - margin-bottom: 25px; - } - td div { - display: inline-block; - border: 1px solid black; - width: 215px; - height: 305px; - margin: 0 3px 0 3px; - text-align: center; - } - h1#copyright { - font-size: 9pt; - } - p.app { - margin-top: 30px; - } - p.app button { - float: right; - background-color: silver; - border-color: white black black white; - margin-right: 2px; - } - a { - font-size: 9.25pt; - color: blue; - } - </style> - </head> - <body> - <h1>Welcome to the Official 12padams website!!!</h1> - <p>The best customizations for your windows 95 computer</p> - <table align="center"> - <tr> - <td><div class="software"> - <h1>Games/Software</h1> - <p class="app" id="gtn">Guess the Number V1 <button id="gtn_b">Download</button></p> - <p class="app" id="wc">Web Chat 1998 <button id="wc_b">Download</button></p> - <p class="app" id="distort">Time Distorter 0.1 <button id="distort_b">Download</button></p> - </div></td> - <td><div class="customize"> - <h1>Customizations</h1> - <p class="app" id="bg">Backgrounds <button id="bg_b">View Backgrounds</button></p> - <p class="app" id="skn">Skindows 95 <button id="skn_b">Info</button></p> - </div></td> - <td><div class="viruses"> - <h1>Example Viruses</h1> - <p class="app" id="sr">Start Runner 95 <button id="sr_b">Download</button></p> - <p class="app" id="eb">Error Blaster 95 <button id="eb_b">Download</button></p> - </div></td> - <td><div class="sites"> - <h1>Changelog</h1> - <p class="app">1996: 12padams.com created</p> - <p class="app">1997: Software added to the site</p> - <p class="app">1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝d̻̻̪̙͖̬͈͟͝e͠҉̨̧҉̯̙̹̝̟̺̰͖̹̞̻̝̖̪͉͍͇̬#҉̵̻̜͇̻̹͈̀͟ ̨̡̘͓͔̜̭̫͖͔̰̦̘̀#̛͓̬̭̦̹̙̭͕̕#̧͢͠͏̖̙͚͉͇̣̜̖ͅ#̜̝͚͓̳̘̭̣̲̟̤̖͇̬̠̯̠̀͠ ̢͚̲̞̯͎͙̪̗̜̹͙͓͉͢ͅ#̡͙̻̫̝̪͙͚̺̝͓̘̬̬͙͔̀̕͠#̴҉͖̲̺̱͖͈̭̭ͅ#̸̸̷̼̫̪̖̻̻͈̭̬͓̘͓̦̟̻̪͇̞̕#̸̢̨̻̗̣̠̥̖̜̜̖̺͍̝̗͓̦̳̫#̛͡҉̭̝̙̟̘̩̬͖͎̘̞̭̖͔̪̼̠͢ͅ#̰̜̭̹̻̖̬̺͘͡#̛̬̣̳͔͔̘̟͜͢͟͡#̷̨̼̺̤̥̞́͢͡ ̢̞̬͙͍̬̪̪̰̰̰̙̮͙͚͕̩̟͇̕͜ͅ#̶͙̣̣̦͈͈̫̕͡#̸̡̥̹̮͇̱̱͍͜͜͢#̵̢̧̦͙̮̮͔͖̞̮͚͞#̧̗̤̱̪̜͓̠͖̞̰͍͢#̧̱̳̻̖̝͇͜͞#̛́҉͍̩̞̬͔̬̪̻̯̩#̷̴̨̙͚̹̘̜̗͔̺͖̳̕͜#̶̬͖͙̠̜̲̱̲͙̻̙̩̹̳̪̠̖́̕͟͞ͅ</p> - </div></td> - </tr> - </table> - <h1 id="copyright">Copyright 1998 12padams</h1> - </body> -</html></value> - </data> - <data name="google_HTML" xml:space="preserve"> - <value><html> - <head> - <meta charset="utf-8" /> - <title>GOOGLE</title> - <style> - a { - color: blue; - text-decoration: underline; - cursor: pointer; - } - </style> - </head> - <body> - <h1>Welcome to Google</h1> - <a id="prototype">Google Search Engine Prototype</a> - <br /> - <a id="alpha">Might-work-some-of-the-time-prototype that is much more up to date.</a> - </body> -</html></value> - </data> - <data name="prototype_HTML" xml:space="preserve"> - <value><html> - <head> - <meta charset="utf-8" /> - <title>PROTOTYPE</title> - <style> - a { - color: blue; - text-decoration: underline; - cursor: pointer; - } - </style> - </head> - <body bgcolor="#FFFFFF"> - <center> - <img src="file:///C:/TimeHack/Data/google.jpg" width="351" height="113"><br> - <table border="0" cellspacing="0" cellpadding="5" width="70%"> - <tr> - <td bgcolor="#EEEEEE"> - <center> - Search the web using Google!<br> - <input type="text" name="query" value="" size="40"><br> - <select name="num"> - <option value="10" selected>10 results - <option value="30">30 results - <option value="100">100 results - </select> - <button id="search">Google Search</button> - <button id="lucky">I'm feeling lucky</button> <br> - <i>Index contains ~25 million pages (soon to be much bigger)</i> - </center> - </td> - </tr> - <tr> - <td> - <center> - <h2><a>About Google!</a></h2> - <a> - Stanford - Search - </a> <a>Linux Search</a> - </center> - </td> - </tr> - <tr align="LEFT"> - <td valign="CENTER" bgcolor="#EEEEEE" width="100%"> - <center>Get Google! updates monthly!</center> - </td> - </tr> - - <tr align="LEFT"> - <td bgcolor="#EEEEEE"> - <center> - <input type="text" name="emailaddr" value="your e-mail" size="18"> - <input type="submit" name="SubmitAction" value="Subscribe"><font size="-1">&nbsp;&nbsp;<a>Archive</a></font> - </center> - </td> - </tr> - </table> - </center> - - <center><font size="-1">Copyright &copy;1997-8 Stanford University</font></center> - - </body> -</html></value> - </data> + </metadata> </root>
\ No newline at end of file diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicInstaller.Designer.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicInstaller.Designer.cs index 167fd42..64da2e9 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicInstaller.Designer.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicInstaller.Designer.cs @@ -31,19 +31,26 @@ this.components = new System.ComponentModel.Container(); System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WinClassicInstaller)); this.installerproccess = new System.Windows.Forms.Panel(); + this.PictureBox5 = new System.Windows.Forms.PictureBox(); this.Panel5 = new System.Windows.Forms.Panel(); + this.PictureBox4 = new System.Windows.Forms.PictureBox(); + this.PictureBox2 = new System.Windows.Forms.PictureBox(); this.Label9 = new System.Windows.Forms.Label(); this.Label13 = new System.Windows.Forms.Label(); this.Label14 = new System.Windows.Forms.Label(); this.ProgressBar1 = new System.Windows.Forms.ProgressBar(); this.Complete = new System.Windows.Forms.Panel(); + this.PictureBox3 = new System.Windows.Forms.PictureBox(); this.Panel6 = new System.Windows.Forms.Panel(); + this.finishinstallimage = new System.Windows.Forms.PictureBox(); this.Label17 = new System.Windows.Forms.Label(); this.Label16 = new System.Windows.Forms.Label(); this.Label18 = new System.Windows.Forms.Label(); this.welcome = new System.Windows.Forms.Panel(); + this.PictureBox9 = new System.Windows.Forms.PictureBox(); this.Label1 = new System.Windows.Forms.Label(); this.programimage = new System.Windows.Forms.Panel(); + this.installimage = new System.Windows.Forms.PictureBox(); this.Label3 = new System.Windows.Forms.Label(); this.Label2 = new System.Windows.Forms.Label(); this.Label4 = new System.Windows.Forms.Label(); @@ -63,65 +70,58 @@ this.Panel7 = new System.Windows.Forms.Panel(); this.Panel9 = new System.Windows.Forms.Panel(); this.Panel2 = new System.Windows.Forms.Panel(); + this.iconpic = new System.Windows.Forms.PictureBox(); this.installname = new System.Windows.Forms.Label(); this.Button3 = new System.Windows.Forms.Button(); this.Button2 = new System.Windows.Forms.Button(); this.Button1 = new System.Windows.Forms.Button(); this.licenseagreement = new System.Windows.Forms.Panel(); + this.PictureBox8 = new System.Windows.Forms.PictureBox(); + this.PictureBox1 = new System.Windows.Forms.PictureBox(); this.Panel3 = new System.Windows.Forms.Panel(); + this.licenceagreementinstallpic = new System.Windows.Forms.PictureBox(); this.Label6 = new System.Windows.Forms.Label(); this.Label5 = new System.Windows.Forms.Label(); this.RadioButton2 = new System.Windows.Forms.RadioButton(); this.RadioButton1 = new System.Windows.Forms.RadioButton(); this.TextBox3 = new System.Windows.Forms.TextBox(); this.summary = new System.Windows.Forms.Panel(); + this.PictureBox7 = new System.Windows.Forms.PictureBox(); this.Panel4 = new System.Windows.Forms.Panel(); + this.PictureBox6 = new System.Windows.Forms.PictureBox(); + this.suminstallpic = new System.Windows.Forms.PictureBox(); this.Label7 = new System.Windows.Forms.Label(); this.Label12 = new System.Windows.Forms.Label(); this.Label11 = new System.Windows.Forms.Label(); this.Label10 = new System.Windows.Forms.Label(); this.Label8 = new System.Windows.Forms.Label(); - this.iconpic = new System.Windows.Forms.PictureBox(); - this.PictureBox8 = new System.Windows.Forms.PictureBox(); - this.PictureBox1 = new System.Windows.Forms.PictureBox(); - this.licenceagreementinstallpic = new System.Windows.Forms.PictureBox(); - this.PictureBox7 = new System.Windows.Forms.PictureBox(); - this.PictureBox6 = new System.Windows.Forms.PictureBox(); - this.suminstallpic = new System.Windows.Forms.PictureBox(); - this.PictureBox5 = new System.Windows.Forms.PictureBox(); - this.PictureBox4 = new System.Windows.Forms.PictureBox(); - this.PictureBox2 = new System.Windows.Forms.PictureBox(); - this.PictureBox3 = new System.Windows.Forms.PictureBox(); - this.finishinstallimage = new System.Windows.Forms.PictureBox(); - this.PictureBox9 = new System.Windows.Forms.PictureBox(); - this.installimage = new System.Windows.Forms.PictureBox(); this.installerproccess.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox5)).BeginInit(); this.Panel5.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox2)).BeginInit(); this.Complete.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox3)).BeginInit(); this.Panel6.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.finishinstallimage)).BeginInit(); this.welcome.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox9)).BeginInit(); this.programimage.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.installimage)).BeginInit(); this.program.SuspendLayout(); this.Panel1.SuspendLayout(); this.Panel2.SuspendLayout(); - this.licenseagreement.SuspendLayout(); - this.Panel3.SuspendLayout(); - this.summary.SuspendLayout(); - this.Panel4.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.iconpic)).BeginInit(); + this.licenseagreement.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.PictureBox8)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.PictureBox1)).BeginInit(); + this.Panel3.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.licenceagreementinstallpic)).BeginInit(); + this.summary.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.PictureBox7)).BeginInit(); + this.Panel4.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.PictureBox6)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.suminstallpic)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.PictureBox5)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.PictureBox4)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.PictureBox2)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.PictureBox3)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.finishinstallimage)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.PictureBox9)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.installimage)).BeginInit(); this.SuspendLayout(); // // installerproccess @@ -135,6 +135,15 @@ this.installerproccess.Size = new System.Drawing.Size(564, 342); this.installerproccess.TabIndex = 15; // + // PictureBox5 + // + this.PictureBox5.Dock = System.Windows.Forms.DockStyle.Bottom; + this.PictureBox5.Location = new System.Drawing.Point(0, 340); + this.PictureBox5.Name = "PictureBox5"; + this.PictureBox5.Size = new System.Drawing.Size(564, 2); + this.PictureBox5.TabIndex = 22; + this.PictureBox5.TabStop = false; + // // Panel5 // this.Panel5.BackColor = System.Drawing.Color.White; @@ -148,6 +157,25 @@ this.Panel5.Size = new System.Drawing.Size(564, 55); this.Panel5.TabIndex = 21; // + // PictureBox4 + // + this.PictureBox4.Dock = System.Windows.Forms.DockStyle.Bottom; + this.PictureBox4.Location = new System.Drawing.Point(0, 53); + this.PictureBox4.Name = "PictureBox4"; + this.PictureBox4.Size = new System.Drawing.Size(564, 2); + this.PictureBox4.TabIndex = 8; + this.PictureBox4.TabStop = false; + // + // PictureBox2 + // + this.PictureBox2.Anchor = System.Windows.Forms.AnchorStyles.Right; + this.PictureBox2.Location = new System.Drawing.Point(512, 4); + this.PictureBox2.Name = "PictureBox2"; + this.PictureBox2.Size = new System.Drawing.Size(48, 48); + this.PictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.PictureBox2.TabIndex = 2; + this.PictureBox2.TabStop = false; + // // Label9 // this.Label9.AutoSize = true; @@ -196,6 +224,15 @@ this.Complete.Size = new System.Drawing.Size(564, 342); this.Complete.TabIndex = 17; // + // PictureBox3 + // + this.PictureBox3.Dock = System.Windows.Forms.DockStyle.Bottom; + this.PictureBox3.Location = new System.Drawing.Point(180, 340); + this.PictureBox3.Name = "PictureBox3"; + this.PictureBox3.Size = new System.Drawing.Size(384, 2); + this.PictureBox3.TabIndex = 16; + this.PictureBox3.TabStop = false; + // // Panel6 // this.Panel6.Controls.Add(this.finishinstallimage); @@ -205,6 +242,16 @@ this.Panel6.Size = new System.Drawing.Size(180, 342); this.Panel6.TabIndex = 15; // + // finishinstallimage + // + this.finishinstallimage.Dock = System.Windows.Forms.DockStyle.Fill; + this.finishinstallimage.Location = new System.Drawing.Point(0, 0); + this.finishinstallimage.Name = "finishinstallimage"; + this.finishinstallimage.Size = new System.Drawing.Size(180, 342); + this.finishinstallimage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.finishinstallimage.TabIndex = 0; + this.finishinstallimage.TabStop = false; + // // Label17 // this.Label17.AutoSize = true; @@ -249,6 +296,15 @@ this.welcome.Size = new System.Drawing.Size(564, 342); this.welcome.TabIndex = 14; // + // PictureBox9 + // + this.PictureBox9.Dock = System.Windows.Forms.DockStyle.Bottom; + this.PictureBox9.Location = new System.Drawing.Point(180, 338); + this.PictureBox9.Name = "PictureBox9"; + this.PictureBox9.Size = new System.Drawing.Size(382, 2); + this.PictureBox9.TabIndex = 16; + this.PictureBox9.TabStop = false; + // // Label1 // this.Label1.AutoSize = true; @@ -268,6 +324,16 @@ this.programimage.Size = new System.Drawing.Size(180, 340); this.programimage.TabIndex = 14; // + // installimage + // + this.installimage.Dock = System.Windows.Forms.DockStyle.Fill; + this.installimage.Location = new System.Drawing.Point(0, 0); + this.installimage.Name = "installimage"; + this.installimage.Size = new System.Drawing.Size(180, 340); + this.installimage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.installimage.TabIndex = 0; + this.installimage.TabStop = false; + // // Label3 // this.Label3.AutoSize = true; @@ -431,6 +497,15 @@ this.Panel2.Size = new System.Drawing.Size(573, 421); this.Panel2.TabIndex = 21; // + // iconpic + // + this.iconpic.Location = new System.Drawing.Point(96, 350); + this.iconpic.Name = "iconpic"; + this.iconpic.Size = new System.Drawing.Size(60, 31); + this.iconpic.TabIndex = 19; + this.iconpic.TabStop = false; + this.iconpic.Visible = false; + // // installname // this.installname.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); @@ -452,21 +527,21 @@ this.Button3.UseVisualStyleBackColor = true; this.Button3.Click += new System.EventHandler(this.Button3_Click); // - // ForwardButton + // Button2 // this.Button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.Button2.Location = new System.Drawing.Point(323, 390); - this.Button2.Name = "ForwardButton"; + this.Button2.Name = "Button2"; this.Button2.Size = new System.Drawing.Size(75, 23); this.Button2.TabIndex = 11; this.Button2.Text = "< Back"; this.Button2.UseVisualStyleBackColor = true; // - // BackButton + // Button1 // this.Button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.Button1.Location = new System.Drawing.Point(485, 390); - this.Button1.Name = "BackButton"; + this.Button1.Name = "Button1"; this.Button1.Size = new System.Drawing.Size(75, 23); this.Button1.TabIndex = 10; this.Button1.Text = "Cancel"; @@ -487,6 +562,24 @@ this.licenseagreement.Size = new System.Drawing.Size(564, 342); this.licenseagreement.TabIndex = 15; // + // PictureBox8 + // + this.PictureBox8.Dock = System.Windows.Forms.DockStyle.Bottom; + this.PictureBox8.Location = new System.Drawing.Point(0, 340); + this.PictureBox8.Name = "PictureBox8"; + this.PictureBox8.Size = new System.Drawing.Size(564, 2); + this.PictureBox8.TabIndex = 9; + this.PictureBox8.TabStop = false; + // + // PictureBox1 + // + this.PictureBox1.Dock = System.Windows.Forms.DockStyle.Top; + this.PictureBox1.Location = new System.Drawing.Point(0, 55); + this.PictureBox1.Name = "PictureBox1"; + this.PictureBox1.Size = new System.Drawing.Size(564, 2); + this.PictureBox1.TabIndex = 7; + this.PictureBox1.TabStop = false; + // // Panel3 // this.Panel3.BackColor = System.Drawing.Color.White; @@ -499,6 +592,16 @@ this.Panel3.Size = new System.Drawing.Size(564, 55); this.Panel3.TabIndex = 6; // + // licenceagreementinstallpic + // + this.licenceagreementinstallpic.Anchor = System.Windows.Forms.AnchorStyles.Right; + this.licenceagreementinstallpic.Location = new System.Drawing.Point(512, 4); + this.licenceagreementinstallpic.Name = "licenceagreementinstallpic"; + this.licenceagreementinstallpic.Size = new System.Drawing.Size(48, 48); + this.licenceagreementinstallpic.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.licenceagreementinstallpic.TabIndex = 2; + this.licenceagreementinstallpic.TabStop = false; + // // Label6 // this.Label6.AutoSize = true; @@ -551,7 +654,7 @@ this.TextBox3.Name = "TextBox3"; this.TextBox3.Size = new System.Drawing.Size(424, 39); this.TextBox3.TabIndex = 2; - this.TextBox3.Text = "Please read the following licence agreement, use the scroll bar to view the rest " + + this.TextBox3.Text = "Please read the following license agreement, use the scroll bar to view the rest " + "of this agreement"; // // summary @@ -566,6 +669,15 @@ this.summary.Size = new System.Drawing.Size(564, 342); this.summary.TabIndex = 16; // + // PictureBox7 + // + this.PictureBox7.Dock = System.Windows.Forms.DockStyle.Bottom; + this.PictureBox7.Location = new System.Drawing.Point(0, 340); + this.PictureBox7.Name = "PictureBox7"; + this.PictureBox7.Size = new System.Drawing.Size(564, 2); + this.PictureBox7.TabIndex = 9; + this.PictureBox7.TabStop = false; + // // Panel4 // this.Panel4.BackColor = System.Drawing.Color.White; @@ -579,6 +691,25 @@ this.Panel4.Size = new System.Drawing.Size(564, 55); this.Panel4.TabIndex = 7; // + // PictureBox6 + // + this.PictureBox6.Dock = System.Windows.Forms.DockStyle.Bottom; + this.PictureBox6.Location = new System.Drawing.Point(0, 53); + this.PictureBox6.Name = "PictureBox6"; + this.PictureBox6.Size = new System.Drawing.Size(564, 2); + this.PictureBox6.TabIndex = 9; + this.PictureBox6.TabStop = false; + // + // suminstallpic + // + this.suminstallpic.Anchor = System.Windows.Forms.AnchorStyles.Right; + this.suminstallpic.Location = new System.Drawing.Point(512, 4); + this.suminstallpic.Name = "suminstallpic"; + this.suminstallpic.Size = new System.Drawing.Size(48, 48); + this.suminstallpic.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.suminstallpic.TabIndex = 2; + this.suminstallpic.TabStop = false; + // // Label7 // this.Label7.AutoSize = true; @@ -627,137 +758,6 @@ this.Label8.TabIndex = 2; this.Label8.Text = "Guess The Number will be installed the following location:"; // - // iconpic - // - this.iconpic.Location = new System.Drawing.Point(96, 350); - this.iconpic.Name = "iconpic"; - this.iconpic.Size = new System.Drawing.Size(60, 31); - this.iconpic.TabIndex = 19; - this.iconpic.TabStop = false; - this.iconpic.Visible = false; - // - // PictureBox8 - // - this.PictureBox8.Dock = System.Windows.Forms.DockStyle.Bottom; - this.PictureBox8.Location = new System.Drawing.Point(0, 340); - this.PictureBox8.Name = "PictureBox8"; - this.PictureBox8.Size = new System.Drawing.Size(564, 2); - this.PictureBox8.TabIndex = 9; - this.PictureBox8.TabStop = false; - // - // PictureBox1 - // - this.PictureBox1.Dock = System.Windows.Forms.DockStyle.Top; - this.PictureBox1.Location = new System.Drawing.Point(0, 55); - this.PictureBox1.Name = "PictureBox1"; - this.PictureBox1.Size = new System.Drawing.Size(564, 2); - this.PictureBox1.TabIndex = 7; - this.PictureBox1.TabStop = false; - // - // licenceagreementinstallpic - // - this.licenceagreementinstallpic.Anchor = System.Windows.Forms.AnchorStyles.Right; - this.licenceagreementinstallpic.Location = new System.Drawing.Point(512, 4); - this.licenceagreementinstallpic.Name = "licenceagreementinstallpic"; - this.licenceagreementinstallpic.Size = new System.Drawing.Size(48, 48); - this.licenceagreementinstallpic.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.licenceagreementinstallpic.TabIndex = 2; - this.licenceagreementinstallpic.TabStop = false; - // - // PictureBox7 - // - this.PictureBox7.Dock = System.Windows.Forms.DockStyle.Bottom; - this.PictureBox7.Location = new System.Drawing.Point(0, 340); - this.PictureBox7.Name = "PictureBox7"; - this.PictureBox7.Size = new System.Drawing.Size(564, 2); - this.PictureBox7.TabIndex = 9; - this.PictureBox7.TabStop = false; - // - // PictureBox6 - // - this.PictureBox6.Dock = System.Windows.Forms.DockStyle.Bottom; - this.PictureBox6.Location = new System.Drawing.Point(0, 53); - this.PictureBox6.Name = "PictureBox6"; - this.PictureBox6.Size = new System.Drawing.Size(564, 2); - this.PictureBox6.TabIndex = 9; - this.PictureBox6.TabStop = false; - // - // suminstallpic - // - this.suminstallpic.Anchor = System.Windows.Forms.AnchorStyles.Right; - this.suminstallpic.Location = new System.Drawing.Point(512, 4); - this.suminstallpic.Name = "suminstallpic"; - this.suminstallpic.Size = new System.Drawing.Size(48, 48); - this.suminstallpic.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.suminstallpic.TabIndex = 2; - this.suminstallpic.TabStop = false; - // - // PictureBox5 - // - this.PictureBox5.Dock = System.Windows.Forms.DockStyle.Bottom; - this.PictureBox5.Location = new System.Drawing.Point(0, 340); - this.PictureBox5.Name = "PictureBox5"; - this.PictureBox5.Size = new System.Drawing.Size(564, 2); - this.PictureBox5.TabIndex = 22; - this.PictureBox5.TabStop = false; - // - // PictureBox4 - // - this.PictureBox4.Dock = System.Windows.Forms.DockStyle.Bottom; - this.PictureBox4.Location = new System.Drawing.Point(0, 53); - this.PictureBox4.Name = "PictureBox4"; - this.PictureBox4.Size = new System.Drawing.Size(564, 2); - this.PictureBox4.TabIndex = 8; - this.PictureBox4.TabStop = false; - // - // PictureBox2 - // - this.PictureBox2.Anchor = System.Windows.Forms.AnchorStyles.Right; - this.PictureBox2.Location = new System.Drawing.Point(512, 4); - this.PictureBox2.Name = "PictureBox2"; - this.PictureBox2.Size = new System.Drawing.Size(48, 48); - this.PictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.PictureBox2.TabIndex = 2; - this.PictureBox2.TabStop = false; - // - // PictureBox3 - // - this.PictureBox3.Dock = System.Windows.Forms.DockStyle.Bottom; - this.PictureBox3.Location = new System.Drawing.Point(180, 340); - this.PictureBox3.Name = "PictureBox3"; - this.PictureBox3.Size = new System.Drawing.Size(384, 2); - this.PictureBox3.TabIndex = 16; - this.PictureBox3.TabStop = false; - // - // finishinstallimage - // - this.finishinstallimage.Dock = System.Windows.Forms.DockStyle.Fill; - this.finishinstallimage.Location = new System.Drawing.Point(0, 0); - this.finishinstallimage.Name = "finishinstallimage"; - this.finishinstallimage.Size = new System.Drawing.Size(180, 342); - this.finishinstallimage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.finishinstallimage.TabIndex = 0; - this.finishinstallimage.TabStop = false; - // - // PictureBox9 - // - this.PictureBox9.Dock = System.Windows.Forms.DockStyle.Bottom; - this.PictureBox9.Location = new System.Drawing.Point(180, 338); - this.PictureBox9.Name = "PictureBox9"; - this.PictureBox9.Size = new System.Drawing.Size(382, 2); - this.PictureBox9.TabIndex = 16; - this.PictureBox9.TabStop = false; - // - // installimage - // - this.installimage.Dock = System.Windows.Forms.DockStyle.Fill; - this.installimage.Location = new System.Drawing.Point(0, 0); - this.installimage.Name = "installimage"; - this.installimage.Size = new System.Drawing.Size(180, 340); - this.installimage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; - this.installimage.TabIndex = 0; - this.installimage.TabStop = false; - // // WinClassicInstaller // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); @@ -768,40 +768,40 @@ this.Load += new System.EventHandler(this.WinClassicInstaller_Load); this.installerproccess.ResumeLayout(false); this.installerproccess.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox5)).EndInit(); this.Panel5.ResumeLayout(false); this.Panel5.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox2)).EndInit(); this.Complete.ResumeLayout(false); this.Complete.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox3)).EndInit(); this.Panel6.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.finishinstallimage)).EndInit(); this.welcome.ResumeLayout(false); this.welcome.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox9)).EndInit(); this.programimage.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.installimage)).EndInit(); this.program.ResumeLayout(false); this.Panel1.ResumeLayout(false); this.Panel2.ResumeLayout(false); this.Panel2.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.iconpic)).EndInit(); this.licenseagreement.ResumeLayout(false); this.licenseagreement.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox8)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox1)).EndInit(); this.Panel3.ResumeLayout(false); this.Panel3.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.licenceagreementinstallpic)).EndInit(); this.summary.ResumeLayout(false); this.summary.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox7)).EndInit(); this.Panel4.ResumeLayout(false); this.Panel4.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.iconpic)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.PictureBox8)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.PictureBox1)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.licenceagreementinstallpic)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.PictureBox7)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.PictureBox6)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.suminstallpic)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.PictureBox5)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.PictureBox4)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.PictureBox2)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.PictureBox3)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.finishinstallimage)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.PictureBox9)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.installimage)).EndInit(); this.ResumeLayout(false); } diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicInstaller.resx b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicInstaller.resx index cb7bdc8..33801ef 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicInstaller.resx +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicInstaller.resx @@ -135,18 +135,18 @@ <data name="TextBox4.Text" xml:space="preserve"> <value>By installing this software you agree that you will not try to reverse engineer it in anyway or claim it as your own work. -You agree that you will not try to spread this software or and of its components to other companies without rightful permission from the owner. +You agree that you will not try to spread this software or any of its components to other companies without rightful permission from the owner. -You agree that if you bought this program that you own it and that nobody else is allowed to use it on your computer or on there computer. +You agree that if you bought this program, you own it and that nobody else is allowed to use it on your computer or on their computer. You understand that trying to upload this software online or any other forms of spreading this software will result in the FBI coming into your home and killing you with knives. You agree that taking a picture of this software and sending it to someone will cause you to get 15 years in jail for software exposing. -You agree that if you tell someone else about this softwares features that you will wake up dead in the morning because the owner would have killed you in your sleep. +You agree that if you tell someone else about this software's features that you will wake up dead in the morning because the owner would have killed you in your sleep. You know that using this software will alert the maker of it and then cause him to monitor every moment of your life after you install this software. -You agree to all of the above and will not commit any of the crimes otherwise you will go to hell</value> +You agree to all of the above and will not commit any of the crimes otherwise you will go to Hell.</value> </data> </root>
\ No newline at end of file diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicNotepad.Designer.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicNotepad.Designer.cs index 04145dd..01cfdb3 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicNotepad.Designer.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicNotepad.Designer.cs @@ -66,7 +66,7 @@ this.helpToolStripMenuItem}); this.menuStrip1.Location = new System.Drawing.Point(0, 0); this.menuStrip1.Name = "menuStrip1"; - this.menuStrip1.Size = new System.Drawing.Size(401, 24); + this.menuStrip1.Size = new System.Drawing.Size(619, 24); this.menuStrip1.TabIndex = 0; this.menuStrip1.Text = "menuStrip1"; // @@ -324,7 +324,7 @@ this.mainText.Multiline = true; this.mainText.Name = "mainText"; this.mainText.ScrollBars = System.Windows.Forms.ScrollBars.Both; - this.mainText.Size = new System.Drawing.Size(401, 210); + this.mainText.Size = new System.Drawing.Size(619, 341); this.mainText.TabIndex = 1; this.mainText.WordWrap = false; // @@ -335,7 +335,7 @@ this.Controls.Add(this.mainText); this.Controls.Add(this.menuStrip1); this.Name = "WinClassicNotepad"; - this.Size = new System.Drawing.Size(401, 234); + this.Size = new System.Drawing.Size(619, 365); this.menuStrip1.ResumeLayout(false); this.menuStrip1.PerformLayout(); this.ResumeLayout(false); diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWordPad.Designer.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWordPad.Designer.cs index 94c3303..6f4f161 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWordPad.Designer.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicWordPad.Designer.cs @@ -266,7 +266,7 @@ // this.bulletStyleToolStripMenuItem.CheckOnClick = true; this.bulletStyleToolStripMenuItem.Name = "bulletStyleToolStripMenuItem"; - this.bulletStyleToolStripMenuItem.Size = new System.Drawing.Size(152, 22); + this.bulletStyleToolStripMenuItem.Size = new System.Drawing.Size(131, 22); this.bulletStyleToolStripMenuItem.Text = "Bullet style"; this.bulletStyleToolStripMenuItem.Click += new System.EventHandler(this.bulletStyleToolStripMenuItem_Click); // @@ -501,9 +501,9 @@ this.lblStatus.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblStatus.Location = new System.Drawing.Point(3, 1); this.lblStatus.Name = "lblStatus"; - this.lblStatus.Size = new System.Drawing.Size(210, 16); + this.lblStatus.Size = new System.Drawing.Size(213, 16); this.lblStatus.TabIndex = 0; - this.lblStatus.Text = "For Help, goto Help -> Help topics"; + this.lblStatus.Text = "For Help, go to Help -> Help topics"; // // WinClassicWordPad // diff --git a/TimeHACK.Main/OS/Win95/Win95TaskBarItem.Designer.cs b/TimeHACK.Main/OS/Win95/Win95TaskBarItem.Designer.cs index 71ccfde..c0977f2 100644 --- a/TimeHACK.Main/OS/Win95/Win95TaskBarItem.Designer.cs +++ b/TimeHACK.Main/OS/Win95/Win95TaskBarItem.Designer.cs @@ -28,44 +28,60 @@ /// </summary> private void InitializeComponent() { - this.progPic = new System.Windows.Forms.PictureBox(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Win95TaskBarItem)); this.progName = new System.Windows.Forms.Label(); + this.progPic = new System.Windows.Forms.PictureBox(); + this.panel1 = new System.Windows.Forms.Panel(); ((System.ComponentModel.ISupportInitialize)(this.progPic)).BeginInit(); + this.panel1.SuspendLayout(); this.SuspendLayout(); // - // progPic - // - this.progPic.Location = new System.Drawing.Point(3, 3); - this.progPic.Name = "progPic"; - this.progPic.Size = new System.Drawing.Size(28, 24); - this.progPic.TabIndex = 0; - this.progPic.TabStop = false; - this.progPic.Click += new System.EventHandler(this.Win95TaskBarItem_Click); - // // progName // this.progName.AutoSize = true; + this.progName.BackColor = System.Drawing.Color.Transparent; this.progName.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.progName.Location = new System.Drawing.Point(37, 3); + this.progName.Location = new System.Drawing.Point(18, 2); this.progName.Name = "progName"; this.progName.Size = new System.Drawing.Size(60, 24); this.progName.TabIndex = 1; this.progName.Text = "label1"; this.progName.Click += new System.EventHandler(this.Win95TaskBarItem_Click); // + // progPic + // + this.progPic.BackColor = System.Drawing.Color.Transparent; + this.progPic.Location = new System.Drawing.Point(3, 3); + this.progPic.Name = "progPic"; + this.progPic.Size = new System.Drawing.Size(16, 16); + this.progPic.TabIndex = 0; + this.progPic.TabStop = false; + this.progPic.Click += new System.EventHandler(this.Win95TaskBarItem_Click); + // + // panel1 + // + this.panel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel1.BackgroundImage"))); + this.panel1.Controls.Add(this.progName); + this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; + this.panel1.Location = new System.Drawing.Point(0, 0); + this.panel1.Name = "panel1"; + this.panel1.Size = new System.Drawing.Size(160, 22); + this.panel1.TabIndex = 2; + // // Win95TaskBarItem // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.Controls.Add(this.progName); this.Controls.Add(this.progPic); + this.Controls.Add(this.panel1); this.Name = "Win95TaskBarItem"; - this.Size = new System.Drawing.Size(193, 30); + this.Size = new System.Drawing.Size(160, 22); this.Load += new System.EventHandler(this.Win95TaskBarItem_Load); this.Click += new System.EventHandler(this.Win95TaskBarItem_Click); ((System.ComponentModel.ISupportInitialize)(this.progPic)).EndInit(); + this.panel1.ResumeLayout(false); + this.panel1.PerformLayout(); this.ResumeLayout(false); - this.PerformLayout(); } @@ -73,5 +89,6 @@ private System.Windows.Forms.PictureBox progPic; private System.Windows.Forms.Label progName; + private System.Windows.Forms.Panel panel1; } } diff --git a/TimeHACK.Main/OS/Win95/Win95TaskBarItem.cs b/TimeHACK.Main/OS/Win95/Win95TaskBarItem.cs index b193e38..b463a83 100644 --- a/TimeHACK.Main/OS/Win95/Win95TaskBarItem.cs +++ b/TimeHACK.Main/OS/Win95/Win95TaskBarItem.cs @@ -27,8 +27,7 @@ namespace TimeHACK.Engine.Template.Taskbars progName.Text = (string)this.Tag; progPic.Image = this.BackgroundImage; ApplicationID = (TaskBarController.AvalibleApplicationID - 1).ToString(); - this.BackgroundImage = null; - this.Width = (progName.Left + progName.Width); + this.BackgroundImage = null; } private void Win95TaskBarItem_Click(object sender, EventArgs e) diff --git a/TimeHACK.Main/OS/Win95/Win95TaskBarItem.resx b/TimeHACK.Main/OS/Win95/Win95TaskBarItem.resx index 1af7de1..bdcd158 100644 --- a/TimeHACK.Main/OS/Win95/Win95TaskBarItem.resx +++ b/TimeHACK.Main/OS/Win95/Win95TaskBarItem.resx @@ -117,4 +117,13 @@ <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> + <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> + <data name="panel1.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAAKAAAAAWCAIAAADIPgASAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wgAADsIBFShKgAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAABXSURBVGhD7dGx + EcAwDAMxja7RslniVN7hD2jI/uela44zD0W7K3CZwHECxwkcJ3CcwHECxwkcJ3CcwHECxwkcJ3CcwHEC + xwkcJ3CcwHE38Hkk/YEpm/kAYtNZ26573kYAAAAASUVORK5CYII= +</value> + </data> </root>
\ No newline at end of file diff --git a/TimeHACK.Main/OS/Win98/Win98.Designer.cs b/TimeHACK.Main/OS/Win98/Win98.Designer.cs new file mode 100644 index 0000000..484c931 --- /dev/null +++ b/TimeHACK.Main/OS/Win98/Win98.Designer.cs @@ -0,0 +1,1007 @@ +namespace TimeHACK.OS.Win98 +{ + partial class Win98 + { + /// <summary> + /// Required designer variable. + /// </summary> + private System.ComponentModel.IContainer components = null; + + /// <summary> + /// Clean up any resources being used. + /// </summary> + /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// <summary> + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// </summary> + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Win98)); + System.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem("My Computer", 0); + System.Windows.Forms.ListViewItem listViewItem2 = new System.Windows.Forms.ListViewItem("Network Neighborhood", 5); + System.Windows.Forms.ListViewItem listViewItem3 = new System.Windows.Forms.ListViewItem("Inbox", 3); + System.Windows.Forms.ListViewItem listViewItem4 = new System.Windows.Forms.ListViewItem("Recycle Bin", 7); + System.Windows.Forms.ListViewItem listViewItem5 = new System.Windows.Forms.ListViewItem("Internet Explorer", 2); + System.Windows.Forms.ListViewItem listViewItem6 = new System.Windows.Forms.ListViewItem("Online Services", 1); + System.Windows.Forms.ListViewItem listViewItem7 = new System.Windows.Forms.ListViewItem("Set Up The Microsoft Network", 4); + System.Windows.Forms.ListViewItem listViewItem8 = new System.Windows.Forms.ListViewItem("Outlook Express", 6); + this.taskbar = new System.Windows.Forms.Panel(); + this.clockPanel = new System.Windows.Forms.Panel(); + this.taskbartime = new System.Windows.Forms.Label(); + this.taskbarItems = new System.Windows.Forms.Panel(); + this.startbutton = new System.Windows.Forms.PictureBox(); + this.startmenu = new System.Windows.Forms.Panel(); + this.startmenuitems = new System.Windows.Forms.MenuStrip(); + this.ProgramsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.AccessoriesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.CommunicationsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.InternetConnectionWizardToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.NetMeetingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.MultimediaToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.CDPlayerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SoundRecorderToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.VolumeControlToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.WindowsMediaPlayerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SystemToolsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.DiskDefragmenterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ScanDiskToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.AddressBookToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.CalculatorToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.HyperTerminalToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ImagingToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.NotePadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.OnlineRegistrationToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.PaintToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.PhoneDialerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.WordPadToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.StartUpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.AOLInternetFREETrialToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ATTWorldNetSignupToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SetupCompuServe30ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SetupWOWFromCompuServeToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.MSDOSPromptToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.EmptyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.InternetExplorerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.MSDOSPromptToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); + this.OutlookExpressToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.WindowsExplorerToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); + this.GuessTheNumberToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.StartRunnerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ErrorBlasterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SkindowsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.WebChatToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.TimeDistorterToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.DocumentsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.windowManagerTestToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.downloaderTestToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.installerTestToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ControlPanelToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.PrintersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.TaskbarToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.FindToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.FilesOrFoldersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ComputerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.OnTheInternetToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.PeopleToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.HelpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.RunToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.SuspendToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ShutdownToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); + this.ossidestartmenu = new System.Windows.Forms.Panel(); + this.osimage = new System.Windows.Forms.PictureBox(); + this.desktopicons = new System.Windows.Forms.ListView(); + this.taskbar.SuspendLayout(); + this.clockPanel.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.startbutton)).BeginInit(); + this.startmenu.SuspendLayout(); + this.startmenuitems.SuspendLayout(); + this.ossidestartmenu.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.osimage)).BeginInit(); + this.SuspendLayout(); + // + // taskbar + // + this.taskbar.BackColor = System.Drawing.Color.Silver; + this.taskbar.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("taskbar.BackgroundImage"))); + this.taskbar.Controls.Add(this.clockPanel); + this.taskbar.Controls.Add(this.taskbarItems); + this.taskbar.Controls.Add(this.startbutton); + this.taskbar.Dock = System.Windows.Forms.DockStyle.Bottom; + this.taskbar.Location = new System.Drawing.Point(0, 452); + this.taskbar.Name = "taskbar"; + this.taskbar.Size = new System.Drawing.Size(640, 28); + this.taskbar.TabIndex = 3; + // + // clockPanel + // + this.clockPanel.BackgroundImage = global::TimeHACK.Properties.Resources.WinClassicTime; + this.clockPanel.Controls.Add(this.taskbartime); + this.clockPanel.Dock = System.Windows.Forms.DockStyle.Right; + this.clockPanel.Location = new System.Drawing.Point(575, 0); + this.clockPanel.Name = "clockPanel"; + this.clockPanel.Size = new System.Drawing.Size(65, 28); + this.clockPanel.TabIndex = 4; + // + // taskbartime + // + this.taskbartime.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.taskbartime.AutoSize = true; + this.taskbartime.BackColor = System.Drawing.Color.Transparent; + this.taskbartime.Location = new System.Drawing.Point(10, 7); + this.taskbartime.Name = "taskbartime"; + this.taskbartime.Size = new System.Drawing.Size(26, 13); + this.taskbartime.TabIndex = 2; + this.taskbartime.Text = "time"; + // + // taskbarItems + // + this.taskbarItems.BackColor = System.Drawing.Color.Transparent; + this.taskbarItems.Cursor = System.Windows.Forms.Cursors.Default; + this.taskbarItems.Location = new System.Drawing.Point(63, 4); + this.taskbarItems.Name = "taskbarItems"; + this.taskbarItems.Size = new System.Drawing.Size(3648, 22); + this.taskbarItems.TabIndex = 5; + // + // startbutton + // + this.startbutton.Image = ((System.Drawing.Image)(resources.GetObject("startbutton.Image"))); + this.startbutton.Location = new System.Drawing.Point(2, 4); + this.startbutton.Name = "startbutton"; + this.startbutton.Size = new System.Drawing.Size(54, 22); + this.startbutton.TabIndex = 3; + this.startbutton.TabStop = false; + // + // startmenu + // + this.startmenu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.startmenu.BackColor = System.Drawing.Color.Silver; + this.startmenu.Controls.Add(this.startmenuitems); + this.startmenu.Controls.Add(this.ossidestartmenu); + this.startmenu.Location = new System.Drawing.Point(0, 160); + this.startmenu.Name = "startmenu"; + this.startmenu.Size = new System.Drawing.Size(174, 300); + this.startmenu.TabIndex = 4; + // + // startmenuitems + // + this.startmenuitems.BackColor = System.Drawing.Color.Silver; + this.startmenuitems.Dock = System.Windows.Forms.DockStyle.None; + this.startmenuitems.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ProgramsToolStripMenuItem, + this.DocumentsToolStripMenuItem, + this.SettingsToolStripMenuItem, + this.FindToolStripMenuItem, + this.HelpToolStripMenuItem, + this.RunToolStripMenuItem, + this.SuspendToolStripMenuItem, + this.ShutdownToolStripMenuItem}); + this.startmenuitems.LayoutStyle = System.Windows.Forms.ToolStripLayoutStyle.VerticalStackWithOverflow; + this.startmenuitems.Location = new System.Drawing.Point(28, 2); + this.startmenuitems.Margin = new System.Windows.Forms.Padding(0, 0, 5, 0); + this.startmenuitems.Name = "startmenuitems"; + this.startmenuitems.Padding = new System.Windows.Forms.Padding(6, 2, 0, 0); + this.startmenuitems.RenderMode = System.Windows.Forms.ToolStripRenderMode.System; + this.startmenuitems.Size = new System.Drawing.Size(141, 292); + this.startmenuitems.TabIndex = 0; + this.startmenuitems.Text = "StartMenu"; + // + // ProgramsToolStripMenuItem + // + this.ProgramsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.ProgramsToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.ProgramsToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.ProgramsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.AccessoriesToolStripMenuItem, + this.StartUpToolStripMenuItem, + this.MSDOSPromptToolStripMenuItem, + this.InternetExplorerToolStripMenuItem, + this.MSDOSPromptToolStripMenuItem1, + this.OutlookExpressToolStripMenuItem, + this.WindowsExplorerToolStripMenuItem1, + this.GuessTheNumberToolStripMenuItem, + this.StartRunnerToolStripMenuItem, + this.ErrorBlasterToolStripMenuItem, + this.SkindowsToolStripMenuItem, + this.WebChatToolStripMenuItem, + this.TimeDistorterToolStripMenuItem}); + this.ProgramsToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicPrograms; + this.ProgramsToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.ProgramsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.ProgramsToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Silver; + this.ProgramsToolStripMenuItem.Name = "ProgramsToolStripMenuItem"; + this.ProgramsToolStripMenuItem.Padding = new System.Windows.Forms.Padding(4, 0, 25, 0); + this.ProgramsToolStripMenuItem.Size = new System.Drawing.Size(134, 36); + this.ProgramsToolStripMenuItem.Text = "Programs"; + // + // AccessoriesToolStripMenuItem + // + this.AccessoriesToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.AccessoriesToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.AccessoriesToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.AccessoriesToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.CommunicationsToolStripMenuItem, + this.MultimediaToolStripMenuItem, + this.SystemToolsToolStripMenuItem, + this.AddressBookToolStripMenuItem, + this.CalculatorToolStripMenuItem, + this.HyperTerminalToolStripMenuItem, + this.ImagingToolStripMenuItem, + this.NotePadToolStripMenuItem, + this.OnlineRegistrationToolStripMenuItem, + this.PaintToolStripMenuItem, + this.PhoneDialerToolStripMenuItem, + this.WordPadToolStripMenuItem}); + this.AccessoriesToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicProgramItem; + this.AccessoriesToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.AccessoriesToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.AccessoriesToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Silver; + this.AccessoriesToolStripMenuItem.Name = "AccessoriesToolStripMenuItem"; + this.AccessoriesToolStripMenuItem.Size = new System.Drawing.Size(181, 28); + this.AccessoriesToolStripMenuItem.Text = "Accessories"; + // + // CommunicationsToolStripMenuItem + // + this.CommunicationsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.CommunicationsToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.CommunicationsToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.CommunicationsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.InternetConnectionWizardToolStripMenuItem, + this.NetMeetingToolStripMenuItem}); + this.CommunicationsToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicProgramItem; + this.CommunicationsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.CommunicationsToolStripMenuItem.Name = "CommunicationsToolStripMenuItem"; + this.CommunicationsToolStripMenuItem.Size = new System.Drawing.Size(181, 28); + this.CommunicationsToolStripMenuItem.Text = "Communications"; + // + // InternetConnectionWizardToolStripMenuItem + // + this.InternetConnectionWizardToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.InternetConnectionWizardToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.InternetConnectionWizardToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.InternetConnectionWizardToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("InternetConnectionWizardToolStripMenuItem.Image"))); + this.InternetConnectionWizardToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.InternetConnectionWizardToolStripMenuItem.Name = "InternetConnectionWizardToolStripMenuItem"; + this.InternetConnectionWizardToolStripMenuItem.Size = new System.Drawing.Size(219, 22); + this.InternetConnectionWizardToolStripMenuItem.Text = "Internet Connection Wizard"; + // + // NetMeetingToolStripMenuItem + // + this.NetMeetingToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.NetMeetingToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.NetMeetingToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.NetMeetingToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("NetMeetingToolStripMenuItem.Image"))); + this.NetMeetingToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.NetMeetingToolStripMenuItem.Name = "NetMeetingToolStripMenuItem"; + this.NetMeetingToolStripMenuItem.Size = new System.Drawing.Size(219, 22); + this.NetMeetingToolStripMenuItem.Text = "NetMeeting"; + // + // MultimediaToolStripMenuItem + // + this.MultimediaToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.MultimediaToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.MultimediaToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.MultimediaToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.CDPlayerToolStripMenuItem, + this.SoundRecorderToolStripMenuItem, + this.VolumeControlToolStripMenuItem, + this.WindowsMediaPlayerToolStripMenuItem}); + this.MultimediaToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicProgramItem; + this.MultimediaToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.MultimediaToolStripMenuItem.Name = "MultimediaToolStripMenuItem"; + this.MultimediaToolStripMenuItem.Size = new System.Drawing.Size(181, 28); + this.MultimediaToolStripMenuItem.Text = "Multimedia"; + // + // CDPlayerToolStripMenuItem + // + this.CDPlayerToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.CDPlayerToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.CDPlayerToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.CDPlayerToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("CDPlayerToolStripMenuItem.Image"))); + this.CDPlayerToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.CDPlayerToolStripMenuItem.Name = "CDPlayerToolStripMenuItem"; + this.CDPlayerToolStripMenuItem.Size = new System.Drawing.Size(194, 22); + this.CDPlayerToolStripMenuItem.Text = "CD Player"; + // + // SoundRecorderToolStripMenuItem + // + this.SoundRecorderToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.SoundRecorderToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.SoundRecorderToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.SoundRecorderToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("SoundRecorderToolStripMenuItem.Image"))); + this.SoundRecorderToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.SoundRecorderToolStripMenuItem.Name = "SoundRecorderToolStripMenuItem"; + this.SoundRecorderToolStripMenuItem.Size = new System.Drawing.Size(194, 22); + this.SoundRecorderToolStripMenuItem.Text = "Sound Recorder"; + // + // VolumeControlToolStripMenuItem + // + this.VolumeControlToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.VolumeControlToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.VolumeControlToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.VolumeControlToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("VolumeControlToolStripMenuItem.Image"))); + this.VolumeControlToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.VolumeControlToolStripMenuItem.Name = "VolumeControlToolStripMenuItem"; + this.VolumeControlToolStripMenuItem.Size = new System.Drawing.Size(194, 22); + this.VolumeControlToolStripMenuItem.Text = "Volume Control"; + // + // WindowsMediaPlayerToolStripMenuItem + // + this.WindowsMediaPlayerToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.WindowsMediaPlayerToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.WindowsMediaPlayerToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.WindowsMediaPlayerToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("WindowsMediaPlayerToolStripMenuItem.Image"))); + this.WindowsMediaPlayerToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.WindowsMediaPlayerToolStripMenuItem.Name = "WindowsMediaPlayerToolStripMenuItem"; + this.WindowsMediaPlayerToolStripMenuItem.Size = new System.Drawing.Size(194, 22); + this.WindowsMediaPlayerToolStripMenuItem.Text = "Windows Media Player"; + // + // SystemToolsToolStripMenuItem + // + this.SystemToolsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.SystemToolsToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.SystemToolsToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.SystemToolsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.DiskDefragmenterToolStripMenuItem, + this.ScanDiskToolStripMenuItem}); + this.SystemToolsToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicProgramItem; + this.SystemToolsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.SystemToolsToolStripMenuItem.Name = "SystemToolsToolStripMenuItem"; + this.SystemToolsToolStripMenuItem.Size = new System.Drawing.Size(181, 28); + this.SystemToolsToolStripMenuItem.Text = "System Tools"; + // + // DiskDefragmenterToolStripMenuItem + // + this.DiskDefragmenterToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.DiskDefragmenterToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.DiskDefragmenterToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.DiskDefragmenterToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("DiskDefragmenterToolStripMenuItem.Image"))); + this.DiskDefragmenterToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.DiskDefragmenterToolStripMenuItem.Name = "DiskDefragmenterToolStripMenuItem"; + this.DiskDefragmenterToolStripMenuItem.Size = new System.Drawing.Size(172, 22); + this.DiskDefragmenterToolStripMenuItem.Text = "Disk Defragmenter"; + // + // ScanDiskToolStripMenuItem + // + this.ScanDiskToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.ScanDiskToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.ScanDiskToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.ScanDiskToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("ScanDiskToolStripMenuItem.Image"))); + this.ScanDiskToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.ScanDiskToolStripMenuItem.Name = "ScanDiskToolStripMenuItem"; + this.ScanDiskToolStripMenuItem.Size = new System.Drawing.Size(172, 22); + this.ScanDiskToolStripMenuItem.Text = "ScanDisk"; + // + // AddressBookToolStripMenuItem + // + this.AddressBookToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.AddressBookToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.AddressBookToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.AddressBookToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("AddressBookToolStripMenuItem.Image"))); + this.AddressBookToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.AddressBookToolStripMenuItem.Name = "AddressBookToolStripMenuItem"; + this.AddressBookToolStripMenuItem.Size = new System.Drawing.Size(181, 28); + this.AddressBookToolStripMenuItem.Text = "Address Book"; + // + // CalculatorToolStripMenuItem + // + this.CalculatorToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.CalculatorToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.CalculatorToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.CalculatorToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("CalculatorToolStripMenuItem.Image"))); + this.CalculatorToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.CalculatorToolStripMenuItem.Name = "CalculatorToolStripMenuItem"; + this.CalculatorToolStripMenuItem.Size = new System.Drawing.Size(181, 28); + this.CalculatorToolStripMenuItem.Text = "Calculator"; + // + // HyperTerminalToolStripMenuItem + // + this.HyperTerminalToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.HyperTerminalToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.HyperTerminalToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.HyperTerminalToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicFolderSmall; + this.HyperTerminalToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.HyperTerminalToolStripMenuItem.Name = "HyperTerminalToolStripMenuItem"; + this.HyperTerminalToolStripMenuItem.Size = new System.Drawing.Size(181, 28); + this.HyperTerminalToolStripMenuItem.Text = "HyperTerminal"; + // + // ImagingToolStripMenuItem + // + this.ImagingToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.ImagingToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.ImagingToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.ImagingToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("ImagingToolStripMenuItem.Image"))); + this.ImagingToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.ImagingToolStripMenuItem.Name = "ImagingToolStripMenuItem"; + this.ImagingToolStripMenuItem.Size = new System.Drawing.Size(181, 28); + this.ImagingToolStripMenuItem.Text = "Imaging"; + // + // NotePadToolStripMenuItem + // + this.NotePadToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.NotePadToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.NotePadToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.NotePadToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("NotePadToolStripMenuItem.Image"))); + this.NotePadToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.NotePadToolStripMenuItem.Name = "NotePadToolStripMenuItem"; + this.NotePadToolStripMenuItem.Size = new System.Drawing.Size(181, 28); + this.NotePadToolStripMenuItem.Text = "NotePad"; + // + // OnlineRegistrationToolStripMenuItem + // + this.OnlineRegistrationToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.OnlineRegistrationToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.OnlineRegistrationToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.OnlineRegistrationToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("OnlineRegistrationToolStripMenuItem.Image"))); + this.OnlineRegistrationToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.OnlineRegistrationToolStripMenuItem.Name = "OnlineRegistrationToolStripMenuItem"; + this.OnlineRegistrationToolStripMenuItem.Size = new System.Drawing.Size(181, 28); + this.OnlineRegistrationToolStripMenuItem.Text = "Online Registration"; + // + // PaintToolStripMenuItem + // + this.PaintToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.PaintToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.PaintToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.PaintToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("PaintToolStripMenuItem.Image"))); + this.PaintToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.PaintToolStripMenuItem.Name = "PaintToolStripMenuItem"; + this.PaintToolStripMenuItem.Size = new System.Drawing.Size(181, 28); + this.PaintToolStripMenuItem.Text = "Paint"; + // + // PhoneDialerToolStripMenuItem + // + this.PhoneDialerToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.PhoneDialerToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.PhoneDialerToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.PhoneDialerToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("PhoneDialerToolStripMenuItem.Image"))); + this.PhoneDialerToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.PhoneDialerToolStripMenuItem.Name = "PhoneDialerToolStripMenuItem"; + this.PhoneDialerToolStripMenuItem.Size = new System.Drawing.Size(181, 28); + this.PhoneDialerToolStripMenuItem.Text = "Phone Dialer"; + // + // WordPadToolStripMenuItem + // + this.WordPadToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.WordPadToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.WordPadToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.WordPadToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("WordPadToolStripMenuItem.Image"))); + this.WordPadToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.WordPadToolStripMenuItem.Name = "WordPadToolStripMenuItem"; + this.WordPadToolStripMenuItem.Size = new System.Drawing.Size(181, 28); + this.WordPadToolStripMenuItem.Text = "WordPad"; + // + // StartUpToolStripMenuItem + // + this.StartUpToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.StartUpToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.StartUpToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.StartUpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.AOLInternetFREETrialToolStripMenuItem, + this.ATTWorldNetSignupToolStripMenuItem, + this.SetupCompuServe30ToolStripMenuItem, + this.SetupWOWFromCompuServeToolStripMenuItem}); + this.StartUpToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicProgramItem; + this.StartUpToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.StartUpToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.StartUpToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Silver; + this.StartUpToolStripMenuItem.Name = "StartUpToolStripMenuItem"; + this.StartUpToolStripMenuItem.Size = new System.Drawing.Size(181, 28); + this.StartUpToolStripMenuItem.Text = "Online Services"; + // + // AOLInternetFREETrialToolStripMenuItem + // + this.AOLInternetFREETrialToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.AOLInternetFREETrialToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.AOLInternetFREETrialToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.AOLInternetFREETrialToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.AOLInternetFREETrialToolStripMenuItem.Name = "AOLInternetFREETrialToolStripMenuItem"; + this.AOLInternetFREETrialToolStripMenuItem.Size = new System.Drawing.Size(241, 22); + this.AOLInternetFREETrialToolStripMenuItem.Text = "AOL & Internet FREE Trial!"; + // + // ATTWorldNetSignupToolStripMenuItem + // + this.ATTWorldNetSignupToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.ATTWorldNetSignupToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.ATTWorldNetSignupToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.ATTWorldNetSignupToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.ATTWorldNetSignupToolStripMenuItem.Name = "ATTWorldNetSignupToolStripMenuItem"; + this.ATTWorldNetSignupToolStripMenuItem.Size = new System.Drawing.Size(241, 22); + this.ATTWorldNetSignupToolStripMenuItem.Text = "AT&T WorldNet Signup"; + // + // SetupCompuServe30ToolStripMenuItem + // + this.SetupCompuServe30ToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.SetupCompuServe30ToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.SetupCompuServe30ToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.SetupCompuServe30ToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.SetupCompuServe30ToolStripMenuItem.Name = "SetupCompuServe30ToolStripMenuItem"; + this.SetupCompuServe30ToolStripMenuItem.Size = new System.Drawing.Size(241, 22); + this.SetupCompuServe30ToolStripMenuItem.Text = "Setup CompuServe 3.0"; + // + // SetupWOWFromCompuServeToolStripMenuItem + // + this.SetupWOWFromCompuServeToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.SetupWOWFromCompuServeToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.SetupWOWFromCompuServeToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.SetupWOWFromCompuServeToolStripMenuItem.Name = "SetupWOWFromCompuServeToolStripMenuItem"; + this.SetupWOWFromCompuServeToolStripMenuItem.Size = new System.Drawing.Size(241, 22); + this.SetupWOWFromCompuServeToolStripMenuItem.Text = "Setup WOW! from CompuServe"; + // + // MSDOSPromptToolStripMenuItem + // + this.MSDOSPromptToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.MSDOSPromptToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.MSDOSPromptToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.MSDOSPromptToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.EmptyToolStripMenuItem}); + this.MSDOSPromptToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicProgramItem; + this.MSDOSPromptToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.MSDOSPromptToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.MSDOSPromptToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Silver; + this.MSDOSPromptToolStripMenuItem.Name = "MSDOSPromptToolStripMenuItem"; + this.MSDOSPromptToolStripMenuItem.Size = new System.Drawing.Size(181, 28); + this.MSDOSPromptToolStripMenuItem.Text = "StartUp"; + // + // EmptyToolStripMenuItem + // + this.EmptyToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.EmptyToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.EmptyToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.EmptyToolStripMenuItem.Name = "EmptyToolStripMenuItem"; + this.EmptyToolStripMenuItem.Size = new System.Drawing.Size(116, 22); + this.EmptyToolStripMenuItem.Text = "(Empty)"; + // + // InternetExplorerToolStripMenuItem + // + this.InternetExplorerToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.InternetExplorerToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.InternetExplorerToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.InternetExplorerToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("InternetExplorerToolStripMenuItem.Image"))); + this.InternetExplorerToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.InternetExplorerToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.InternetExplorerToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Silver; + this.InternetExplorerToolStripMenuItem.Name = "InternetExplorerToolStripMenuItem"; + this.InternetExplorerToolStripMenuItem.Size = new System.Drawing.Size(181, 28); + this.InternetExplorerToolStripMenuItem.Text = "Internet Explorer"; + // + // MSDOSPromptToolStripMenuItem1 + // + this.MSDOSPromptToolStripMenuItem1.BackColor = System.Drawing.Color.Silver; + this.MSDOSPromptToolStripMenuItem1.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.MSDOSPromptToolStripMenuItem1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.MSDOSPromptToolStripMenuItem1.Image = ((System.Drawing.Image)(resources.GetObject("MSDOSPromptToolStripMenuItem1.Image"))); + this.MSDOSPromptToolStripMenuItem1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.MSDOSPromptToolStripMenuItem1.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.MSDOSPromptToolStripMenuItem1.ImageTransparentColor = System.Drawing.Color.Silver; + this.MSDOSPromptToolStripMenuItem1.Name = "MSDOSPromptToolStripMenuItem1"; + this.MSDOSPromptToolStripMenuItem1.Size = new System.Drawing.Size(181, 28); + this.MSDOSPromptToolStripMenuItem1.Text = "MS-DOS Prompt"; + // + // OutlookExpressToolStripMenuItem + // + this.OutlookExpressToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.OutlookExpressToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.OutlookExpressToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.OutlookExpressToolStripMenuItem.Image = ((System.Drawing.Image)(resources.GetObject("OutlookExpressToolStripMenuItem.Image"))); + this.OutlookExpressToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.OutlookExpressToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.OutlookExpressToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Silver; + this.OutlookExpressToolStripMenuItem.Name = "OutlookExpressToolStripMenuItem"; + this.OutlookExpressToolStripMenuItem.Size = new System.Drawing.Size(181, 28); + this.OutlookExpressToolStripMenuItem.Text = "Outlook Express"; + // + // WindowsExplorerToolStripMenuItem1 + // + this.WindowsExplorerToolStripMenuItem1.BackColor = System.Drawing.Color.Silver; + this.WindowsExplorerToolStripMenuItem1.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.WindowsExplorerToolStripMenuItem1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.WindowsExplorerToolStripMenuItem1.Image = ((System.Drawing.Image)(resources.GetObject("WindowsExplorerToolStripMenuItem1.Image"))); + this.WindowsExplorerToolStripMenuItem1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.WindowsExplorerToolStripMenuItem1.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.WindowsExplorerToolStripMenuItem1.ImageTransparentColor = System.Drawing.Color.Silver; + this.WindowsExplorerToolStripMenuItem1.Name = "WindowsExplorerToolStripMenuItem1"; + this.WindowsExplorerToolStripMenuItem1.Size = new System.Drawing.Size(181, 28); + this.WindowsExplorerToolStripMenuItem1.Text = "Windows Explorer"; + // + // GuessTheNumberToolStripMenuItem + // + this.GuessTheNumberToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.GuessTheNumberToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.GuessTheNumberToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.GuessTheNumberToolStripMenuItem.Name = "GuessTheNumberToolStripMenuItem"; + this.GuessTheNumberToolStripMenuItem.Size = new System.Drawing.Size(181, 28); + this.GuessTheNumberToolStripMenuItem.Text = "Guess The Number"; + this.GuessTheNumberToolStripMenuItem.Visible = false; + // + // StartRunnerToolStripMenuItem + // + this.StartRunnerToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.StartRunnerToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.StartRunnerToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.StartRunnerToolStripMenuItem.Name = "StartRunnerToolStripMenuItem"; + this.StartRunnerToolStripMenuItem.Size = new System.Drawing.Size(181, 28); + this.StartRunnerToolStripMenuItem.Text = "Start Runner"; + this.StartRunnerToolStripMenuItem.Visible = false; + // + // ErrorBlasterToolStripMenuItem + // + this.ErrorBlasterToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.ErrorBlasterToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.ErrorBlasterToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.ErrorBlasterToolStripMenuItem.Name = "ErrorBlasterToolStripMenuItem"; + this.ErrorBlasterToolStripMenuItem.Size = new System.Drawing.Size(181, 28); + this.ErrorBlasterToolStripMenuItem.Text = "Error Blaster"; + this.ErrorBlasterToolStripMenuItem.Visible = false; + // + // SkindowsToolStripMenuItem + // + this.SkindowsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.SkindowsToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.SkindowsToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.SkindowsToolStripMenuItem.Name = "SkindowsToolStripMenuItem"; + this.SkindowsToolStripMenuItem.Size = new System.Drawing.Size(181, 28); + this.SkindowsToolStripMenuItem.Text = "Skindows 95"; + this.SkindowsToolStripMenuItem.Visible = false; + // + // WebChatToolStripMenuItem + // + this.WebChatToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.WebChatToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.WebChatToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.WebChatToolStripMenuItem.Name = "WebChatToolStripMenuItem"; + this.WebChatToolStripMenuItem.Size = new System.Drawing.Size(181, 28); + this.WebChatToolStripMenuItem.Text = "Web Chat"; + this.WebChatToolStripMenuItem.Visible = false; + // + // TimeDistorterToolStripMenuItem + // + this.TimeDistorterToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.TimeDistorterToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.TimeDistorterToolStripMenuItem.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; + this.TimeDistorterToolStripMenuItem.Name = "TimeDistorterToolStripMenuItem"; + this.TimeDistorterToolStripMenuItem.Size = new System.Drawing.Size(181, 28); + this.TimeDistorterToolStripMenuItem.Text = "Time Distorter"; + this.TimeDistorterToolStripMenuItem.Visible = false; + // + // DocumentsToolStripMenuItem + // + this.DocumentsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.DocumentsToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; + this.DocumentsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.windowManagerTestToolStripMenuItem, + this.downloaderTestToolStripMenuItem, + this.installerTestToolStripMenuItem}); + this.DocumentsToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicDocuments; + this.DocumentsToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.DocumentsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.DocumentsToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Silver; + this.DocumentsToolStripMenuItem.Name = "DocumentsToolStripMenuItem"; + this.DocumentsToolStripMenuItem.Padding = new System.Windows.Forms.Padding(4, 0, 25, 0); + this.DocumentsToolStripMenuItem.Size = new System.Drawing.Size(134, 36); + this.DocumentsToolStripMenuItem.Text = "Documents"; + // + // windowManagerTestToolStripMenuItem + // + this.windowManagerTestToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.windowManagerTestToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("windowManagerTestToolStripMenuItem.BackgroundImage"))); + this.windowManagerTestToolStripMenuItem.Name = "windowManagerTestToolStripMenuItem"; + this.windowManagerTestToolStripMenuItem.Size = new System.Drawing.Size(186, 22); + this.windowManagerTestToolStripMenuItem.Text = "WindowManagerTest"; + // + // downloaderTestToolStripMenuItem + // + this.downloaderTestToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.downloaderTestToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("downloaderTestToolStripMenuItem.BackgroundImage"))); + this.downloaderTestToolStripMenuItem.Name = "downloaderTestToolStripMenuItem"; + this.downloaderTestToolStripMenuItem.Size = new System.Drawing.Size(186, 22); + this.downloaderTestToolStripMenuItem.Text = "DownloaderTest"; + // + // installerTestToolStripMenuItem + // + this.installerTestToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.installerTestToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("installerTestToolStripMenuItem.BackgroundImage"))); + this.installerTestToolStripMenuItem.Name = "installerTestToolStripMenuItem"; + this.installerTestToolStripMenuItem.Size = new System.Drawing.Size(186, 22); + this.installerTestToolStripMenuItem.Text = "InstallerTest"; + // + // SettingsToolStripMenuItem + // + this.SettingsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.SettingsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ControlPanelToolStripMenuItem, + this.PrintersToolStripMenuItem, + this.TaskbarToolStripMenuItem}); + this.SettingsToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicSettings; + this.SettingsToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.SettingsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.SettingsToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Silver; + this.SettingsToolStripMenuItem.Name = "SettingsToolStripMenuItem"; + this.SettingsToolStripMenuItem.Padding = new System.Windows.Forms.Padding(4, 0, 25, 0); + this.SettingsToolStripMenuItem.Size = new System.Drawing.Size(134, 36); + this.SettingsToolStripMenuItem.Text = "Settings"; + // + // ControlPanelToolStripMenuItem + // + this.ControlPanelToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.ControlPanelToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ControlPanelToolStripMenuItem.BackgroundImage"))); + this.ControlPanelToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.ControlPanelToolStripMenuItem.Name = "ControlPanelToolStripMenuItem"; + this.ControlPanelToolStripMenuItem.Size = new System.Drawing.Size(146, 22); + this.ControlPanelToolStripMenuItem.Text = "Control Panel"; + // + // PrintersToolStripMenuItem + // + this.PrintersToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.PrintersToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("PrintersToolStripMenuItem.BackgroundImage"))); + this.PrintersToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.PrintersToolStripMenuItem.Name = "PrintersToolStripMenuItem"; + this.PrintersToolStripMenuItem.Size = new System.Drawing.Size(146, 22); + this.PrintersToolStripMenuItem.Text = "Printers"; + // + // TaskbarToolStripMenuItem + // + this.TaskbarToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.TaskbarToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("TaskbarToolStripMenuItem.BackgroundImage"))); + this.TaskbarToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.TaskbarToolStripMenuItem.Name = "TaskbarToolStripMenuItem"; + this.TaskbarToolStripMenuItem.Size = new System.Drawing.Size(146, 22); + this.TaskbarToolStripMenuItem.Text = "Taskbar"; + // + // FindToolStripMenuItem + // + this.FindToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.FindToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("FindToolStripMenuItem.BackgroundImage"))); + this.FindToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.FilesOrFoldersToolStripMenuItem, + this.ComputerToolStripMenuItem, + this.OnTheInternetToolStripMenuItem, + this.PeopleToolStripMenuItem}); + this.FindToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicFind; + this.FindToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.FindToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.FindToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Silver; + this.FindToolStripMenuItem.Name = "FindToolStripMenuItem"; + this.FindToolStripMenuItem.Padding = new System.Windows.Forms.Padding(4, 0, 25, 0); + this.FindToolStripMenuItem.RightToLeft = System.Windows.Forms.RightToLeft.No; + this.FindToolStripMenuItem.Size = new System.Drawing.Size(134, 36); + this.FindToolStripMenuItem.Text = "Find"; + // + // FilesOrFoldersToolStripMenuItem + // + this.FilesOrFoldersToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.FilesOrFoldersToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("FilesOrFoldersToolStripMenuItem.BackgroundImage"))); + this.FilesOrFoldersToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.FilesOrFoldersToolStripMenuItem.Name = "FilesOrFoldersToolStripMenuItem"; + this.FilesOrFoldersToolStripMenuItem.Size = new System.Drawing.Size(163, 22); + this.FilesOrFoldersToolStripMenuItem.Text = "Files or Folders..."; + // + // ComputerToolStripMenuItem + // + this.ComputerToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.ComputerToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("ComputerToolStripMenuItem.BackgroundImage"))); + this.ComputerToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.ComputerToolStripMenuItem.Name = "ComputerToolStripMenuItem"; + this.ComputerToolStripMenuItem.Size = new System.Drawing.Size(163, 22); + this.ComputerToolStripMenuItem.Text = "Computer..."; + // + // OnTheInternetToolStripMenuItem + // + this.OnTheInternetToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.OnTheInternetToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("OnTheInternetToolStripMenuItem.BackgroundImage"))); + this.OnTheInternetToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.OnTheInternetToolStripMenuItem.Name = "OnTheInternetToolStripMenuItem"; + this.OnTheInternetToolStripMenuItem.Size = new System.Drawing.Size(163, 22); + this.OnTheInternetToolStripMenuItem.Text = "On the Internet..."; + // + // PeopleToolStripMenuItem + // + this.PeopleToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.PeopleToolStripMenuItem.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("PeopleToolStripMenuItem.BackgroundImage"))); + this.PeopleToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.PeopleToolStripMenuItem.Name = "PeopleToolStripMenuItem"; + this.PeopleToolStripMenuItem.Size = new System.Drawing.Size(163, 22); + this.PeopleToolStripMenuItem.Text = "People..."; + // + // HelpToolStripMenuItem + // + this.HelpToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.HelpToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicHelp; + this.HelpToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.HelpToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.HelpToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Silver; + this.HelpToolStripMenuItem.Name = "HelpToolStripMenuItem"; + this.HelpToolStripMenuItem.Padding = new System.Windows.Forms.Padding(4, 0, 25, 0); + this.HelpToolStripMenuItem.RightToLeft = System.Windows.Forms.RightToLeft.No; + this.HelpToolStripMenuItem.Size = new System.Drawing.Size(134, 36); + this.HelpToolStripMenuItem.Text = "Help"; + // + // RunToolStripMenuItem + // + this.RunToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.RunToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicRun; + this.RunToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.RunToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.RunToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Silver; + this.RunToolStripMenuItem.Name = "RunToolStripMenuItem"; + this.RunToolStripMenuItem.Padding = new System.Windows.Forms.Padding(4, 0, 25, 0); + this.RunToolStripMenuItem.RightToLeft = System.Windows.Forms.RightToLeft.No; + this.RunToolStripMenuItem.Size = new System.Drawing.Size(134, 36); + this.RunToolStripMenuItem.Text = "Run..."; + // + // SuspendToolStripMenuItem + // + this.SuspendToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.SuspendToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicSuspend; + this.SuspendToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.SuspendToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.SuspendToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Silver; + this.SuspendToolStripMenuItem.Name = "SuspendToolStripMenuItem"; + this.SuspendToolStripMenuItem.Padding = new System.Windows.Forms.Padding(4, 0, 25, 0); + this.SuspendToolStripMenuItem.Size = new System.Drawing.Size(134, 36); + this.SuspendToolStripMenuItem.Text = "Suspend"; + // + // ShutdownToolStripMenuItem + // + this.ShutdownToolStripMenuItem.BackColor = System.Drawing.Color.Silver; + this.ShutdownToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicShutdown; + this.ShutdownToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; + this.ShutdownToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; + this.ShutdownToolStripMenuItem.ImageTransparentColor = System.Drawing.Color.Silver; + this.ShutdownToolStripMenuItem.Name = "ShutdownToolStripMenuItem"; + this.ShutdownToolStripMenuItem.Padding = new System.Windows.Forms.Padding(4, 0, 25, 0); + this.ShutdownToolStripMenuItem.Size = new System.Drawing.Size(134, 36); + this.ShutdownToolStripMenuItem.Text = "Shutdown..."; + // + // ossidestartmenu + // + this.ossidestartmenu.Controls.Add(this.osimage); + this.ossidestartmenu.Location = new System.Drawing.Point(0, 0); + this.ossidestartmenu.Name = "ossidestartmenu"; + this.ossidestartmenu.Size = new System.Drawing.Size(26, 297); + this.ossidestartmenu.TabIndex = 4; + // + // osimage + // + this.osimage.Dock = System.Windows.Forms.DockStyle.Fill; + this.osimage.Image = global::TimeHACK.Properties.Resources.Win95SideBar; + this.osimage.Location = new System.Drawing.Point(0, 0); + this.osimage.Name = "osimage"; + this.osimage.Size = new System.Drawing.Size(26, 297); + this.osimage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.osimage.TabIndex = 0; + this.osimage.TabStop = false; + // + // desktopicons + // + this.desktopicons.Alignment = System.Windows.Forms.ListViewAlignment.Left; + this.desktopicons.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.desktopicons.BackColor = System.Drawing.Color.Teal; + this.desktopicons.BackgroundImageTiled = true; + this.desktopicons.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.desktopicons.ForeColor = System.Drawing.Color.White; + this.desktopicons.Items.AddRange(new System.Windows.Forms.ListViewItem[] { + listViewItem1, + listViewItem2, + listViewItem3, + listViewItem4, + listViewItem5, + listViewItem6, + listViewItem7, + listViewItem8}); + this.desktopicons.Location = new System.Drawing.Point(0, 0); + this.desktopicons.Name = "desktopicons"; + this.desktopicons.Size = new System.Drawing.Size(640, 480); + this.desktopicons.TabIndex = 7; + this.desktopicons.UseCompatibleStateImageBehavior = false; + // + // Win98 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.Teal; + this.ClientSize = new System.Drawing.Size(640, 480); + this.Controls.Add(this.taskbar); + this.Controls.Add(this.startmenu); + this.Controls.Add(this.desktopicons); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; + this.Name = "Win98"; + this.Text = "Win98"; + this.taskbar.ResumeLayout(false); + this.clockPanel.ResumeLayout(false); + this.clockPanel.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.startbutton)).EndInit(); + this.startmenu.ResumeLayout(false); + this.startmenu.PerformLayout(); + this.startmenuitems.ResumeLayout(false); + this.startmenuitems.PerformLayout(); + this.ossidestartmenu.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.osimage)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + + internal System.Windows.Forms.Panel taskbar; + private System.Windows.Forms.Panel clockPanel; + internal System.Windows.Forms.Label taskbartime; + private System.Windows.Forms.Panel taskbarItems; + internal System.Windows.Forms.PictureBox startbutton; + internal System.Windows.Forms.Panel startmenu; + internal System.Windows.Forms.MenuStrip startmenuitems; + internal System.Windows.Forms.ToolStripMenuItem ProgramsToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem AccessoriesToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem CommunicationsToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem InternetConnectionWizardToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem NetMeetingToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem MultimediaToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem CDPlayerToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem SoundRecorderToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem VolumeControlToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem WindowsMediaPlayerToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem SystemToolsToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem DiskDefragmenterToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem ScanDiskToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem AddressBookToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem CalculatorToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem HyperTerminalToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem ImagingToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem NotePadToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem OnlineRegistrationToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem PaintToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem PhoneDialerToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem WordPadToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem StartUpToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem AOLInternetFREETrialToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem ATTWorldNetSignupToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem SetupCompuServe30ToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem SetupWOWFromCompuServeToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem MSDOSPromptToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem EmptyToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem InternetExplorerToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem MSDOSPromptToolStripMenuItem1; + internal System.Windows.Forms.ToolStripMenuItem OutlookExpressToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem WindowsExplorerToolStripMenuItem1; + internal System.Windows.Forms.ToolStripMenuItem GuessTheNumberToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem StartRunnerToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem ErrorBlasterToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem SkindowsToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem WebChatToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem TimeDistorterToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem DocumentsToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem windowManagerTestToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem downloaderTestToolStripMenuItem; + private System.Windows.Forms.ToolStripMenuItem installerTestToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem SettingsToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem ControlPanelToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem PrintersToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem TaskbarToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem FindToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem FilesOrFoldersToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem ComputerToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem OnTheInternetToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem PeopleToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem HelpToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem RunToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem SuspendToolStripMenuItem; + internal System.Windows.Forms.ToolStripMenuItem ShutdownToolStripMenuItem; + internal System.Windows.Forms.Panel ossidestartmenu; + internal System.Windows.Forms.PictureBox osimage; + internal System.Windows.Forms.ListView desktopicons; + } +}
\ No newline at end of file diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicAddressBook.cs b/TimeHACK.Main/OS/Win98/Win98.cs index 3934fa7..b3b5f99 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicAddressBook.cs +++ b/TimeHACK.Main/OS/Win98/Win98.cs @@ -1,18 +1,18 @@ using System; using System.Collections.Generic; using System.ComponentModel; -using System.Drawing; using System.Data; +using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; -namespace TimeHACK.OS.Win95.Win95Apps +namespace TimeHACK.OS.Win98 { - public partial class WinClassicAddressBook : UserControl + public partial class Win98 : Form { - public WinClassicAddressBook() + public Win98() { InitializeComponent(); } diff --git a/TimeHACK.Main/OS/Win98/Win98.resx b/TimeHACK.Main/OS/Win98/Win98.resx new file mode 100644 index 0000000..10f3284 --- /dev/null +++ b/TimeHACK.Main/OS/Win98/Win98.resx @@ -0,0 +1,402 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <!-- + Microsoft ResX Schema + + Version 2.0 + + The primary goals of this format is to allow a simple XML format + that is mostly human readable. The generation and parsing of the + various data types are done through the TypeConverter classes + associated with the data types. + + Example: + + ... ado.net/XML headers & schema ... + <resheader name="resmimetype">text/microsoft-resx</resheader> + <resheader name="version">2.0</resheader> + <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> + <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> + <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> + <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> + <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> + <value>[base64 mime encoded serialized .NET Framework object]</value> + </data> + <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> + <comment>This is a comment</comment> + </data> + + There are any number of "resheader" rows that contain simple + name/value pairs. + + Each data row contains a name, and value. The row also contains a + type or mimetype. Type corresponds to a .NET class that support + text/value conversion through the TypeConverter architecture. + Classes that don't support this are serialized and stored with the + mimetype set. + + The mimetype is used for serialized objects, and tells the + ResXResourceReader how to depersist the object. This is currently not + extensible. For a given mimetype the value must be set accordingly: + + Note - application/x-microsoft.net.object.binary.base64 is the format + that the ResXResourceWriter will generate, however the reader can + read any of the formats listed below. + + mimetype: application/x-microsoft.net.object.binary.base64 + value : The object must be serialized with + : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.soap.base64 + value : The object must be serialized with + : System.Runtime.Serialization.Formatters.Soap.SoapFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.bytearray.base64 + value : The object must be serialized into a byte array + : using a System.ComponentModel.TypeConverter + : and then encoded with base64 encoding. + --> + <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> + <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> + <xsd:element name="root" msdata:IsDataSet="true"> + <xsd:complexType> + <xsd:choice maxOccurs="unbounded"> + <xsd:element name="metadata"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" /> + </xsd:sequence> + <xsd:attribute name="name" use="required" type="xsd:string" /> + <xsd:attribute name="type" type="xsd:string" /> + <xsd:attribute name="mimetype" type="xsd:string" /> + <xsd:attribute ref="xml:space" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="assembly"> + <xsd:complexType> + <xsd:attribute name="alias" type="xsd:string" /> + <xsd:attribute name="name" type="xsd:string" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="data"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> + <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> + <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> + <xsd:attribute ref="xml:space" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="resheader"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" /> + </xsd:complexType> + </xsd:element> + </xsd:choice> + </xsd:complexType> + </xsd:element> + </xsd:schema> + <resheader name="resmimetype"> + <value>text/microsoft-resx</value> + </resheader> + <resheader name="version"> + <value>2.0</value> + </resheader> + <resheader name="reader"> + <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> + <resheader name="writer"> + <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> + <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> + <data name="taskbar.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAAAMAAAAcCAIAAAArypKmAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + vAAADrwBlbxySQAAABdJREFUKFNjOAADDP9hAEkMSo801oEDAK4uvzipdjzMAAAAAElFTkSuQmCC +</value> + </data> + <data name="startbutton.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAADYAAAAWCAIAAAAEi/i8AAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + vAAADrwBlbxySQAAARJJREFUSEvdlQEOwjAMA/f0PY2f8JSROl6apg1jgonCCRXHSam1amLZ5mYR5Os+ + K+u61oi3Kfm7iGV0h9b1vBoRqQawfSWDiP3BZQLg1QJVNcO0AK23SSPaakiqJuJeYFPBl5k+pB9OLxqT + DaciejJ/SD88iChHqzCwy+VTTkYUQikEJ2gljWhrTNaBTYQWoLWbLBzmmwhaSS9aw3URWel/ksINLb7l + taClYY7vqlaGr8umwsAuoQaWiJaSQy2+dahNBK2kEW3FRzmI6MtT2kTQSnrRe6Aay4nC8CnSArSAd1Qb + oSuEcvgUm18XykQOhy4jjWirB31C6ysRFZxeodvxpPUp0ojz8FMRRU1LiTg7y/IA/2bUcHiDzYsAAAAA + SUVORK5CYII= +</value> + </data> + <metadata name="startmenuitems.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> + <value>17, 17</value> + </metadata> + <metadata name="startmenuitems.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> + <value>17, 17</value> + </metadata> + <data name="InternetConnectionWizardToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAALRJREFUOE+N + kgEOwCAIA3m6T/NnG6UwBZ1bk6pTemIy2am1dlX70VlR3Hu/IBE1wr5/BOEQymFZLRvIHMZtGjUjEHOG + mIdS214UkGi92qM5zDnCENfYn+0AQvAxC2/nHsNe+HgLwCbEmW1HmLOOZtYuAB0SJKAsivAPgBXpOgNQ + PPwCyDcF4M0TAIZw84CUgq1TF2xvhP+oACBCAoBW9dg6szWLzeUZs9Y/7mQNVMCjOPywyA3MF+cOKQF9 + RAAAAABJRU5ErkJggg== +</value> + </data> + <data name="NetMeetingToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAKpJREFUOE/N + UskNgDAMy+gdrZsVO3cL/HhgySKJD/WB/BdjjNXpZ9wFu+R+QwTmnDAtY5UsbErOGuiIIKmBoJYwwEJ7 + QZbEk066qCHbo8R0Qj0OPbA1vrxpCKxSm3dPIYWtwMNED28Fp5Ai7lWwe17DFNKwFRBHmKj2EDCZ4eEF + pxeIdj+AnH33gtIeGO11jAJQw20X+5nAG7SE5GykuTO1V5yGHur3LyFyAZP8TrljsWNAAAAAAElFTkSu + QmCC +</value> + </data> + <data name="CDPlayerToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6 + JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAB3RJTUUH4QQIFCcwxstlzQAAALVJREFU + OE+dj4ERwyAMAxmd0diMImMZYaC9q3xOIJaeUP5Q936r1tpz+wgi4ATR3Huxbq1FC4ihHWDDEWM4A9jD + ukJczzBqRl8AD+iVMgB1B7j5BGATpqgJ4XfbeTi8vt8ANnCAn2JvnZuH4RvADKgx5MnHfAHm/bMB0j8A + KnueAEjX+Bs+1RcAiBBITWYUACEjssIQAFAOmzmissoAKF9FARvkFqYAySACxvh7WEXQWP4IlvIBh1rl + tmCAq4kAAAAASUVORK5CYII= +</value> + </data> + <data name="SoundRecorderToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6 + JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAB3RJTUUH4QQIFCcZhHn9oQAAAJ9JREFU + OE+VkAEOxCAIBH26P6s/8zrgeqTS05uEKMouaNnQR/zPdZVeazWDsZ6DuHfv3lqz8JsDJKYrgRiyKZYz + ieFOpxhiscxH6sIojuMLCV669lD8nYAQi1CosxusE7DCoQG44L6SyPL4hBic2ftJnhMQQsVvWHH8SPLs + E3dME/aZwYnRfBIholB3I00xE1amIDLBscmu8Bdm4NuMUj70z1LCUTedOwAAAABJRU5ErkJggg== +</value> + </data> + <data name="VolumeControlToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6 + JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAB3RJTUUH4QQIFCcbanecjQAAAItJREFU + OE+VjgEOhCAMBHk6T+Nn2iFuXEEtTLLBbNu5K6LWeuzkOruhXCXWvwWttd9cv74miLrHu1TASyQAHSr0 + /chh4PiBz/iO9W+B/mpUj6hPBbxEEtChQt+PHAbOKBCpgGUl6qlLBbxkFKgn9P3IYeCMApEKWFaEd1uC + t6QC3iyxPgsCDVYTlHICH5QKXtIjRNoAAAAASUVORK5CYII= +</value> + </data> + <data name="WindowsMediaPlayerToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6 + JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAB3RJTUUH4QQIFCgUfVCd0wAAAHpJREFU + OE+djgsOgDAIQzn6bubRlF+zOZV1vqRBGK0IS2vthHK0ZjQBHdcBhcllc9t7UJnsvSSM4tKWM03cAvLM + Ve3YwNBPuqYCJONxVbGvCnABSx2QfwJjK0c03wHYzjq1RICB7WRsf10AeU9dQPAasCu19YAEww2JXJGJ + 13tFDjjJAAAAAElFTkSuQmCC +</value> + </data> + <data name="DiskDefragmenterToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAMFJREFUOE+V + kAsShDAIQzk6R/Nm3SSU2g/uaJxMi5Bnq81yt0b38pCbnz03hGDtEaYq0HVdraF9QBiORoAyXIFKyAhO + IG6m8P+TRDDMPV4JkBDWGkSNYe0JcS8AGoArAEPYDcjQAcgheL9CCVkAU1iP3sd9887L8akDkE//OoMo + ByhSkxYAl3x0EgTg6QTk3FZ/B6TRpLSiHoAOpXWVR8D4wgYopMad7KAPgJQGIh3WMbEu/+CFNEhAhKPu + /qQXQbMf8nZYxbrHLzUAAAAASUVORK5CYII= +</value> + </data> + <data name="ScanDiskToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wgAADsIBFShKgAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAACmSURBVDhPnZFR + EsQgCEM9ukfzZl0CREmrO7uNw0ghL360ndR7v7L9X4BfBxDeVVrOmsaLQqd1DKowK7QmYwxvza4hC66H + UpiV6IJlm+UQOnvxvg7aBAPkIWpY87rICtpkX/4SX5MgmkvnxzD4JIC3BCUGzZCEfWb9I4D3M2gDp3xY + oXsQ9vRAYAJVbYNqAARf2M+aQa3Hr2QAdmH5TTPoDVz1BW7tA7ajvYP7sMmIAAAAAElFTkSuQmCC +</value> + </data> + <data name="AddressBookToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAG1JREFUOE/N + j1sOgCAQAzk6N/exdqRsAuqH0THNrm2DWP5DrXVxyQ5mWRc6FLO/Wa5WYBKyZyLfn9EBoMJwl65vwA4p + e+EGDkXneJ8coODcM+TSvV9wwmfu5C8jPOZA7YCMleT0KAu68kN9TikrCNOnE4xyRLMAAAAASUVORK5C + YII= +</value> + </data> + <data name="CalculatorToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + vQAADr0BR/uQrQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAABzSURBVDhPxZBR + DsAgCEM9ukfzZowW9UdFmUtG8mR0UtiSiFwxFSPYkbO8gb31gXahDBOdb9MhsHCoUzsJ4J0WdNRiFaUU + 36BtgIsrXAPEcGHHsAFF+4yT/M8GCP4Pa2z5iw26EEUNMNyc4rAXxw1T8RxJD2E2VfJhfZIbAAAAAElF + TkSuQmCC +</value> + </data> + <data name="ImagingToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAH9JREFUOE+l + jgESgCAIBHk6T/NnxjFCVlBKzJyhc7sTEXH/FzmYqJSLYHdCAc40AMaOqQmGBJMKmOVx7B6UeUGgsMQk + +jV4RQDYAri1dsKTBPMqcBilG/z5BwZbIgkmFNxhl0ww7trdESDo2K7dTJBGOrZrNxLszENQiQvq4X4A + JbFDpxtWNlIAAAAASUVORK5CYII= +</value> + </data> + <data name="NotePadToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + vgAADr4B6kKxwAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAACFSURBVDhPpZNB + DsAgCAR9uk/zZ1S0i6CoDTUZQ5EdTk1EtFAPX0dkFoU0aivnTOnFrZVkCZvGjjpXSuki02c7F9g0gzdP + YD7mIDMGW3gV6KEdPOMJjOmECltBYLsIxHJjCg9BYDufIejXFYQ17Q1LwG7YIyTA4Tok0PwStB/LE0Dy + BSJKDySVfIiSNKD1AAAAAElFTkSuQmCC +</value> + </data> + <data name="OnlineRegistrationToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wgAADsIBFShKgAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAACzSURBVDhPhZJR + EsUgCAN7dI7mzawRl1KLU2fygMimfryr9/6rcUY53FVmluDWmpoxFveViQSZuU4h72GMyMwm5AF2DPnA + QPTM9FIOCTiMBarSI1712qeZwwbkkApejBuqLLK8h7Cb5T8HGI8QBLPq8+wdzr722FUNL7+gEsuE06MI + qELk6T7DOhNcwTNAcuMJAZYAdQgiJAIk/kAZdr8OmCHD+5UWeRkBfKgEduUAYL/r1w0ie5EGNPvMCQAA + AABJRU5ErkJggg== +</value> + </data> + <data name="PaintToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + vQAADr0BR/uQrQAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAADBSURBVDhPhZAB + GoUgCIM9ukfrZj02mBJhb32U5v6JjpfmuGP0pQ8PAg4h0/6jbKj1xgcDniYEMGTDGpR0CLCJAIPnfV2X + 5lve4hTMXbirjVETQHQQtaX23LFN9mIRXtMCh14BIirctm/yiyGNkB7mHvxXAgTj/Os4jegzmHeVQ3KA + TWlAq7UUQOgUYE3KxCDMXd5drEGnADfz/Qj6d4QC569ZukoKUwfrq3ugewmgnmgP5eCztGaVFK0HnJUB + VdEYP35ybB/eOVN7AAAAAElFTkSuQmCC +</value> + </data> + <data name="PhoneDialerToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAK5JREFUOE+V + kAESwyAIBH06T/Nnlju8FNFJ7c0w0sBuTVqNWRu15uh3sDzGXleiDJsZlnleiyTwloXgzGLVUTIfcqH3 + zhO/UZrlG20S/RNg9JLodSSUAD045gR/JUj0vsoeM/SEkRAosVBhQTgPgvy1lfVWBazw8KGxsiiDGdbr + gKfAWwJIFp3AuFF8WPAUaOBPwuJJSwuomjNmWcqiF/CBczbRLVjziP4Fay7A1j6MmatnPf0QdQAAAABJ + RU5ErkJggg== +</value> + </data> + <data name="WordPadToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + vgAADr4B6kKxwAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAACMSURBVDhPnZAB + DsAgCAN9Ok/zZ4yiEINsMkkKRNezWWNmlZSM84wabVwyEX3ODNLCZXWiyUrsgEr13h2gZlmvAGZGKQAX + VRlAzfcJIAB+/gMiM5smIMbMBLO8uUMqCcxsOzww4/AIiGZ7eR4OQBYZ2uIGswOyWj72ArQMyOoVsMY+ + aQNok1HVambm9gBAYeI/oBSQZwAAAABJRU5ErkJggg== +</value> + </data> + <data name="InternetExplorerToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACVSURBVDhPlZELEsQgDEI9em7uBhVN2HTtvhmqotBf+4/e + s36ih6mIrgcmARX2CdaJE/brnn+LJZhvYFo3czeFp3/W0U9UYWgjfiq4honsr5I6/EZewDDG8sBNMwgY + iAUvQMG5+7VA9vcTBENKzPCB4T284ikYTFNKao1SH3IBwHwdqIroJ7hJxvxJGf+Hy2RJLLrR2gerBkDv + 4H+zGwAAAABJRU5ErkJggg== +</value> + </data> + <data name="MSDOSPromptToolStripMenuItem1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAC7SURBVDhPdU8BEgQhCOrp/bwT0WKpY4bRCMlGYc05FyqP + CdWSOD98Y5QI7KqaDbqXAX9MwOvu6/EAMQPde9CBD5upez1rvQNQi8DWlaUn1jRCi1ghAg55LwHRbTIA + Qy3hxWjWlxKULttgfTbBQPeotskJaNNMHo0BvVX7kgkNCFwBQFQG+OvAFcCQdwB6bARSp9rmJHpofYZZ + Xs3+CnAysLapAaV+Yw8o+Q0SHgw4d8A93OQGJIdkMDjGD7QCaoJbLIxPAAAAAElFTkSuQmCC +</value> + </data> + <data name="OutlookExpressToolStripMenuItem.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACVSURBVDhPlZCBEoAgCEP9dP6cGrCa5ZG9u51GbKKjxz21 + jZWBwjfYCjE3Ozt9SICGtDzNhBN9hKxPVjUBMNcums22Rr5BQIZwXCjJsK0JwlSNDKHwPmulJ4iA2Kik + 8eyYQQ3lWkHeX1U/ZjOCb6MG8M4zZbuAuQ1QYFcpZeGaPAM6ytIH6OmQUhauyeoNPnj1o/BDww9Iu0V1 + d9BzlgAAAABJRU5ErkJggg== +</value> + </data> + <data name="WindowsExplorerToolStripMenuItem1.Image" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8 + YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAACSSURBVDhPrZGBDoAgCET9dP7c5OBSEme2brsw8J6uCiUi + 9Wkf7cXNtZZQX0FW4RGSWWeQvpxKBHCDdEA8sS1Rs5ulgLDGE70UkgKmsNo0QZaAKWyVAYS1bm+AAasD + GNaaArhGM4T1o0ZICuhD+wPqG6jnNhMyAXhC5rajRQxAiPUd4GJj4Qjx/ql+h3wCQEO4lAsJcX7eS0qA + zQAAAABJRU5ErkJggg== +</value> + </data> + <data name="windowManagerTestToolStripMenuItem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw + 4AAABIQCQUtXaBsAAAAASUVORK5CYII= +</value> + </data> + <data name="downloaderTestToolStripMenuItem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw + 4AAABIQCQUtXaBsAAAAASUVORK5CYII= +</value> + </data> + <data name="installerTestToolStripMenuItem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw + 4AAABIQCQUtXaBsAAAAASUVORK5CYII= +</value> + </data> + <data name="ControlPanelToolStripMenuItem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw + 4AAABIQCQUtXaBsAAAAASUVORK5CYII= +</value> + </data> + <data name="PrintersToolStripMenuItem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw + 4AAABIQCQUtXaBsAAAAASUVORK5CYII= +</value> + </data> + <data name="TaskbarToolStripMenuItem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw + 4AAABIQCQUtXaBsAAAAASUVORK5CYII= +</value> + </data> + <data name="FindToolStripMenuItem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw + 4AAABIQCQUtXaBsAAAAASUVORK5CYII= +</value> + </data> + <data name="FilesOrFoldersToolStripMenuItem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw + 4AAABIQCQUtXaBsAAAAASUVORK5CYII= +</value> + </data> + <data name="ComputerToolStripMenuItem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw + 4AAABIQCQUtXaBsAAAAASUVORK5CYII= +</value> + </data> + <data name="OnTheInternetToolStripMenuItem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw + 4AAABIQCQUtXaBsAAAAASUVORK5CYII= +</value> + </data> + <data name="PeopleToolStripMenuItem.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value> + iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO + wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAMSURBVBhXYzhw + 4AAABIQCQUtXaBsAAAAASUVORK5CYII= +</value> + </data> +</root>
\ No newline at end of file diff --git a/TimeHACK.Main/Program.cs b/TimeHACK.Main/Program.cs index 1c66b45..1b89e53 100644 --- a/TimeHACK.Main/Program.cs +++ b/TimeHACK.Main/Program.cs @@ -6,6 +6,11 @@ using System.Threading.Tasks; using System.Windows.Forms; using Newtonsoft.Json.Linq; using System.Net; +using Newtonsoft.Json; +using TimeHACK.OS; +using TimeHACK.OS.Win95; +using TimeHACK.OS.Win95.Win95Apps; + namespace TimeHACK { @@ -14,7 +19,9 @@ namespace TimeHACK internal static bool nightly = true; internal static string gameID; internal static TitleScreen title = null; - + public static string AddressBookSelectedFolderName; + public static AddressBookContact AddressBookSelectedContact; + /// <summary> /// The main entry point for the application. /// Run TitleScreen.cs at launch. @@ -22,6 +29,7 @@ namespace TimeHACK [STAThread] static void Main() { + System.Diagnostics.Debugger.Launch(); if (nightly == true) { try @@ -42,6 +50,24 @@ namespace TimeHACK { gameID = "TimeHACK 1.1"; } + + //TimeHACK.Engine.GameSave.SaveData MySaveData = new TimeHACK.Engine.GameSave.SaveData() + //{ + // OS = 60, + // MyStringList = new List<string> + // { + // "Item1", + // "Item2" + // } + //}; + + //string TheJSON = JsonConvert.SerializeObject(MySaveData, Formatting.Indented); + //MessageBox.Show(TheJSON); + //MySaveData.OS = 40; + //MessageBox.Show(MySaveData.OS.ToString()); + + //MySaveData = (TimeHACK.Engine.GameSave.SaveData)JsonConvert.DeserializeObject(TheJSON, MySaveData.GetType()); + //MessageBox.Show(MySaveData.OS.ToString()); Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(title = new TitleScreen()); diff --git a/TimeHACK.Main/Properties/Resources.Designer.cs b/TimeHACK.Main/Properties/Resources.Designer.cs index 70575f6..4132bda 100644 --- a/TimeHACK.Main/Properties/Resources.Designer.cs +++ b/TimeHACK.Main/Properties/Resources.Designer.cs @@ -394,6 +394,36 @@ namespace TimeHACK.Properties { /// <summary> /// Looks up a localized resource of type System.Drawing.Bitmap. /// </summary> + internal static System.Drawing.Bitmap WinClassicAddressBookDeleteIcon { + get { + object obj = ResourceManager.GetObject("WinClassicAddressBookDeleteIcon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap WinClassicAddressBookNewIcon { + get { + object obj = ResourceManager.GetObject("WinClassicAddressBookNewIcon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> + internal static System.Drawing.Bitmap WinClassicAddressBookPropertiesIcon { + get { + object obj = ResourceManager.GetObject("WinClassicAddressBookPropertiesIcon", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> internal static System.Drawing.Bitmap WinClassicClock { get { object obj = ResourceManager.GetObject("WinClassicClock", resourceCulture); @@ -474,6 +504,16 @@ namespace TimeHACK.Properties { /// <summary> /// Looks up a localized resource of type System.Drawing.Bitmap. /// </summary> + internal static System.Drawing.Bitmap WinClassicGENERALApplicationToolbarBackground { + get { + object obj = ResourceManager.GetObject("WinClassicGENERALApplicationToolbarBackground", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> internal static System.Drawing.Bitmap WinClassicHelp { get { object obj = ResourceManager.GetObject("WinClassicHelp", resourceCulture); @@ -674,6 +714,16 @@ namespace TimeHACK.Properties { /// <summary> /// Looks up a localized resource of type System.Drawing.Bitmap. /// </summary> + internal static System.Drawing.Bitmap WinClassicTaskbarItem { + get { + object obj = ResourceManager.GetObject("WinClassicTaskbarItem", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> internal static System.Drawing.Bitmap WinClassicTime { get { object obj = ResourceManager.GetObject("WinClassicTime", resourceCulture); diff --git a/TimeHACK.Main/Properties/Resources.resx b/TimeHACK.Main/Properties/Resources.resx index b8f12b4..0c76722 100644 --- a/TimeHACK.Main/Properties/Resources.resx +++ b/TimeHACK.Main/Properties/Resources.resx @@ -339,4 +339,19 @@ <data name="google" type="System.Resources.ResXFileRef, System.Windows.Forms"> <value>..\resources\ie4\google.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> </data> + <data name="WinClassicAddressBookDeleteIcon" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\WinClassic\WinClassicAddressBookDeleteIcon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="WinClassicAddressBookNewIcon" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\WinClassic\WinClassicAddressBookNewIcon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="WinClassicAddressBookPropertiesIcon" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\WinClassic\WinClassicAddressBookPropertiesIcon.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="WinClassicGENERALApplicationToolbarBackground" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\WinClassic\WinClassicGENERALApplicationToolbarBackground.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="WinClassicTaskbarItem" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\resources\winclassic\winclassictaskbaritem.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> </root>
\ No newline at end of file diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicAddressBookDeleteIcon.png b/TimeHACK.Main/Resources/WinClassic/WinClassicAddressBookDeleteIcon.png Binary files differnew file mode 100644 index 0000000..6f45fce --- /dev/null +++ b/TimeHACK.Main/Resources/WinClassic/WinClassicAddressBookDeleteIcon.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicAddressBookNewIcon.png b/TimeHACK.Main/Resources/WinClassic/WinClassicAddressBookNewIcon.png Binary files differnew file mode 100644 index 0000000..3b35cc5 --- /dev/null +++ b/TimeHACK.Main/Resources/WinClassic/WinClassicAddressBookNewIcon.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicAddressBookPropertiesIcon.png b/TimeHACK.Main/Resources/WinClassic/WinClassicAddressBookPropertiesIcon.png Binary files differnew file mode 100644 index 0000000..d04303d --- /dev/null +++ b/TimeHACK.Main/Resources/WinClassic/WinClassicAddressBookPropertiesIcon.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicGENERALApplicationToolbarBackground.png b/TimeHACK.Main/Resources/WinClassic/WinClassicGENERALApplicationToolbarBackground.png Binary files differnew file mode 100644 index 0000000..75d4666 --- /dev/null +++ b/TimeHACK.Main/Resources/WinClassic/WinClassicGENERALApplicationToolbarBackground.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicTaskbarItem.png b/TimeHACK.Main/Resources/WinClassic/WinClassicTaskbarItem.png Binary files differnew file mode 100644 index 0000000..5eaf486 --- /dev/null +++ b/TimeHACK.Main/Resources/WinClassic/WinClassicTaskbarItem.png diff --git a/TimeHACK.Main/SaveDialogs/LoadGameDialog.Designer.cs b/TimeHACK.Main/SaveDialogs/LoadGameDialog.Designer.cs new file mode 100644 index 0000000..4d8691d --- /dev/null +++ b/TimeHACK.Main/SaveDialogs/LoadGameDialog.Designer.cs @@ -0,0 +1,101 @@ +namespace TimeHACK +{ + partial class LoadGameDialog + { + /// <summary> + /// Required designer variable. + /// </summary> + private System.ComponentModel.IContainer components = null; + + /// <summary> + /// Clean up any resources being used. + /// </summary> + /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// <summary> + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// </summary> + private void InitializeComponent() + { + this.panel1 = new System.Windows.Forms.Panel(); + this.button3 = new System.Windows.Forms.Button(); + this.button1 = new System.Windows.Forms.Button(); + this.Profiles = new System.Windows.Forms.Panel(); + this.panel1.SuspendLayout(); + this.SuspendLayout(); + // + // panel1 + // + this.panel1.BackColor = System.Drawing.Color.Silver; + this.panel1.Controls.Add(this.button3); + this.panel1.Controls.Add(this.button1); + this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom; + this.panel1.Location = new System.Drawing.Point(0, 340); + this.panel1.Name = "panel1"; + this.panel1.Size = new System.Drawing.Size(516, 25); + this.panel1.TabIndex = 0; + // + // button3 + // + this.button3.Location = new System.Drawing.Point(360, -1); + this.button3.Name = "button3"; + this.button3.Size = new System.Drawing.Size(75, 23); + this.button3.TabIndex = 0; + this.button3.Text = "Help"; + this.button3.UseVisualStyleBackColor = true; + this.button3.Click += new System.EventHandler(this.button3_Click); + // + // button1 + // + this.button1.Location = new System.Drawing.Point(441, 0); + this.button1.Name = "button1"; + this.button1.Size = new System.Drawing.Size(75, 23); + this.button1.TabIndex = 0; + this.button1.Text = "OK"; + this.button1.UseVisualStyleBackColor = true; + this.button1.Click += new System.EventHandler(this.button1_Click); + // + // Profiles + // + this.Profiles.AutoScroll = true; + this.Profiles.Dock = System.Windows.Forms.DockStyle.Fill; + this.Profiles.Location = new System.Drawing.Point(0, 0); + this.Profiles.Name = "Profiles"; + this.Profiles.Size = new System.Drawing.Size(516, 340); + this.Profiles.TabIndex = 2; + // + // LoadGameDialog + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(224)))), ((int)(((byte)(224)))), ((int)(((byte)(224))))); + this.ClientSize = new System.Drawing.Size(516, 365); + this.Controls.Add(this.Profiles); + this.Controls.Add(this.panel1); + this.Name = "LoadGameDialog"; + this.Text = "Profiles"; + this.Load += new System.EventHandler(this.LoadGameDialog_Load); + this.panel1.ResumeLayout(false); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.Panel panel1; + private System.Windows.Forms.Button button3; + private System.Windows.Forms.Button button1; + private System.Windows.Forms.Panel Profiles; + } +}
\ No newline at end of file diff --git a/TimeHACK.Main/SaveDialogs/LoadGameDialog.cs b/TimeHACK.Main/SaveDialogs/LoadGameDialog.cs new file mode 100644 index 0000000..b31bc50 --- /dev/null +++ b/TimeHACK.Main/SaveDialogs/LoadGameDialog.cs @@ -0,0 +1,57 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; +using System.IO; +using static TimeHACK.Engine.SaveSystem; + +namespace TimeHACK +{ + public partial class LoadGameDialog : Form + { + public Boolean successful = false; + public LoadGameDialog() + { + InitializeComponent(); + } + + public void ChooseProfile(string SelectedProfile) + { + ProfileName = SelectedProfile; + successful = true; + this.Close(); + } + + private void button2_Click(object sender, EventArgs e) + { + this.Close(); + } + + private void button1_Click(object sender, EventArgs e) + { + this.Close(); + } + + private void button3_Click(object sender, EventArgs e) + { + MessageBox.Show("Here you can control all your profiles! Use can open a profile by hovering over it and clicking 'Load Profile!'"); + } + + private void LoadGameDialog_Load(object sender, EventArgs e) + { + foreach (string dir in Directory.GetDirectories(AllProfilesDirectory)) + { + LoadGameProfileItem newItem = new LoadGameProfileItem(); + newItem.Tag = Path.GetFileName(dir); + newItem.Dock = DockStyle.Top; + Profiles.Controls.Add(newItem); + newItem.Show(); + } + } + } +} diff --git a/TimeHACK.Main/SaveDialogs/LoadGameDialog.resx b/TimeHACK.Main/SaveDialogs/LoadGameDialog.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/TimeHACK.Main/SaveDialogs/LoadGameDialog.resx @@ -0,0 +1,120 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <!-- + Microsoft ResX Schema + + Version 2.0 + + The primary goals of this format is to allow a simple XML format + that is mostly human readable. The generation and parsing of the + various data types are done through the TypeConverter classes + associated with the data types. + + Example: + + ... ado.net/XML headers & schema ... + <resheader name="resmimetype">text/microsoft-resx</resheader> + <resheader name="version">2.0</resheader> + <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> + <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> + <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> + <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> + <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> + <value>[base64 mime encoded serialized .NET Framework object]</value> + </data> + <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> + <comment>This is a comment</comment> + </data> + + There are any number of "resheader" rows that contain simple + name/value pairs. + + Each data row contains a name, and value. The row also contains a + type or mimetype. Type corresponds to a .NET class that support + text/value conversion through the TypeConverter architecture. + Classes that don't support this are serialized and stored with the + mimetype set. + + The mimetype is used for serialized objects, and tells the + ResXResourceReader how to depersist the object. This is currently not + extensible. For a given mimetype the value must be set accordingly: + + Note - application/x-microsoft.net.object.binary.base64 is the format + that the ResXResourceWriter will generate, however the reader can + read any of the formats listed below. + + mimetype: application/x-microsoft.net.object.binary.base64 + value : The object must be serialized with + : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.soap.base64 + value : The object must be serialized with + : System.Runtime.Serialization.Formatters.Soap.SoapFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.bytearray.base64 + value : The object must be serialized into a byte array + : using a System.ComponentModel.TypeConverter + : and then encoded with base64 encoding. + --> + <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> + <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> + <xsd:element name="root" msdata:IsDataSet="true"> + <xsd:complexType> + <xsd:choice maxOccurs="unbounded"> + <xsd:element name="metadata"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" /> + </xsd:sequence> + <xsd:attribute name="name" use="required" type="xsd:string" /> + <xsd:attribute name="type" type="xsd:string" /> + <xsd:attribute name="mimetype" type="xsd:string" /> + <xsd:attribute ref="xml:space" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="assembly"> + <xsd:complexType> + <xsd:attribute name="alias" type="xsd:string" /> + <xsd:attribute name="name" type="xsd:string" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="data"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> + <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> + <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> + <xsd:attribute ref="xml:space" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="resheader"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" /> + </xsd:complexType> + </xsd:element> + </xsd:choice> + </xsd:complexType> + </xsd:element> + </xsd:schema> + <resheader name="resmimetype"> + <value>text/microsoft-resx</value> + </resheader> + <resheader name="version"> + <value>2.0</value> + </resheader> + <resheader name="reader"> + <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> + <resheader name="writer"> + <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> +</root>
\ No newline at end of file diff --git a/TimeHACK.Main/SaveDialogs/LoadGameProfileItem.Designer.cs b/TimeHACK.Main/SaveDialogs/LoadGameProfileItem.Designer.cs new file mode 100644 index 0000000..61a0976 --- /dev/null +++ b/TimeHACK.Main/SaveDialogs/LoadGameProfileItem.Designer.cs @@ -0,0 +1,190 @@ +namespace TimeHACK +{ + partial class LoadGameProfileItem + { + /// <summary> + /// Required designer variable. + /// </summary> + private System.ComponentModel.IContainer components = null; + + /// <summary> + /// Clean up any resources being used. + /// </summary> + /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Component Designer generated code + + /// <summary> + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// </summary> + private void InitializeComponent() + { + this.sidebar = new System.Windows.Forms.Panel(); + this.exampleLoadProfile = new System.Windows.Forms.Button(); + this.exampleDelete = new System.Windows.Forms.Button(); + this.exampleNameBtn = new System.Windows.Forms.Button(); + this.profileName = new System.Windows.Forms.Label(); + this.pnlConfirm = new System.Windows.Forms.Panel(); + this.label1 = new System.Windows.Forms.Label(); + this.button1 = new System.Windows.Forms.Button(); + this.button2 = new System.Windows.Forms.Button(); + this.textBox1 = new System.Windows.Forms.TextBox(); + this.sidebar.SuspendLayout(); + this.pnlConfirm.SuspendLayout(); + this.SuspendLayout(); + // + // sidebar + // + this.sidebar.BackColor = System.Drawing.Color.Gray; + this.sidebar.Controls.Add(this.exampleLoadProfile); + this.sidebar.Controls.Add(this.exampleDelete); + this.sidebar.Controls.Add(this.exampleNameBtn); + this.sidebar.Dock = System.Windows.Forms.DockStyle.Right; + this.sidebar.Location = new System.Drawing.Point(245, 0); + this.sidebar.Name = "sidebar"; + this.sidebar.Size = new System.Drawing.Size(102, 82); + this.sidebar.TabIndex = 2; + this.sidebar.Visible = false; + // + // exampleLoadProfile + // + this.exampleLoadProfile.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192))))); + this.exampleLoadProfile.FlatStyle = System.Windows.Forms.FlatStyle.Popup; + this.exampleLoadProfile.Location = new System.Drawing.Point(3, 1); + this.exampleLoadProfile.Name = "exampleLoadProfile"; + this.exampleLoadProfile.Size = new System.Drawing.Size(94, 23); + this.exampleLoadProfile.TabIndex = 0; + this.exampleLoadProfile.Text = "Load Profile!"; + this.exampleLoadProfile.UseVisualStyleBackColor = false; + this.exampleLoadProfile.Click += new System.EventHandler(this.exampleLoadProfile_Click); + // + // exampleDelete + // + this.exampleDelete.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.exampleDelete.FlatStyle = System.Windows.Forms.FlatStyle.Popup; + this.exampleDelete.Location = new System.Drawing.Point(3, 54); + this.exampleDelete.Name = "exampleDelete"; + this.exampleDelete.Size = new System.Drawing.Size(93, 23); + this.exampleDelete.TabIndex = 0; + this.exampleDelete.Text = "Delete"; + this.exampleDelete.UseVisualStyleBackColor = false; + this.exampleDelete.Click += new System.EventHandler(this.exampleDelete_Click); + // + // exampleNameBtn + // + this.exampleNameBtn.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192))))); + this.exampleNameBtn.FlatStyle = System.Windows.Forms.FlatStyle.Popup; + this.exampleNameBtn.Location = new System.Drawing.Point(3, 27); + this.exampleNameBtn.Name = "exampleNameBtn"; + this.exampleNameBtn.Size = new System.Drawing.Size(93, 23); + this.exampleNameBtn.TabIndex = 0; + this.exampleNameBtn.Text = "Change Name"; + this.exampleNameBtn.UseVisualStyleBackColor = false; + this.exampleNameBtn.Click += new System.EventHandler(this.exampleNameBtn_Click); + // + // profileName + // + this.profileName.BackColor = System.Drawing.Color.Gray; + this.profileName.Dock = System.Windows.Forms.DockStyle.Fill; + this.profileName.Font = new System.Drawing.Font("Microsoft Sans Serif", 20F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.profileName.Location = new System.Drawing.Point(0, 0); + this.profileName.Name = "profileName"; + this.profileName.Size = new System.Drawing.Size(245, 82); + this.profileName.TabIndex = 1; + this.profileName.Text = "Profile Name"; + // + // pnlConfirm + // + this.pnlConfirm.BackColor = System.Drawing.Color.Gray; + this.pnlConfirm.Controls.Add(this.button2); + this.pnlConfirm.Controls.Add(this.button1); + this.pnlConfirm.Controls.Add(this.label1); + this.pnlConfirm.Controls.Add(this.textBox1); + this.pnlConfirm.Dock = System.Windows.Forms.DockStyle.Bottom; + this.pnlConfirm.Location = new System.Drawing.Point(0, 32); + this.pnlConfirm.Name = "pnlConfirm"; + this.pnlConfirm.Size = new System.Drawing.Size(245, 50); + this.pnlConfirm.TabIndex = 1; + this.pnlConfirm.Visible = false; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Location = new System.Drawing.Point(3, 5); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(240, 13); + this.label1.TabIndex = 1; + this.label1.Text = "Are you really sure you want to delete this Profile?"; + // + // button1 + // + this.button1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); + this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Popup; + this.button1.Location = new System.Drawing.Point(10, 20); + this.button1.Name = "button1"; + this.button1.Size = new System.Drawing.Size(109, 22); + this.button1.TabIndex = 1; + this.button1.Text = "Yes"; + this.button1.UseVisualStyleBackColor = false; + this.button1.Click += new System.EventHandler(this.button1_Click); + // + // button2 + // + this.button2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0))))); + this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Popup; + this.button2.Location = new System.Drawing.Point(136, 20); + this.button2.Name = "button2"; + this.button2.Size = new System.Drawing.Size(109, 23); + this.button2.TabIndex = 1; + this.button2.Text = "No"; + this.button2.UseVisualStyleBackColor = false; + this.button2.Click += new System.EventHandler(this.button2_Click); + // + // textBox1 + // + this.textBox1.Location = new System.Drawing.Point(3, 22); + this.textBox1.Name = "textBox1"; + this.textBox1.Size = new System.Drawing.Size(130, 20); + this.textBox1.TabIndex = 1; + this.textBox1.Visible = false; + // + // LoadGameProfileItem + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.Controls.Add(this.pnlConfirm); + this.Controls.Add(this.profileName); + this.Controls.Add(this.sidebar); + this.Name = "LoadGameProfileItem"; + this.Size = new System.Drawing.Size(347, 82); + this.Paint += new System.Windows.Forms.PaintEventHandler(this.LoadGameProfileItem_Paint); + this.sidebar.ResumeLayout(false); + this.pnlConfirm.ResumeLayout(false); + this.pnlConfirm.PerformLayout(); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.Panel sidebar; + private System.Windows.Forms.Button exampleLoadProfile; + private System.Windows.Forms.Button exampleDelete; + private System.Windows.Forms.Button exampleNameBtn; + private System.Windows.Forms.Label profileName; + private System.Windows.Forms.Panel pnlConfirm; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.Button button2; + private System.Windows.Forms.Button button1; + private System.Windows.Forms.TextBox textBox1; + } +} diff --git a/TimeHACK.Main/SaveDialogs/LoadGameProfileItem.cs b/TimeHACK.Main/SaveDialogs/LoadGameProfileItem.cs new file mode 100644 index 0000000..0087fb0 --- /dev/null +++ b/TimeHACK.Main/SaveDialogs/LoadGameProfileItem.cs @@ -0,0 +1,152 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Data; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; +using static TimeHACK.Engine.SaveSystem; +using System.IO; + +namespace TimeHACK +{ + public partial class LoadGameProfileItem : UserControl, IMessageFilter + { + public Boolean OnceRemoveHeight = false; + public Boolean OnceAddHeight = false; + public Boolean RequestingNewName = false; + public LoadGameProfileItem() + { + InitializeComponent(); + Application.AddMessageFilter(this); + } + + //private void LoadGameProfileItem_MouseHover(object sender, EventArgs e) + //{ + // exampleTop.Show(); + // this.Height += 28; + // OnceRemoveHeight = false; + //} + + public bool PreFilterMessage(ref Message m) + { + var mouseLocation = Cursor.Position; + + if (!ClientRectangle.Contains(PointToClient(Control.MousePosition))) + { + sidebar.Hide(); + if (OnceRemoveHeight == false) + { + this.Height -= 28; + OnceRemoveHeight = true; + profileName.BackColor = Color.Gray; + sidebar.BackColor = Color.Gray; + pnlConfirm.BackColor = Color.Gray; + } + OnceAddHeight = false; + } else + { + sidebar.Show(); + if (OnceAddHeight == false) + { + this.Height += 28; + OnceAddHeight = true; + profileName.BackColor = Color.LightGray; + sidebar.BackColor = Color.LightGray; + pnlConfirm.BackColor = Color.LightGray; + } + OnceRemoveHeight = false; + } + + if (m.Msg != 0x20a) // Scrolling Message + { + return false;//ignore message + } + return false; + } + + private void LoadGameProfileItem_Paint(object sender, PaintEventArgs e) + { + profileName.Text = this.Tag.ToString(); + } + + private void exampleLoadProfile_Click(object sender, EventArgs e) + { + ((LoadGameDialog)this.TopLevelControl).ChooseProfile(this.Tag.ToString()); + } + + private void button1_Click(object sender, EventArgs e) + { + DeleteProfile(); + } + + void DeleteProfile() + { + if (Directory.Exists(Path.Combine(AllProfilesDirectory, this.Tag.ToString()))) + { + Directory.Delete(Path.Combine(AllProfilesDirectory, this.Tag.ToString()), true); + this.Hide(); + } + } + + private void button2_Click(object sender, EventArgs e) + { + try + { + if (!RequestingNewName == false) + { + if (textBox1.Text == "") + { + MessageBox.Show("New profile name cannot be empty!"); + } + else + { + if (textBox1.Text.Length > 20) + { + MessageBox.Show("The profile name cannot be longer than 20 characters"); + } + else + { + if (Directory.Exists(Path.Combine(AllProfilesDirectory, textBox1.Text))) + { + MessageBox.Show("That profile already exists"); + } + else + { + Directory.Move(Path.Combine(AllProfilesDirectory, this.Tag.ToString()), Path.Combine(AllProfilesDirectory, textBox1.Text)); + this.Tag = textBox1.Text; + this.Invalidate(); + } + } + } + } + pnlConfirm.Hide(); + } catch (Exception ex) + { + + } + } + + private void exampleDelete_Click(object sender, EventArgs e) + { + label1.Text = "Are you really sure you want to delete this Profile?"; + button1.Show(); + textBox1.Hide(); + button2.Text = "No"; + RequestingNewName = false; + pnlConfirm.Show(); + } + + private void exampleNameBtn_Click(object sender, EventArgs e) + { + label1.Text = "Enter a new profile name: "; + button1.Hide(); + textBox1.Show(); + button2.Text = "OK"; + RequestingNewName = true; + pnlConfirm.Show(); + } + } +} diff --git a/TimeHACK.Main/SaveDialogs/LoadGameProfileItem.resx b/TimeHACK.Main/SaveDialogs/LoadGameProfileItem.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/TimeHACK.Main/SaveDialogs/LoadGameProfileItem.resx @@ -0,0 +1,120 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <!-- + Microsoft ResX Schema + + Version 2.0 + + The primary goals of this format is to allow a simple XML format + that is mostly human readable. The generation and parsing of the + various data types are done through the TypeConverter classes + associated with the data types. + + Example: + + ... ado.net/XML headers & schema ... + <resheader name="resmimetype">text/microsoft-resx</resheader> + <resheader name="version">2.0</resheader> + <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> + <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> + <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> + <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> + <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> + <value>[base64 mime encoded serialized .NET Framework object]</value> + </data> + <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> + <comment>This is a comment</comment> + </data> + + There are any number of "resheader" rows that contain simple + name/value pairs. + + Each data row contains a name, and value. The row also contains a + type or mimetype. Type corresponds to a .NET class that support + text/value conversion through the TypeConverter architecture. + Classes that don't support this are serialized and stored with the + mimetype set. + + The mimetype is used for serialized objects, and tells the + ResXResourceReader how to depersist the object. This is currently not + extensible. For a given mimetype the value must be set accordingly: + + Note - application/x-microsoft.net.object.binary.base64 is the format + that the ResXResourceWriter will generate, however the reader can + read any of the formats listed below. + + mimetype: application/x-microsoft.net.object.binary.base64 + value : The object must be serialized with + : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.soap.base64 + value : The object must be serialized with + : System.Runtime.Serialization.Formatters.Soap.SoapFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.bytearray.base64 + value : The object must be serialized into a byte array + : using a System.ComponentModel.TypeConverter + : and then encoded with base64 encoding. + --> + <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> + <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> + <xsd:element name="root" msdata:IsDataSet="true"> + <xsd:complexType> + <xsd:choice maxOccurs="unbounded"> + <xsd:element name="metadata"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" /> + </xsd:sequence> + <xsd:attribute name="name" use="required" type="xsd:string" /> + <xsd:attribute name="type" type="xsd:string" /> + <xsd:attribute name="mimetype" type="xsd:string" /> + <xsd:attribute ref="xml:space" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="assembly"> + <xsd:complexType> + <xsd:attribute name="alias" type="xsd:string" /> + <xsd:attribute name="name" type="xsd:string" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="data"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> + <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> + <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> + <xsd:attribute ref="xml:space" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="resheader"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" /> + </xsd:complexType> + </xsd:element> + </xsd:choice> + </xsd:complexType> + </xsd:element> + </xsd:schema> + <resheader name="resmimetype"> + <value>text/microsoft-resx</value> + </resheader> + <resheader name="version"> + <value>2.0</value> + </resheader> + <resheader name="reader"> + <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> + <resheader name="writer"> + <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> +</root>
\ No newline at end of file diff --git a/TimeHACK.Main/SaveDialogs/NewGameDialog.Designer.cs b/TimeHACK.Main/SaveDialogs/NewGameDialog.Designer.cs new file mode 100644 index 0000000..e58e0a7 --- /dev/null +++ b/TimeHACK.Main/SaveDialogs/NewGameDialog.Designer.cs @@ -0,0 +1,141 @@ +namespace TimeHACK +{ + partial class NewGameDialog + { + /// <summary> + /// Required designer variable. + /// </summary> + private System.ComponentModel.IContainer components = null; + + /// <summary> + /// Clean up any resources being used. + /// </summary> + /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// <summary> + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// </summary> + private void InitializeComponent() + { + this.txtProfName = new System.Windows.Forms.TextBox(); + this.label1 = new System.Windows.Forms.Label(); + this.btnOk = new System.Windows.Forms.Button(); + this.btnHelp = new System.Windows.Forms.Button(); + this.btnCancl = new System.Windows.Forms.Button(); + this.btnInfo = new System.Windows.Forms.Button(); + this.btnDevMode = new System.Windows.Forms.Button(); + this.SuspendLayout(); + // + // txtProfName + // + this.txtProfName.Location = new System.Drawing.Point(87, 12); + this.txtProfName.Name = "txtProfName"; + this.txtProfName.Size = new System.Drawing.Size(370, 20); + this.txtProfName.TabIndex = 0; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Location = new System.Drawing.Point(12, 15); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(70, 13); + this.label1.TabIndex = 1; + this.label1.Text = "Profile Name:"; + // + // btnOk + // + this.btnOk.Location = new System.Drawing.Point(382, 70); + this.btnOk.Name = "btnOk"; + this.btnOk.Size = new System.Drawing.Size(75, 23); + this.btnOk.TabIndex = 2; + this.btnOk.Text = "OK"; + this.btnOk.UseVisualStyleBackColor = true; + this.btnOk.Click += new System.EventHandler(this.btnOk_Click); + // + // btnHelp + // + this.btnHelp.Location = new System.Drawing.Point(301, 70); + this.btnHelp.Name = "btnHelp"; + this.btnHelp.Size = new System.Drawing.Size(75, 23); + this.btnHelp.TabIndex = 2; + this.btnHelp.Text = "Help"; + this.btnHelp.UseVisualStyleBackColor = true; + this.btnHelp.Click += new System.EventHandler(this.btnHelp_Click); + // + // btnCancl + // + this.btnCancl.Location = new System.Drawing.Point(220, 70); + this.btnCancl.Name = "btnCancl"; + this.btnCancl.Size = new System.Drawing.Size(75, 23); + this.btnCancl.TabIndex = 2; + this.btnCancl.Text = "Cancel"; + this.btnCancl.UseVisualStyleBackColor = true; + this.btnCancl.Click += new System.EventHandler(this.btnCancl_Click); + // + // btnInfo + // + this.btnInfo.Location = new System.Drawing.Point(7, 70); + this.btnInfo.Name = "btnInfo"; + this.btnInfo.Size = new System.Drawing.Size(121, 23); + this.btnInfo.TabIndex = 2; + this.btnInfo.Text = "Technical Info"; + this.btnInfo.UseVisualStyleBackColor = true; + this.btnInfo.Click += new System.EventHandler(this.btnInfo_Click); + // + // btnDevMode + // + this.btnDevMode.Location = new System.Drawing.Point(7, 41); + this.btnDevMode.Name = "btnDevMode"; + this.btnDevMode.Size = new System.Drawing.Size(121, 23); + this.btnDevMode.TabIndex = 3; + this.btnDevMode.Text = "What is DevMode?"; + this.btnDevMode.UseVisualStyleBackColor = true; + this.btnDevMode.Visible = false; + this.btnDevMode.Click += new System.EventHandler(this.btnDevMode_Click); + // + // NewGameDialog + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(469, 96); + this.Controls.Add(this.btnDevMode); + this.Controls.Add(this.btnInfo); + this.Controls.Add(this.btnCancl); + this.Controls.Add(this.btnHelp); + this.Controls.Add(this.btnOk); + this.Controls.Add(this.label1); + this.Controls.Add(this.txtProfName); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "NewGameDialog"; + this.Tag = "ignoreFormOnTaskbar"; + this.Text = "New Game"; + this.Load += new System.EventHandler(this.NewGameDialog_Load); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.TextBox txtProfName; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.Button btnOk; + private System.Windows.Forms.Button btnHelp; + private System.Windows.Forms.Button btnCancl; + private System.Windows.Forms.Button btnInfo; + private System.Windows.Forms.Button btnDevMode; + } +}
\ No newline at end of file diff --git a/TimeHACK.Main/SaveDialogs/NewGameDialog.cs b/TimeHACK.Main/SaveDialogs/NewGameDialog.cs new file mode 100644 index 0000000..d492a79 --- /dev/null +++ b/TimeHACK.Main/SaveDialogs/NewGameDialog.cs @@ -0,0 +1,99 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; +using TimeHACK.Engine; +using Newtonsoft.Json; +using static TimeHACK.Engine.SaveSystem; +using System.IO; + +namespace TimeHACK +{ + public partial class NewGameDialog : Form + { + public Boolean Successful = false; + public NewGameDialog() + { + InitializeComponent(); + } + + private void btnHelp_Click(object sender, EventArgs e) + { + MessageBox.Show("You can choose a profile name - this will create a new profile! Whenever you want to Load a game, click 'Load Game' and then choose a profile (You can have as many profiles as you want)"); + } + + private void btnCancl_Click(object sender, EventArgs e) + { + this.Close(); + } + + private void btnInfo_Click(object sender, EventArgs e) + { + MessageBox.Show("The game's profiles are stored in your AppData /TimeHACK/Profiles - the rest is for you to figure out!"); + } + + private void btnOk_Click(object sender, EventArgs e) + { + try + { + if (txtProfName.Text != "") + { + if (!(txtProfName.Text.Length > 20)) + { + ProfileName = txtProfName.Text; + if (DevMode == true) + { + if (Directory.Exists(ProfileDirectory)) + { + Directory.Delete(ProfileDirectory, true); + Successful = true; + this.Close(); + } + } + + if (!Directory.Exists(ProfileDirectory)) + { + Successful = true; + this.Close(); + } + else + { + MessageBox.Show("That profile already exists! \n USEFUL INFO: Use 'Load Game' to manage your profiles - from there you can delete the profile!"); + } + } + else + { + MessageBox.Show("The profile name cannot be longer than 20 characters"); + } + + } + else + { + MessageBox.Show("You must enter a profile name!"); + } + } catch (Exception ex) + { + + } + } + + private void NewGameDialog_Load(object sender, EventArgs e) + { + if (DevMode == true) + { + btnDevMode.Show(); + } + } + + private void btnDevMode_Click(object sender, EventArgs e) + { + MessageBox.Show("DevMode is a mode Designed for Development of the game, if you are seeing this that means it is activated! All DevMode does is if a Profile already exists then rather than asking you to choose a different name it just " + + "deletes the old one! This means that you won't have 1 million profiles everytime you want to test something in the game!"); + } + } +} diff --git a/TimeHACK.Main/SaveDialogs/NewGameDialog.resx b/TimeHACK.Main/SaveDialogs/NewGameDialog.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/TimeHACK.Main/SaveDialogs/NewGameDialog.resx @@ -0,0 +1,120 @@ +<?xml version="1.0" encoding="utf-8"?> +<root> + <!-- + Microsoft ResX Schema + + Version 2.0 + + The primary goals of this format is to allow a simple XML format + that is mostly human readable. The generation and parsing of the + various data types are done through the TypeConverter classes + associated with the data types. + + Example: + + ... ado.net/XML headers & schema ... + <resheader name="resmimetype">text/microsoft-resx</resheader> + <resheader name="version">2.0</resheader> + <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> + <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> + <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> + <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> + <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> + <value>[base64 mime encoded serialized .NET Framework object]</value> + </data> + <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> + <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> + <comment>This is a comment</comment> + </data> + + There are any number of "resheader" rows that contain simple + name/value pairs. + + Each data row contains a name, and value. The row also contains a + type or mimetype. Type corresponds to a .NET class that support + text/value conversion through the TypeConverter architecture. + Classes that don't support this are serialized and stored with the + mimetype set. + + The mimetype is used for serialized objects, and tells the + ResXResourceReader how to depersist the object. This is currently not + extensible. For a given mimetype the value must be set accordingly: + + Note - application/x-microsoft.net.object.binary.base64 is the format + that the ResXResourceWriter will generate, however the reader can + read any of the formats listed below. + + mimetype: application/x-microsoft.net.object.binary.base64 + value : The object must be serialized with + : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.soap.base64 + value : The object must be serialized with + : System.Runtime.Serialization.Formatters.Soap.SoapFormatter + : and then encoded with base64 encoding. + + mimetype: application/x-microsoft.net.object.bytearray.base64 + value : The object must be serialized into a byte array + : using a System.ComponentModel.TypeConverter + : and then encoded with base64 encoding. + --> + <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> + <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> + <xsd:element name="root" msdata:IsDataSet="true"> + <xsd:complexType> + <xsd:choice maxOccurs="unbounded"> + <xsd:element name="metadata"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" /> + </xsd:sequence> + <xsd:attribute name="name" use="required" type="xsd:string" /> + <xsd:attribute name="type" type="xsd:string" /> + <xsd:attribute name="mimetype" type="xsd:string" /> + <xsd:attribute ref="xml:space" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="assembly"> + <xsd:complexType> + <xsd:attribute name="alias" type="xsd:string" /> + <xsd:attribute name="name" type="xsd:string" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="data"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> + <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> + <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> + <xsd:attribute ref="xml:space" /> + </xsd:complexType> + </xsd:element> + <xsd:element name="resheader"> + <xsd:complexType> + <xsd:sequence> + <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> + </xsd:sequence> + <xsd:attribute name="name" type="xsd:string" use="required" /> + </xsd:complexType> + </xsd:element> + </xsd:choice> + </xsd:complexType> + </xsd:element> + </xsd:schema> + <resheader name="resmimetype"> + <value>text/microsoft-resx</value> + </resheader> + <resheader name="version"> + <value>2.0</value> + </resheader> + <resheader name="reader"> + <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> + <resheader name="writer"> + <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> + </resheader> +</root>
\ No newline at end of file diff --git a/TimeHACK.Main/TimeHACK.Main.csproj b/TimeHACK.Main/TimeHACK.Main.csproj index 9dafca4..a8ccbff 100644 --- a/TimeHACK.Main/TimeHACK.Main.csproj +++ b/TimeHACK.Main/TimeHACK.Main.csproj @@ -101,6 +101,9 @@ <AssemblyOriginatorKeyFile> </AssemblyOriginatorKeyFile> </PropertyGroup> + <PropertyGroup> + <NoWin32Manifest>true</NoWin32Manifest> + </PropertyGroup> <ItemGroup> <Reference Include="Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> @@ -119,12 +122,36 @@ <Reference Include="System.Xml" /> </ItemGroup> <ItemGroup> + <Compile Include="SaveDialogs\LoadGameDialog.cs"> + <SubType>Form</SubType> + </Compile> + <Compile Include="SaveDialogs\LoadGameDialog.Designer.cs"> + <DependentUpon>LoadGameDialog.cs</DependentUpon> + </Compile> + <Compile Include="SaveDialogs\LoadGameProfileItem.cs"> + <SubType>UserControl</SubType> + </Compile> + <Compile Include="SaveDialogs\LoadGameProfileItem.Designer.cs"> + <DependentUpon>LoadGameProfileItem.cs</DependentUpon> + </Compile> + <Compile Include="SaveDialogs\NewGameDialog.cs"> + <SubType>Form</SubType> + </Compile> + <Compile Include="SaveDialogs\NewGameDialog.Designer.cs"> + <DependentUpon>NewGameDialog.cs</DependentUpon> + </Compile> <Compile Include="OS\Win95\Win95.cs"> <SubType>Form</SubType> </Compile> <Compile Include="OS\Win95\Win95.Designer.cs"> <DependentUpon>Win95.cs</DependentUpon> </Compile> + <Compile Include="OS\Win95\Win95Apps\AddressBook\FRMWinClassicAddressBookNewContact.cs"> + <SubType>UserControl</SubType> + </Compile> + <Compile Include="OS\Win95\Win95Apps\AddressBook\FRMWinClassicAddressBookNewContact.Designer.cs"> + <DependentUpon>FRMWinClassicAddressBookNewContact.cs</DependentUpon> + </Compile> <Compile Include="OS\Win95\Win95Apps\TestApp.cs"> <SubType>UserControl</SubType> </Compile> @@ -137,10 +164,16 @@ <Compile Include="OS\Win95\Win95Apps\WebChat1998.Designer.cs"> <DependentUpon>WebChat1998.cs</DependentUpon> </Compile> - <Compile Include="OS\Win95\Win95Apps\WinClassicAddressBook.cs"> + <Compile Include="OS\Win95\Win95Apps\AddressBook\FRMWinClassicAddressBookNewFolder.cs"> <SubType>UserControl</SubType> </Compile> - <Compile Include="OS\Win95\Win95Apps\WinClassicAddressBook.Designer.cs"> + <Compile Include="OS\Win95\Win95Apps\AddressBook\FRMWinClassicAddressBookNewFolder.Designer.cs"> + <DependentUpon>FRMWinClassicAddressBookNewFolder.cs</DependentUpon> + </Compile> + <Compile Include="OS\Win95\Win95Apps\AddressBook\WinClassicAddressBook.cs"> + <SubType>UserControl</SubType> + </Compile> + <Compile Include="OS\Win95\Win95Apps\AddressBook\WinClassicAddressBook.Designer.cs"> <DependentUpon>WinClassicAddressBook.cs</DependentUpon> </Compile> <Compile Include="OS\Win95\Win95Apps\WinClassicDownloader.cs"> @@ -191,6 +224,12 @@ <Compile Include="OS\Win95\Win95TaskBarItem.Designer.cs"> <DependentUpon>Win95TaskBarItem.cs</DependentUpon> </Compile> + <Compile Include="OS\Win98\Win98.cs"> + <SubType>Form</SubType> + </Compile> + <Compile Include="OS\Win98\Win98.Designer.cs"> + <DependentUpon>Win98.cs</DependentUpon> + </Compile> <Compile Include="Program.cs" /> <Compile Include="Properties\AssemblyInfo.cs" /> <Compile Include="Properties\Resources.Designer.cs"> @@ -204,16 +243,34 @@ <Compile Include="TitleScreen.Designer.cs"> <DependentUpon>TitleScreen.cs</DependentUpon> </Compile> + <EmbeddedResource Include="SaveDialogs\LoadGameDialog.resx"> + <DependentUpon>LoadGameDialog.cs</DependentUpon> + </EmbeddedResource> + <EmbeddedResource Include="SaveDialogs\LoadGameProfileItem.resx"> + <DependentUpon>LoadGameProfileItem.cs</DependentUpon> + </EmbeddedResource> + <EmbeddedResource Include="SaveDialogs\NewGameDialog.resx"> + <DependentUpon>NewGameDialog.cs</DependentUpon> + </EmbeddedResource> + <Compile Include="UI\IProgressBar.cs"> + <SubType>Component</SubType> + </Compile> <EmbeddedResource Include="OS\Win95\Win95.resx"> <DependentUpon>Win95.cs</DependentUpon> </EmbeddedResource> + <EmbeddedResource Include="OS\Win95\Win95Apps\AddressBook\FRMWinClassicAddressBookNewContact.resx"> + <DependentUpon>FRMWinClassicAddressBookNewContact.cs</DependentUpon> + </EmbeddedResource> <EmbeddedResource Include="OS\Win95\Win95Apps\TestApp.resx"> <DependentUpon>TestApp.cs</DependentUpon> </EmbeddedResource> <EmbeddedResource Include="OS\Win95\Win95Apps\WebChat1998.resx"> <DependentUpon>WebChat1998.cs</DependentUpon> </EmbeddedResource> - <EmbeddedResource Include="OS\Win95\Win95Apps\WinClassicAddressBook.resx"> + <EmbeddedResource Include="OS\Win95\Win95Apps\AddressBook\FRMWinClassicAddressBookNewFolder.resx"> + <DependentUpon>FRMWinClassicAddressBookNewFolder.cs</DependentUpon> + </EmbeddedResource> + <EmbeddedResource Include="OS\Win95\Win95Apps\AddressBook\WinClassicAddressBook.resx"> <DependentUpon>WinClassicAddressBook.cs</DependentUpon> </EmbeddedResource> <EmbeddedResource Include="OS\Win95\Win95Apps\WinClassicDownloader.resx"> @@ -237,6 +294,9 @@ <EmbeddedResource Include="OS\Win95\Win95TaskBarItem.resx"> <DependentUpon>Win95TaskBarItem.cs</DependentUpon> </EmbeddedResource> + <EmbeddedResource Include="OS\Win98\Win98.resx"> + <DependentUpon>Win98.cs</DependentUpon> + </EmbeddedResource> <EmbeddedResource Include="Properties\Resources.resx"> <Generator>ResXFileCodeGenerator</Generator> <SubType>Designer</SubType> @@ -305,6 +365,9 @@ <Content Include="Resources\WinClassic\Win95SideBar.png" /> <Content Include="Resources\WinClassic\Win95Start.wav" /> <None Include="Resources\WinClassic\Win95Warning.png" /> + <None Include="Resources\WinClassic\WinClassicAddressBookNewIcon.png" /> + <None Include="Resources\WinClassic\WinClassicAddressBookPropertiesIcon.png" /> + <None Include="Resources\WinClassic\WinClassicAddressBookDeleteIcon.png" /> <Content Include="Resources\WinClassic\WinClassicClock.png" /> <Content Include="Resources\WinClassic\WinClassicComputer.png" /> <None Include="Resources\WinClassic\WinClassicCopy.png" /> @@ -312,6 +375,7 @@ <Content Include="Resources\WinClassic\WinClassicDocuments.png" /> <Content Include="Resources\WinClassic\WinClassicFind.png" /> <Content Include="Resources\WinClassic\WinClassicFolder.png" /> + <None Include="Resources\WinClassic\WinClassicGENERALApplicationToolbarBackground.png" /> <Content Include="Resources\WinClassic\WinClassicHelp.png" /> <None Include="Resources\WinClassic\WinClassicHWCV.png" /> <Content Include="Resources\WinClassic\WinClassicIE4.png" /> @@ -332,6 +396,7 @@ <Content Include="Resources\WinClassic\WinClassicStart.png" /> <Content Include="Resources\WinClassic\WinClassicSuspend.png" /> <Content Include="Resources\WinClassic\WinClassicTaskBar.png" /> + <Content Include="Resources\WinClassic\WinClassicTaskbarItem.png" /> <Content Include="Resources\WinClassic\WinClassicTime.png" /> </ItemGroup> <ItemGroup> @@ -340,6 +405,7 @@ <Name>TimeHACK.Engine</Name> </ProjectReference> </ItemGroup> + <ItemGroup /> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <!-- 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. diff --git a/TimeHACK.Main/TitleScreen.Designer.cs b/TimeHACK.Main/TitleScreen.Designer.cs index 0437c60..6ecbda3 100644 --- a/TimeHACK.Main/TitleScreen.Designer.cs +++ b/TimeHACK.Main/TitleScreen.Designer.cs @@ -61,7 +61,7 @@ this.gameversion.Text = "gameversion"; this.gameversion.MouseLeave += new System.EventHandler(this.gameversion_MouseLeave); this.gameversion.MouseHover += new System.EventHandler(this.gameversion_MouseHover); - // + this.gameversion.Click += new System.EventHandler(this.startbutton_Click); // vm_mode // this.vm_mode.AutoSize = true; @@ -214,6 +214,7 @@ this.startbutton.Size = new System.Drawing.Size(279, 22); this.startbutton.TabIndex = 12; this.startbutton.TabStop = false; + this.startbutton.Click += new System.EventHandler(this.startbutton_Click); // // TitleScreen // diff --git a/TimeHACK.Main/TitleScreen.cs b/TimeHACK.Main/TitleScreen.cs index 0edb329..1b3c52c 100644 --- a/TimeHACK.Main/TitleScreen.cs +++ b/TimeHACK.Main/TitleScreen.cs @@ -5,6 +5,7 @@ using System.IO; using System.Windows.Forms; using TimeHACK.OS.Win95; using TimeHACK.Engine; +using static TimeHACK.Engine.SaveSystem; namespace TimeHACK { @@ -18,15 +19,45 @@ namespace TimeHACK public static DirectoryInfo thfolder; public static DirectoryInfo datafolder; public static DirectoryInfo profilefolder; + public static NewGameDialog newGameBox; + public static LoadGameDialog loadGameBox; + + public void StartGame() + { + //TODO: You may want to handle story stuff to decide what OS to boot here. + if (Convert.ToInt32(VM_Width.Text) == 1337 && Convert.ToInt32(VM_Height.Text) == 1337) + { + leet(); + } + else + // If VM Mode is not enabled + if (vm_mode.Checked != true) + { + // Generate fullscreen desktop + frm95 = new Windows95(); + frm95.TopMost = true; + frm95.FormBorderStyle = FormBorderStyle.None; + frm95.WindowState = FormWindowState.Maximized; + frm95.Show(); + Hide(); + } + // If VM Mode is enabled + else + { + // Generate desktop with size entered by user + frm95 = new Windows95(); + frm95.FormBorderStyle = FormBorderStyle.None; + frm95.Size = new Size(Convert.ToInt32(VM_Width.Text), Convert.ToInt32(VM_Height.Text)); + frm95.FormBorderStyle = FormBorderStyle.Fixed3D; + frm95.Show(); + Hide(); + } + } + public TitleScreen() { InitializeComponent(); - if (!Directory.Exists("C:\\TimeHack")) thfolder = Directory.CreateDirectory("C:\\TimeHack"); - else thfolder = new DirectoryInfo("C:\\TimeHack"); - datafolder = Directory.CreateDirectory(thfolder.FullName + "\\Data"); - Resources.google.Save(datafolder.FullName + "\\google.jpg"); - profilefolder = Directory.CreateDirectory(thfolder.FullName + "\\Profiles"); } private void closebutton_Click(object sender, EventArgs e) @@ -52,6 +83,22 @@ namespace TimeHACK // When the TitleScreen Loads private void TitleScreen_Load(object sender, EventArgs e) { + if (!Directory.Exists(GameDirectory)) + Directory.CreateDirectory(GameDirectory); + thfolder = new DirectoryInfo(GameDirectory); + + string Data = Path.Combine(thfolder.FullName, "Data"); + if (!Directory.Exists(Data)) + Directory.CreateDirectory(Data); + + string Profiles = Path.Combine(thfolder.FullName, "Profiles"); + if (!Directory.Exists(Profiles)) + Directory.CreateDirectory(Profiles); + + Resources.google.Save(Path.Combine(Data, "google.jpg")); + profilefolder = Directory.CreateDirectory(Path.Combine(thfolder.FullName, "\\Profiles")); + + // Set GameVersion gameversion.Text = "TimeHACK " + Program.gameID; @@ -102,34 +149,14 @@ namespace TimeHACK // When NewGame is Clicked private void NewGame_Click(object sender, EventArgs e) { - if (Convert.ToInt32(VM_Width.Text) == 1337 && Convert.ToInt32(VM_Height.Text) == 1337) - { - leet(); - } - else - // If VM Mode is not enabled - if (vm_mode.Checked != true) - { - // Generate fullscreen desktop - frm95 = new Windows95(); - frm95.TopMost = true; - frm95.FormBorderStyle = FormBorderStyle.None; - frm95.WindowState = FormWindowState.Maximized; - frm95.Show(); - Hide(); - } - // If VM Mode is enabled - else + newGameBox = new NewGameDialog(); + newGameBox.ShowDialog(); + + if (newGameBox.Successful == true) { - // Generate desktop with size entered by user - frm95 = new Windows95(); - frm95.FormBorderStyle = FormBorderStyle.None; - frm95.Size = new Size(Convert.ToInt32(VM_Width.Text), Convert.ToInt32(VM_Height.Text)); - frm95.FormBorderStyle = FormBorderStyle.Fixed3D; - frm95.Show(); - Hide(); + NewGame(); + StartGame(); } - } public void BSODRewind(object sender, EventArgs e) @@ -177,7 +204,19 @@ namespace TimeHACK #region LoadGame private void LoadGame_Click(object sender, EventArgs e) { + loadGameBox = new LoadGameDialog(); + loadGameBox.ShowDialog(); + //var result = LoadSave(); + //if(result == false) + //{ + // MessageBox.Show(caption: "No save found.", text: "No save was found on your system. However, we have created a new one, and we will start it up for you."); + //} + if (loadGameBox.successful == true) + { + LoadSave(); + StartGame(); + } } private void LoadGame_Enter(object sender, EventArgs e) { @@ -215,5 +254,18 @@ namespace TimeHACK { gameversion.Text = "TimeHACK " + Program.gameID; } + + private void startbutton_Click(object sender, EventArgs e) + { + if (DevMode == true) + { + DevMode = false; + gameversion.Text = "Developer Mode Deactivated"; + } else { + DevMode = true; + gameversion.Text = "Developer Mode Activated"; + } + + } } } diff --git a/TimeHACK.Main/UI/IProgressBar.cs b/TimeHACK.Main/UI/IProgressBar.cs new file mode 100644 index 0000000..d16debf --- /dev/null +++ b/TimeHACK.Main/UI/IProgressBar.cs @@ -0,0 +1,234 @@ +using System; +using System.Collections.Generic; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace TimeHACK.UI +{ + public class ProgressBar : Control + { + private Color _pColor = Color.DarkBlue; + private ProgressBarStyle _style = ProgressBarStyle.Continuous; + + private Timer RedrawTimer = null; + + public Color ProgressColor + { + get + { + return _pColor; + } + set + { + _pColor = value; Refresh(); + } + } + + + public ProgressBarStyle Style + { + get + { + return _style; + } + set + { + _style = value; Refresh(); + } + } + + + private double _max = 100.0; + private double _min = 0.0; + + public double Maximum + { + get + { + return _max; + } + set + { + _max = value; Refresh(); + } + } + public double Minimum + { + get + { + return _min; + } + set + { + _min = value; Refresh(); + } + } + + + private int _blockWidth = 14; + + public int BlockWidth + { + get + { + return _blockWidth; + } + set + { + _blockWidth = value; + Refresh(); + } + } + + private int _blockSpacing = 2; + + public int BlockSpacing + { + get + { + return _blockSpacing; + } + set + { + _blockSpacing = value; + Refresh(); + } + } + + public ProgressBar() : base() + { + MarqueeWidth = 125; + BlockWidth = 20; + BlockSpacing = 5; + Minimum = 0.00; + Maximum = 100.0; + Style = ProgressBarStyle.Continuous; + ProgressColor = Color.DarkBlue; + RedrawTimer = new Timer(); + RedrawTimer.Tick += (o, a) => + { + if (this.Style == ProgressBarStyle.Marquee) + { + if (_marqueePos >= this.Width) + _marqueePos = 0; + else + _marqueePos++; + this.Refresh(); + } + }; + RedrawTimer.Interval = 50; + } + + private double _value = 0.00; + + public double Value + { + get + { + return _value; + } + set + { + if (value < Minimum || value > Maximum) + throw new ArgumentOutOfRangeException("The value is outside the minimum and maximum range."); + this.Refresh(); + _value = value; + } + } + + private int _marqueeWidth = 14; + + public int MarqueeWidth + { + get + { + return _marqueeWidth; + } + set + { + _marqueeWidth = value; + Refresh(); + } + } + + private bool _showText = false; + + public bool ShowText + { + get + { + return _showText; + } + set + { + _showText = value; + Refresh(); + } + } + + protected override void OnVisibleChanged(EventArgs e) + { + if (Visible) + RedrawTimer.Start(); + else + RedrawTimer.Stop(); + } + + private int _marqueePos = 0; + + protected override void OnPaint(PaintEventArgs e) + { + base.OnPaint(e); + var g = e.Graphics; + g.Clear(BackColor); + //Stolen from the ShiftOS code :3 + switch (Style) + { + case ProgressBarStyle.Continuous: + double width = linear(this.Value, this.Minimum, this.Maximum, 0, this.Width); + g.FillRectangle(new SolidBrush(ProgressColor), new RectangleF(0, 0, (float)width, this.Height)); + break; + case ProgressBarStyle.Blocks: + int block_count = this.Width / (this.BlockWidth + this.BlockSpacing); + int blocks = (int)linear(this.Value, this.Minimum, this.Maximum, 0, block_count); + for (int i = 0; i < blocks - 1; i++) + { + int position = i * (BlockWidth + BlockSpacing); + g.FillRectangle(new SolidBrush(ProgressColor), new Rectangle(position, 0, BlockWidth, this.Height)); + } + break; + case ProgressBarStyle.Marquee: + g.FillRectangle(new SolidBrush(ProgressColor), new Rectangle(_marqueePos, 0, MarqueeWidth, this.Height)); + break; + } + if (ShowText) + { + var f = this.Font; + var t = this.Text; + var size = g.MeasureString(t, f); + var loc = new PointF( + (this.Width - size.Width) / 2, + (this.Height - size.Height) / 2 + ); + var color = this.ForeColor; + g.DrawString(t, f, new SolidBrush(color), loc); + } + + } + + ///<summary> + /// Simple linear interpolation algorithm. (http://stackoverflow.com/questions/12838007/c-sharp-linear-interpolation) + /// </summary> + private double linear(double x, double x0, double x1, double y0, double y1) + { + if ((x1 - x0) == 0) + { + return (y0 + y1) / 2; + } + return y0 + (x - x0) * (y1 - y0) / (x1 - x0); + } + } +} diff --git a/TimeHACK.Main/bin/Release/TimeHACK.Engine.dll b/TimeHACK.Main/bin/Release/TimeHACK.Engine.dll Binary files differindex 4bb4674..6e12988 100644 --- a/TimeHACK.Main/bin/Release/TimeHACK.Engine.dll +++ b/TimeHACK.Main/bin/Release/TimeHACK.Engine.dll diff --git a/TimeHACK.Main/bin/Release/TimeHACK.Engine.pdb b/TimeHACK.Main/bin/Release/TimeHACK.Engine.pdb Binary files differindex bea88dc..7eebc93 100644 --- a/TimeHACK.Main/bin/Release/TimeHACK.Engine.pdb +++ b/TimeHACK.Main/bin/Release/TimeHACK.Engine.pdb diff --git a/TimeHACK.Main/bin/Release/TimeHACK.application b/TimeHACK.Main/bin/Release/TimeHACK.application index 869f3dc..496a935 100644 --- a/TimeHACK.Main/bin/Release/TimeHACK.application +++ b/TimeHACK.Main/bin/Release/TimeHACK.application @@ -7,14 +7,14 @@ <framework targetVersion="4.5.2" profile="Full" supportedRuntime="4.0.30319" /> </compatibleFrameworks> <dependency> - <dependentAssembly dependencyType="install" codebase="TimeHACK.exe.manifest" size="22480"> + <dependentAssembly dependencyType="install" codebase="TimeHACK.exe.manifest" size="22903"> <assemblyIdentity name="TimeHACK.exe" version="1.0.1.0" publicKeyToken="0000000000000000" language="en" processorArchitecture="msil" type="win32" /> <hash> <dsig:Transforms> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> </dsig:Transforms> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> - <dsig:DigestValue>2HPIdiZqquZgs5r33pAG5zPGGOSw61XmsnFKC99cVUA=</dsig:DigestValue> + <dsig:DigestValue>hMTjdJiibiTYqKxR7HqCakXJqGnrz7XPeVCRAsbaM1k=</dsig:DigestValue> </hash> </dependentAssembly> </dependency> diff --git a/TimeHACK.Main/bin/Release/TimeHACK.exe b/TimeHACK.Main/bin/Release/TimeHACK.exe Binary files differindex 0ae27b4..6c10f28 100644 --- a/TimeHACK.Main/bin/Release/TimeHACK.exe +++ b/TimeHACK.Main/bin/Release/TimeHACK.exe diff --git a/TimeHACK.Main/bin/Release/TimeHACK.exe.manifest b/TimeHACK.Main/bin/Release/TimeHACK.exe.manifest index 6b033b1..42135c9 100644 --- a/TimeHACK.Main/bin/Release/TimeHACK.exe.manifest +++ b/TimeHACK.Main/bin/Release/TimeHACK.exe.manifest @@ -56,26 +56,26 @@ </dependentAssembly> </dependency> <dependency> - <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.exe" size="4759040"> + <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.exe" size="4812288"> <assemblyIdentity name="TimeHACK" version="1.0.0.0" language="neutral" processorArchitecture="msil" /> <hash> <dsig:Transforms> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> </dsig:Transforms> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> - <dsig:DigestValue>7LWP70+epu/ZatYgTAt1zLj3tUDScjNPBFhFDYlM4NU=</dsig:DigestValue> + <dsig:DigestValue>AKsANA7gB/uA+0C5YVulN2jRooS99Y9QISJmcYJyuCY=</dsig:DigestValue> </hash> </dependentAssembly> </dependency> <dependency> - <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.Engine.dll" size="185344"> + <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.Engine.dll" size="187392"> <assemblyIdentity name="TimeHACK.Engine" version="1.0.0.0" language="neutral" processorArchitecture="msil" /> <hash> <dsig:Transforms> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> </dsig:Transforms> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> - <dsig:DigestValue>m6y3wcwMukQ5TrLCcX8fgYK8EJp+K9PMtNF0cSKByXA=</dsig:DigestValue> + <dsig:DigestValue>OYL3W6VPjR/jevpWgri4MYg7bMP4XeB+2OfDy+NvgfU=</dsig:DigestValue> </hash> </dependentAssembly> </dependency> @@ -115,13 +115,13 @@ <dsig:DigestValue>M69a0Q8VAYpaeWem7o8i+9iv5cJdzgRLyWD48mOZQiM=</dsig:DigestValue> </hash> </file> - <file name="Resources\IE4\googleprototype.html" size="2575"> + <file name="Resources\IE4\googleprototype.html" size="2571"> <hash> <dsig:Transforms> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> </dsig:Transforms> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> - <dsig:DigestValue>EkfQ8aLPyyAH5829pfeLE7IKs7tDqPXZl2I+MzNMjZo=</dsig:DigestValue> + <dsig:DigestValue>5dxj6DQUI8H4fwy1EkXVnQnRwj/wJVEVSlzyjSYfUgI=</dsig:DigestValue> </hash> </file> <file name="Resources\IE4\ie4start.html" size="1064"> @@ -457,6 +457,15 @@ <dsig:DigestValue>+fshereDl8F60Ef1K3Q1uudUcIBJeWlPAmosAdKe/eY=</dsig:DigestValue> </hash> </file> + <file name="Resources\WinClassic\WinClassicTaskbarItem.png" size="218"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>W0yCwc3lJJFqQfgeTtazQbdAjUboLWojci1PiqJjIBM=</dsig:DigestValue> + </hash> + </file> <file name="Resources\WinClassic\WinClassicTime.png" size="225"> <hash> <dsig:Transforms> diff --git a/TimeHACK.Main/bin/Release/TimeHACK.pdb b/TimeHACK.Main/bin/Release/TimeHACK.pdb Binary files differindex 226fed1..eb3f9e4 100644 --- a/TimeHACK.Main/bin/Release/TimeHACK.pdb +++ b/TimeHACK.Main/bin/Release/TimeHACK.pdb diff --git a/TimeHACK.Main/bin/Release/TimeHACK.vshost.application b/TimeHACK.Main/bin/Release/TimeHACK.vshost.application index 869f3dc..797af7b 100644 --- a/TimeHACK.Main/bin/Release/TimeHACK.vshost.application +++ b/TimeHACK.Main/bin/Release/TimeHACK.vshost.application @@ -7,14 +7,14 @@ <framework targetVersion="4.5.2" profile="Full" supportedRuntime="4.0.30319" /> </compatibleFrameworks> <dependency> - <dependentAssembly dependencyType="install" codebase="TimeHACK.exe.manifest" size="22480"> + <dependentAssembly dependencyType="install" codebase="TimeHACK.exe.manifest" size="22903"> <assemblyIdentity name="TimeHACK.exe" version="1.0.1.0" publicKeyToken="0000000000000000" language="en" processorArchitecture="msil" type="win32" /> <hash> <dsig:Transforms> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> </dsig:Transforms> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> - <dsig:DigestValue>2HPIdiZqquZgs5r33pAG5zPGGOSw61XmsnFKC99cVUA=</dsig:DigestValue> + <dsig:DigestValue>Uz3V5ZfPvL8kbLdPsTxWUf0G46Tk2FvGdS//5mccIVQ=</dsig:DigestValue> </hash> </dependentAssembly> </dependency> diff --git a/TimeHACK.Main/bin/Release/TimeHACK.vshost.exe.manifest b/TimeHACK.Main/bin/Release/TimeHACK.vshost.exe.manifest index 6b033b1..375c506 100644 --- a/TimeHACK.Main/bin/Release/TimeHACK.vshost.exe.manifest +++ b/TimeHACK.Main/bin/Release/TimeHACK.vshost.exe.manifest @@ -56,26 +56,26 @@ </dependentAssembly> </dependency> <dependency> - <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.exe" size="4759040"> + <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.exe" size="4796416"> <assemblyIdentity name="TimeHACK" version="1.0.0.0" language="neutral" processorArchitecture="msil" /> <hash> <dsig:Transforms> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> </dsig:Transforms> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> - <dsig:DigestValue>7LWP70+epu/ZatYgTAt1zLj3tUDScjNPBFhFDYlM4NU=</dsig:DigestValue> + <dsig:DigestValue>6TXNhM+YgvjkCt77w0GQTcIrotJF2QVUhEdYf1z/jr4=</dsig:DigestValue> </hash> </dependentAssembly> </dependency> <dependency> - <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.Engine.dll" size="185344"> + <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.Engine.dll" size="188928"> <assemblyIdentity name="TimeHACK.Engine" version="1.0.0.0" language="neutral" processorArchitecture="msil" /> <hash> <dsig:Transforms> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> </dsig:Transforms> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> - <dsig:DigestValue>m6y3wcwMukQ5TrLCcX8fgYK8EJp+K9PMtNF0cSKByXA=</dsig:DigestValue> + <dsig:DigestValue>IHN6zq12VyThKYP0thtt/7SHfFzso+22RuHWIy0c4dg=</dsig:DigestValue> </hash> </dependentAssembly> </dependency> @@ -115,13 +115,13 @@ <dsig:DigestValue>M69a0Q8VAYpaeWem7o8i+9iv5cJdzgRLyWD48mOZQiM=</dsig:DigestValue> </hash> </file> - <file name="Resources\IE4\googleprototype.html" size="2575"> + <file name="Resources\IE4\googleprototype.html" size="2571"> <hash> <dsig:Transforms> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> </dsig:Transforms> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> - <dsig:DigestValue>EkfQ8aLPyyAH5829pfeLE7IKs7tDqPXZl2I+MzNMjZo=</dsig:DigestValue> + <dsig:DigestValue>5dxj6DQUI8H4fwy1EkXVnQnRwj/wJVEVSlzyjSYfUgI=</dsig:DigestValue> </hash> </file> <file name="Resources\IE4\ie4start.html" size="1064"> @@ -457,6 +457,15 @@ <dsig:DigestValue>+fshereDl8F60Ef1K3Q1uudUcIBJeWlPAmosAdKe/eY=</dsig:DigestValue> </hash> </file> + <file name="Resources\WinClassic\WinClassicTaskbarItem.png" size="218"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>W0yCwc3lJJFqQfgeTtazQbdAjUboLWojci1PiqJjIBM=</dsig:DigestValue> + </hash> + </file> <file name="Resources\WinClassic\WinClassicTime.png" size="225"> <hash> <dsig:Transforms> diff --git a/TimeHACK.Main/bin/Release/app.publish/TimeHACK.exe b/TimeHACK.Main/bin/Release/app.publish/TimeHACK.exe Binary files differindex 0ae27b4..6c10f28 100644 --- a/TimeHACK.Main/bin/Release/app.publish/TimeHACK.exe +++ b/TimeHACK.Main/bin/Release/app.publish/TimeHACK.exe diff --git a/TimeHACK.Main/bin/x86/Release/Newtonsoft.Json.dll b/TimeHACK.Main/bin/x86/Release/Newtonsoft.Json.dll Binary files differnew file mode 100644 index 0000000..bc3ef13 --- /dev/null +++ b/TimeHACK.Main/bin/x86/Release/Newtonsoft.Json.dll diff --git a/TimeHACK.Main/bin/x86/Release/TimeHACK.Engine.dll b/TimeHACK.Main/bin/x86/Release/TimeHACK.Engine.dll Binary files differnew file mode 100644 index 0000000..86d9598 --- /dev/null +++ b/TimeHACK.Main/bin/x86/Release/TimeHACK.Engine.dll diff --git a/TimeHACK.Main/bin/x86/Release/TimeHACK.Engine.pdb b/TimeHACK.Main/bin/x86/Release/TimeHACK.Engine.pdb Binary files differnew file mode 100644 index 0000000..10716d1 --- /dev/null +++ b/TimeHACK.Main/bin/x86/Release/TimeHACK.Engine.pdb diff --git a/TimeHACK.Main/bin/x86/Release/TimeHACK.application b/TimeHACK.Main/bin/x86/Release/TimeHACK.application new file mode 100644 index 0000000..dace83f --- /dev/null +++ b/TimeHACK.Main/bin/x86/Release/TimeHACK.application @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2"> + <assemblyIdentity name="TimeHACK.application" version="1.0.1.0" publicKeyToken="0000000000000000" language="en" processorArchitecture="x86" xmlns="urn:schemas-microsoft-com:asm.v1" /> + <description asmv2:publisher="HistacomCS Development Team" asmv2:product="HistacomCS" asmv2:supportUrl="http://www.ashifter.ml/histacom/forum" xmlns="urn:schemas-microsoft-com:asm.v1" /> + <deployment install="true" mapFileExtensions="true" co.v1:createDesktopShortcut="true" /> + <compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2"> + <framework targetVersion="4.5.2" profile="Full" supportedRuntime="4.0.30319" /> + </compatibleFrameworks> + <dependency> + <dependentAssembly dependencyType="install" codebase="TimeHACK.exe.manifest" size="22900"> + <assemblyIdentity name="TimeHACK.exe" version="1.0.1.0" publicKeyToken="0000000000000000" language="en" processorArchitecture="x86" type="win32" /> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>9XsHksXOk2fhEZpCOukwSKK7W0HTOCy6H8LOn/IMa6M=</dsig:DigestValue> + </hash> + </dependentAssembly> + </dependency> +</asmv1:assembly>
\ No newline at end of file diff --git a/TimeHACK.Main/bin/x86/Release/TimeHACK.exe b/TimeHACK.Main/bin/x86/Release/TimeHACK.exe Binary files differnew file mode 100644 index 0000000..39b68e0 --- /dev/null +++ b/TimeHACK.Main/bin/x86/Release/TimeHACK.exe diff --git a/TimeHACK.Main/bin/x86/Release/TimeHACK.exe.manifest b/TimeHACK.Main/bin/x86/Release/TimeHACK.exe.manifest new file mode 100644 index 0000000..d80f860 --- /dev/null +++ b/TimeHACK.Main/bin/x86/Release/TimeHACK.exe.manifest @@ -0,0 +1,478 @@ +<?xml version="1.0" encoding="utf-8"?> +<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2"> + <asmv1:assemblyIdentity name="TimeHACK.exe" version="1.0.1.0" publicKeyToken="0000000000000000" language="en" processorArchitecture="x86" type="win32" /> + <description asmv2:publisher="HistacomCS Development Team" asmv2:product="HistacomCS" asmv2:supportUrl="http://www.ashifter.ml/histacom/forum" xmlns="urn:schemas-microsoft-com:asm.v1" /> + <application /> + <entryPoint> + <assemblyIdentity name="TimeHACK" version="1.0.0.0" language="neutral" processorArchitecture="x86" /> + <commandLine file="TimeHACK.exe" parameters="" /> + </entryPoint> + <co.v1:useManifestForTrust xmlns="urn:schemas-microsoft-com:asm.v1" /> + <trustInfo> + <security> + <applicationRequestMinimum> + <PermissionSet Unrestricted="true" ID="Custom" SameSite="site" /> + <defaultAssemblyRequest permissionSetReference="Custom" /> + </applicationRequestMinimum> + <requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3"> + <!-- + UAC Manifest Options + If you want to change the Windows User Account Control level replace the + requestedExecutionLevel node with one of the following. + + <requestedExecutionLevel level="asInvoker" uiAccess="false" /> + <requestedExecutionLevel level="requireAdministrator" uiAccess="false" /> + <requestedExecutionLevel level="highestAvailable" uiAccess="false" /> + + If you want to utilize File and Registry Virtualization for backward + compatibility then delete the requestedExecutionLevel node. + --> + <requestedExecutionLevel level="asInvoker" uiAccess="false" /> + </requestedPrivileges> + </security> + </trustInfo> + <dependency> + <dependentOS> + <osVersionInfo> + <os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" /> + </osVersionInfo> + </dependentOS> + </dependency> + <dependency> + <dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true"> + <assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" /> + </dependentAssembly> + </dependency> + <dependency> + <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Newtonsoft.Json.dll" size="654848"> + <assemblyIdentity name="Newtonsoft.Json" version="10.0.0.0" publicKeyToken="30AD4FE6B2A6AEED" language="neutral" processorArchitecture="msil" /> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>HCRfTIXCraEwvFmULJC3AcJMBu2+PrJYOO2N5PhSU1w=</dsig:DigestValue> + </hash> + </dependentAssembly> + </dependency> + <dependency> + <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.exe" size="4804608"> + <assemblyIdentity name="TimeHACK" version="1.0.0.0" language="neutral" processorArchitecture="x86" /> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>dobNIsLrbKz25YZyEcMCF/ptbWXJIyNOnts8BCU7vNs=</dsig:DigestValue> + </hash> + </dependentAssembly> + </dependency> + <dependency> + <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.Engine.dll" size="187392"> + <assemblyIdentity name="TimeHACK.Engine" version="1.0.0.0" language="neutral" processorArchitecture="msil" /> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>4Bmiv+Bv5HnrACFrxYEZWLpxwAHN9AGwSRIgpeHajHM=</dsig:DigestValue> + </hash> + </dependentAssembly> + </dependency> + <file name="Resources\12padams_EULA.txt" size="1306"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>lqdCpqWSG703aUKUZuVLCGvz3fv9DSk/gweD2eGYZrQ=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\Icon128x.ico" size="99678"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>nzG7pg3H+3uPdr/lzLxyroAH8XD1zvIYW4peV9fAD6M=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\IE4\google.jpg" size="6218"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>MsBfDGQbMHg7EHMcNY/8mrPtzIR7Si+xtJAcxLHz+wo=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\IE4\googlehome.html" size="473"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>M69a0Q8VAYpaeWem7o8i+9iv5cJdzgRLyWD48mOZQiM=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\IE4\googleprototype.html" size="2571"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>5dxj6DQUI8H4fwy1EkXVnQnRwj/wJVEVSlzyjSYfUgI=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\IE4\ie4start.html" size="1064"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>GI6mR05IfCFwEQvctIONdEaTnhHSnhbc3fLErCxmNJE=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\IE4\padams.html" size="3165"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>k2m2tLIfVCyO67LZX2zSmbVyhl5XLttVgRG6E8/VuF0=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\TitleScreen\Exit.png" size="138932"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>sBCYzVLt3A/I7Gku5XJ8ZLN2L/aR2YJ1WHrzbf+PySI=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\TitleScreen\LoadGame.png" size="178312"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>ZzTzMYl3DLVEP1oagOyinEAULYpX610Iuk3sJnkA+yY=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\TitleScreen\MSExit.png" size="40470"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>LAoVjRnvN8/QnPLwFKlndMujFUfVmwuMdYg2vM+TWZI=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\TitleScreen\MSLoadGame.png" size="47514"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>V0sbr2Q/ES6ckgBpW09YU5PFleJYeN3dWWNN5Bmte6o=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\TitleScreen\MSNewGame.png" size="47088"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>2K2sK/Ba7mlOKw7sF8mza5p8tbxaAewzEqGSBUgZ1mY=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\TitleScreen\NewGame.png" size="179172"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>qmcKcG32LH7iikhI78zkcFVU8d2OB29WrHjaMNxQ31c=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\TitleScreen\TaskBarButton.png" size="387"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>Uj6S88dTZgAwhpS2lddEO1VF5yuGwj31xXwN2s4vPhY=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\TitleScreen\TaskBarClock.png" size="256"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>9h0M8CsC6iXP7E+R3EmdfocnzxgjfrC53xwwS5GM3CQ=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\TitleScreen\TimeHACK_Logo.png" size="879972"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>w0UragVhbcpGR96DEyDG3918bEsoNR0lYqukJOOY6EM=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\TitleScreen\TitleScreenBG.png" size="1569144"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>zrsVsDepWdceKYuysygzl34scDD+yFK0W6RY7elAjKc=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\16Color.png" size="657"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>DwYeH+xQs13qziRfLclvR4xdlexQmcNybOPlAfAktNw=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\256Color.png" size="264"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>a4iY6QVNpzMbNlIfIPmdmKdt6nRnAQGMDjOPWrM1oA8=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\TrueColor.png" size="284"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>GyCFWEz6VhwTq8fb3O8SuIT0U2WVgelHbDp5L8lW7KA=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\Win95SideBar.png" size="835"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>Z+wcS9Drzc+B2ytpUhd3VCyzHQlvomsyycp/Xiau5Vg=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\Win95Start.wav" size="270382"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>AP1JKyEdfo5h1ffRNHo2ZLE9DVXPGViMIN5NeDTfJ5E=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicClock.png" size="221"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>wdycAfKPNJg2GO6pIc0JKDnDhE1zrtpamp5CVVKPOhw=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicComputer.png" size="410"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>7qdgZRiaGUdkQELrWMmy0X2MexD+1MiZHIJbd5Uml2E=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicDocuments.png" size="346"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>YQWpE0bdQOdQx4JECZ5oRvN5c6pb+uMgeovoDdT/sW8=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicFind.png" size="519"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>+zAe0vYsdCQdvT5DQ3XujGzfmMm5Mx5kvMQWGy32vq4=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicFolder.png" size="285"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>VQvjXXCgsNEyzV6RvhuYZ5Reu41t0D7HH87dZYk7KcI=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicHelp.png" size="468"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>rukmHuBnlGNy4RGEvN4wWt8Fz+EV9Z2izAvd+61FUR4=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicIE4.png" size="534"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>pF6dDVQ6eNpFbiWSIN/nBMdJ/Oev6to/C/bBaGbEfoo=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicInbox.png" size="614"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>slW3YsxMrkkV9T4PE0LgBfh9DIWGvIxcA1Tk4HQlPYw=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicMSN.png" size="557"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>+Oqix05d9bmuGzXELIoh/sDI44JgBwy7xci7X79Q2KA=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicNetworking.png" size="492"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>qClKL3sLGduhUUkgph3TLlUcOJ9Rap+lqX32zp8f31A=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicOutlook.png" size="632"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>AzvxwpGvMrksiXkc3mKW5uuzp7TsxUxS7fhCKr9tmWE=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicProgramItem.png" size="312"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>/J+u19nP9/3Umk2QZ4141A2KL/z1/EzabYWTsBAvdwQ=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicPrograms.png" size="377"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>v5spqrMy5B5E+JCBZbgg0zI5maO16zQPzVadt19KO5U=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicRecycle.png" size="522"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>hfdhKI5M05j5cHUOVxVwftsZVBbycC/w4+J5mknwmr0=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicRun.png" size="439"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>SR16+bLKwtB7indZu424Gg7EZatjjh3QQO1xMK78ItM=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicSettings.png" size="543"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>e5Sz92eH3B1+fs6E/GQP+h4q2LmpTgNT43EkgevfryI=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicShutdown.png" size="461"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>bzXwypoYaLnjOMNStpcJjXIGFT2/HXJ8Awftsf+d6ZM=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicStart.png" size="380"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>xR7A8s/y3cRUwZTEB5N3A8KIF0mB8k5y4azjaVpgz3U=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicSuspend.png" size="467"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>zbhDuGL3PMWT/neUqIW70NotSiGrpCOiZlDRjp9jsfw=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicTaskBar.png" size="127"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>+fshereDl8F60Ef1K3Q1uudUcIBJeWlPAmosAdKe/eY=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicTaskbarItem.png" size="218"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>W0yCwc3lJJFqQfgeTtazQbdAjUboLWojci1PiqJjIBM=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicTime.png" size="225"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>x6TTsUiEHqlRiSdsR7WH5jiWTj1u/cJsO7BItxU4X9Q=</dsig:DigestValue> + </hash> + </file> +</asmv1:assembly>
\ No newline at end of file diff --git a/TimeHACK.Main/bin/x86/Release/TimeHACK.pdb b/TimeHACK.Main/bin/x86/Release/TimeHACK.pdb Binary files differnew file mode 100644 index 0000000..d3a9bf2 --- /dev/null +++ b/TimeHACK.Main/bin/x86/Release/TimeHACK.pdb diff --git a/TimeHACK.Main/bin/x86/Release/app.publish/TimeHACK.exe b/TimeHACK.Main/bin/x86/Release/app.publish/TimeHACK.exe Binary files differnew file mode 100644 index 0000000..39b68e0 --- /dev/null +++ b/TimeHACK.Main/bin/x86/Release/app.publish/TimeHACK.exe diff --git a/TimeHACK.Main/obj/Release/CoreCompileInputs.cache b/TimeHACK.Main/obj/Release/CoreCompileInputs.cache index 80cd691..7c551b4 100644 --- a/TimeHACK.Main/obj/Release/CoreCompileInputs.cache +++ b/TimeHACK.Main/obj/Release/CoreCompileInputs.cache @@ -1 +1 @@ -b2dbf06aa0cc470c40ca4fe96ade7148963cc456 +55e5267912f35225509997d29deb1d005ac19e4a diff --git a/TimeHACK.Main/obj/Release/DesignTimeResolveAssemblyReferences.cache b/TimeHACK.Main/obj/Release/DesignTimeResolveAssemblyReferences.cache Binary files differindex fc4277d..3502978 100644 --- a/TimeHACK.Main/obj/Release/DesignTimeResolveAssemblyReferences.cache +++ b/TimeHACK.Main/obj/Release/DesignTimeResolveAssemblyReferences.cache diff --git a/TimeHACK.Main/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache b/TimeHACK.Main/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache Binary files differindex 9d8e4f0..b5bc032 100644 --- a/TimeHACK.Main/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache +++ b/TimeHACK.Main/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache diff --git a/TimeHACK.Main/obj/Release/TempPE/Properties.Resources.Designer.cs.dll b/TimeHACK.Main/obj/Release/TempPE/Properties.Resources.Designer.cs.dll Binary files differindex 46f69d2..e237ee5 100644 --- a/TimeHACK.Main/obj/Release/TempPE/Properties.Resources.Designer.cs.dll +++ b/TimeHACK.Main/obj/Release/TempPE/Properties.Resources.Designer.cs.dll diff --git a/TimeHACK.Main/obj/Release/TimeHACK.Engine.Template.Taskbars.Win95TaskBarItem.resources b/TimeHACK.Main/obj/Release/TimeHACK.Engine.Template.Taskbars.Win95TaskBarItem.resources Binary files differindex 6c05a97..9c67c9e 100644 --- a/TimeHACK.Main/obj/Release/TimeHACK.Engine.Template.Taskbars.Win95TaskBarItem.resources +++ b/TimeHACK.Main/obj/Release/TimeHACK.Engine.Template.Taskbars.Win95TaskBarItem.resources diff --git a/TimeHACK.Main/obj/Release/TimeHACK.LoadGameDialog.resources b/TimeHACK.Main/obj/Release/TimeHACK.LoadGameDialog.resources Binary files differnew file mode 100644 index 0000000..6c05a97 --- /dev/null +++ b/TimeHACK.Main/obj/Release/TimeHACK.LoadGameDialog.resources diff --git a/TimeHACK.Main/obj/Release/TimeHACK.LoadGameProfileItem.resources b/TimeHACK.Main/obj/Release/TimeHACK.LoadGameProfileItem.resources Binary files differnew file mode 100644 index 0000000..6c05a97 --- /dev/null +++ b/TimeHACK.Main/obj/Release/TimeHACK.LoadGameProfileItem.resources diff --git a/TimeHACK.Main/obj/Release/TimeHACK.Main.csproj.FileListAbsolute.txt b/TimeHACK.Main/obj/Release/TimeHACK.Main.csproj.FileListAbsolute.txt index dd398fa..2377ecd 100644 --- a/TimeHACK.Main/obj/Release/TimeHACK.Main.csproj.FileListAbsolute.txt +++ b/TimeHACK.Main/obj/Release/TimeHACK.Main.csproj.FileListAbsolute.txt @@ -1,92 +1,31 @@ -D:\Documents\GitHub\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.exe.manifest -D:\Documents\GitHub\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.application -D:\Documents\GitHub\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.exe -D:\Documents\GitHub\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.pdb -D:\Documents\GitHub\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.Engine.dll -D:\Documents\GitHub\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.Engine.pdb -D:\Documents\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.Main.csprojResolveAssemblyReference.cache -D:\Documents\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.Windows95.resources -D:\Documents\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.WinClassicForms.TestApp.resources -D:\Documents\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.WinClassicForms.WinClassicDownloader.resources -D:\Documents\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.WinClassicForms.WinClassicIE4.resources -D:\Documents\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.WinClassicForms.WinClassicInstaller.resources -D:\Documents\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.Properties.Resources.resources -D:\Documents\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.TitleScreen.resources -D:\Documents\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.Main.csproj.GenerateResource.Cache -D:\Documents\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.exe.manifest -D:\Documents\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.application -D:\Documents\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.exe -D:\Documents\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.pdb -C:\Users\Liam\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\bin\Release\TimeHACK.exe.manifest -C:\Users\Liam\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\bin\Release\TimeHACK.application -C:\Users\Liam\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\bin\Release\TimeHACK.exe -C:\Users\Liam\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\bin\Release\TimeHACK.pdb -C:\Users\Liam\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\bin\Release\TimeHACK.Engine.dll -C:\Users\Liam\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\bin\Release\TimeHACK.Engine.pdb -C:\Users\Liam\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.Main.csprojResolveAssemblyReference.cache -C:\Users\Liam\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.WinClassicForms.TestApp.resources -C:\Users\Liam\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.WinClassicForms.WinClassicInstaller.resources -C:\Users\Liam\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.Properties.Resources.resources -C:\Users\Liam\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.TitleScreen.resources -C:\Users\Liam\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.Main.csproj.GenerateResource.Cache -C:\Users\Liam\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.exe.manifest -C:\Users\Liam\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.application -C:\Users\Liam\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.exe -C:\Users\Liam\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.pdb -C:\Users\Liam\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WebChat1998.resources -C:\Users\Liam\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Windows95.resources -C:\Users\Liam\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicIE4.resources -C:\Users\Liam\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicDownloader.resources -C:\Users\Liam\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.Win95Notepad.resources -C:\Users\Liam\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicHWCV.resources -C:\Users\Liam\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicWordPad.resources -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.exe.manifest -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.application -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.exe -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.pdb -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.Engine.dll -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.Engine.pdb I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.Main.csprojResolveAssemblyReference.cache +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.NewGameDialog.resources I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Windows95.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.AddressBook.FRMWinClassicAddressBookNewContact.resources I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.WinClassicForms.TestApp.resources I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WebChat1998.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.AddressBook.FRMWinClassicAddressBookNewFolder.resources I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicAddressBook.resources I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicDownloader.resources I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicHWCV.resources I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicIE4.resources I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.WinClassicForms.WinClassicInstaller.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicNotepad.resources I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicWordPad.resources I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.Engine.Template.Taskbars.Win95TaskBarItem.resources -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.Properties.Resources.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win98.Win98.resources I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.TitleScreen.resources I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.Main.csproj.GenerateResource.Cache +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.Properties.Resources.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.exe.manifest +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.application +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.exe +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.pdb +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.Engine.dll +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\bin\Release\TimeHACK.Engine.pdb I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.exe.manifest I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.application I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.exe I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.pdb -I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicNotepad.resources -C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.exe -C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.pdb -C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\bin\Release\TimeHACK.exe.manifest -C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\bin\Release\TimeHACK.application -C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\bin\Release\TimeHACK.exe -C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\bin\Release\TimeHACK.pdb -C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\bin\Release\TimeHACK.Engine.dll -C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\bin\Release\TimeHACK.Engine.pdb -C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.Main.csprojResolveAssemblyReference.cache -C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Windows95.resources -C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.WinClassicForms.TestApp.resources -C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WebChat1998.resources -C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicAddressBook.resources -C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicDownloader.resources -C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicHWCV.resources -C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicIE4.resources -C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.WinClassicForms.WinClassicInstaller.resources -C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicNotepad.resources -C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicWordPad.resources -C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.Engine.Template.Taskbars.Win95TaskBarItem.resources -C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.Properties.Resources.resources -C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.TitleScreen.resources -C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.Main.csproj.GenerateResource.Cache -C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.exe.manifest -C:\Users\lempamo\Documents\GitHub\TimeHACK-fork\TimeHACK.Main\obj\Release\TimeHACK.application +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.LoadGameDialog.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.LoadGameProfileItem.resources diff --git a/TimeHACK.Main/obj/Release/TimeHACK.Main.csproj.GenerateResource.Cache b/TimeHACK.Main/obj/Release/TimeHACK.Main.csproj.GenerateResource.Cache Binary files differindex 10057d7..1364508 100644 --- a/TimeHACK.Main/obj/Release/TimeHACK.Main.csproj.GenerateResource.Cache +++ b/TimeHACK.Main/obj/Release/TimeHACK.Main.csproj.GenerateResource.Cache diff --git a/TimeHACK.Main/obj/Release/TimeHACK.Main.csprojResolveAssemblyReference.cache b/TimeHACK.Main/obj/Release/TimeHACK.Main.csprojResolveAssemblyReference.cache Binary files differindex bc11b9a..d6c048a 100644 --- a/TimeHACK.Main/obj/Release/TimeHACK.Main.csprojResolveAssemblyReference.cache +++ b/TimeHACK.Main/obj/Release/TimeHACK.Main.csprojResolveAssemblyReference.cache diff --git a/TimeHACK.Main/obj/Release/TimeHACK.NewGameDialog.resources b/TimeHACK.Main/obj/Release/TimeHACK.NewGameDialog.resources Binary files differnew file mode 100644 index 0000000..6c05a97 --- /dev/null +++ b/TimeHACK.Main/obj/Release/TimeHACK.NewGameDialog.resources diff --git a/TimeHACK.Main/obj/Release/TimeHACK.OS.Win95.Win95Apps.AddressBook.FRMWinClassicAddressBookNewContact.resources b/TimeHACK.Main/obj/Release/TimeHACK.OS.Win95.Win95Apps.AddressBook.FRMWinClassicAddressBookNewContact.resources Binary files differnew file mode 100644 index 0000000..6c05a97 --- /dev/null +++ b/TimeHACK.Main/obj/Release/TimeHACK.OS.Win95.Win95Apps.AddressBook.FRMWinClassicAddressBookNewContact.resources diff --git a/TimeHACK.Main/obj/Release/TimeHACK.OS.Win95.Win95Apps.AddressBook.FRMWinClassicAddressBookNewFolder.resources b/TimeHACK.Main/obj/Release/TimeHACK.OS.Win95.Win95Apps.AddressBook.FRMWinClassicAddressBookNewFolder.resources Binary files differnew file mode 100644 index 0000000..6c05a97 --- /dev/null +++ b/TimeHACK.Main/obj/Release/TimeHACK.OS.Win95.Win95Apps.AddressBook.FRMWinClassicAddressBookNewFolder.resources diff --git a/TimeHACK.Main/obj/Release/TimeHACK.OS.Win95.Win95Apps.WinClassicIE4.resources b/TimeHACK.Main/obj/Release/TimeHACK.OS.Win95.Win95Apps.WinClassicIE4.resources Binary files differindex c198c82..9cbc1d1 100644 --- a/TimeHACK.Main/obj/Release/TimeHACK.OS.Win95.Win95Apps.WinClassicIE4.resources +++ b/TimeHACK.Main/obj/Release/TimeHACK.OS.Win95.Win95Apps.WinClassicIE4.resources diff --git a/TimeHACK.Main/obj/Release/TimeHACK.OS.Win95.Windows95.resources b/TimeHACK.Main/obj/Release/TimeHACK.OS.Win95.Windows95.resources Binary files differindex 813ae27..3e0b423 100644 --- a/TimeHACK.Main/obj/Release/TimeHACK.OS.Win95.Windows95.resources +++ b/TimeHACK.Main/obj/Release/TimeHACK.OS.Win95.Windows95.resources diff --git a/TimeHACK.Main/obj/Release/TimeHACK.OS.Win98.Win98.resources b/TimeHACK.Main/obj/Release/TimeHACK.OS.Win98.Win98.resources Binary files differnew file mode 100644 index 0000000..9944ba5 --- /dev/null +++ b/TimeHACK.Main/obj/Release/TimeHACK.OS.Win98.Win98.resources diff --git a/TimeHACK.Main/obj/Release/TimeHACK.Properties.Resources.resources b/TimeHACK.Main/obj/Release/TimeHACK.Properties.Resources.resources Binary files differindex 699d010..0460cce 100644 --- a/TimeHACK.Main/obj/Release/TimeHACK.Properties.Resources.resources +++ b/TimeHACK.Main/obj/Release/TimeHACK.Properties.Resources.resources diff --git a/TimeHACK.Main/obj/Release/TimeHACK.WinClassicForms.WinClassicInstaller.resources b/TimeHACK.Main/obj/Release/TimeHACK.WinClassicForms.WinClassicInstaller.resources Binary files differindex 281b38f..efaafcd 100644 --- a/TimeHACK.Main/obj/Release/TimeHACK.WinClassicForms.WinClassicInstaller.resources +++ b/TimeHACK.Main/obj/Release/TimeHACK.WinClassicForms.WinClassicInstaller.resources diff --git a/TimeHACK.Main/obj/Release/TimeHACK.application b/TimeHACK.Main/obj/Release/TimeHACK.application index 869f3dc..496a935 100644 --- a/TimeHACK.Main/obj/Release/TimeHACK.application +++ b/TimeHACK.Main/obj/Release/TimeHACK.application @@ -7,14 +7,14 @@ <framework targetVersion="4.5.2" profile="Full" supportedRuntime="4.0.30319" /> </compatibleFrameworks> <dependency> - <dependentAssembly dependencyType="install" codebase="TimeHACK.exe.manifest" size="22480"> + <dependentAssembly dependencyType="install" codebase="TimeHACK.exe.manifest" size="22903"> <assemblyIdentity name="TimeHACK.exe" version="1.0.1.0" publicKeyToken="0000000000000000" language="en" processorArchitecture="msil" type="win32" /> <hash> <dsig:Transforms> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> </dsig:Transforms> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> - <dsig:DigestValue>2HPIdiZqquZgs5r33pAG5zPGGOSw61XmsnFKC99cVUA=</dsig:DigestValue> + <dsig:DigestValue>hMTjdJiibiTYqKxR7HqCakXJqGnrz7XPeVCRAsbaM1k=</dsig:DigestValue> </hash> </dependentAssembly> </dependency> diff --git a/TimeHACK.Main/obj/Release/TimeHACK.exe b/TimeHACK.Main/obj/Release/TimeHACK.exe Binary files differindex 0ae27b4..6c10f28 100644 --- a/TimeHACK.Main/obj/Release/TimeHACK.exe +++ b/TimeHACK.Main/obj/Release/TimeHACK.exe diff --git a/TimeHACK.Main/obj/Release/TimeHACK.exe.manifest b/TimeHACK.Main/obj/Release/TimeHACK.exe.manifest index 6b033b1..42135c9 100644 --- a/TimeHACK.Main/obj/Release/TimeHACK.exe.manifest +++ b/TimeHACK.Main/obj/Release/TimeHACK.exe.manifest @@ -56,26 +56,26 @@ </dependentAssembly> </dependency> <dependency> - <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.exe" size="4759040"> + <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.exe" size="4812288"> <assemblyIdentity name="TimeHACK" version="1.0.0.0" language="neutral" processorArchitecture="msil" /> <hash> <dsig:Transforms> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> </dsig:Transforms> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> - <dsig:DigestValue>7LWP70+epu/ZatYgTAt1zLj3tUDScjNPBFhFDYlM4NU=</dsig:DigestValue> + <dsig:DigestValue>AKsANA7gB/uA+0C5YVulN2jRooS99Y9QISJmcYJyuCY=</dsig:DigestValue> </hash> </dependentAssembly> </dependency> <dependency> - <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.Engine.dll" size="185344"> + <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.Engine.dll" size="187392"> <assemblyIdentity name="TimeHACK.Engine" version="1.0.0.0" language="neutral" processorArchitecture="msil" /> <hash> <dsig:Transforms> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> </dsig:Transforms> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> - <dsig:DigestValue>m6y3wcwMukQ5TrLCcX8fgYK8EJp+K9PMtNF0cSKByXA=</dsig:DigestValue> + <dsig:DigestValue>OYL3W6VPjR/jevpWgri4MYg7bMP4XeB+2OfDy+NvgfU=</dsig:DigestValue> </hash> </dependentAssembly> </dependency> @@ -115,13 +115,13 @@ <dsig:DigestValue>M69a0Q8VAYpaeWem7o8i+9iv5cJdzgRLyWD48mOZQiM=</dsig:DigestValue> </hash> </file> - <file name="Resources\IE4\googleprototype.html" size="2575"> + <file name="Resources\IE4\googleprototype.html" size="2571"> <hash> <dsig:Transforms> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> </dsig:Transforms> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> - <dsig:DigestValue>EkfQ8aLPyyAH5829pfeLE7IKs7tDqPXZl2I+MzNMjZo=</dsig:DigestValue> + <dsig:DigestValue>5dxj6DQUI8H4fwy1EkXVnQnRwj/wJVEVSlzyjSYfUgI=</dsig:DigestValue> </hash> </file> <file name="Resources\IE4\ie4start.html" size="1064"> @@ -457,6 +457,15 @@ <dsig:DigestValue>+fshereDl8F60Ef1K3Q1uudUcIBJeWlPAmosAdKe/eY=</dsig:DigestValue> </hash> </file> + <file name="Resources\WinClassic\WinClassicTaskbarItem.png" size="218"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>W0yCwc3lJJFqQfgeTtazQbdAjUboLWojci1PiqJjIBM=</dsig:DigestValue> + </hash> + </file> <file name="Resources\WinClassic\WinClassicTime.png" size="225"> <hash> <dsig:Transforms> diff --git a/TimeHACK.Main/obj/Release/TimeHACK.pdb b/TimeHACK.Main/obj/Release/TimeHACK.pdb Binary files differindex 226fed1..eb3f9e4 100644 --- a/TimeHACK.Main/obj/Release/TimeHACK.pdb +++ b/TimeHACK.Main/obj/Release/TimeHACK.pdb diff --git a/TimeHACK.Main/obj/x86/Release/CoreCompileInputs.cache b/TimeHACK.Main/obj/x86/Release/CoreCompileInputs.cache index 7c177d3..0769fb6 100644 --- a/TimeHACK.Main/obj/x86/Release/CoreCompileInputs.cache +++ b/TimeHACK.Main/obj/x86/Release/CoreCompileInputs.cache @@ -1 +1 @@ -86b5ff98b766c91f9ca0e0802e11415089e5b2c5 +1b9c46aa867d802039fc56e435e48b2dd2dc4952 diff --git a/TimeHACK.Main/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache b/TimeHACK.Main/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache Binary files differnew file mode 100644 index 0000000..e9b9daa --- /dev/null +++ b/TimeHACK.Main/obj/x86/Release/DesignTimeResolveAssemblyReferences.cache diff --git a/TimeHACK.Main/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache b/TimeHACK.Main/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache Binary files differnew file mode 100644 index 0000000..765d27a --- /dev/null +++ b/TimeHACK.Main/obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache diff --git a/TimeHACK.Main/obj/x86/Release/TempPE/Properties.Resources.Designer.cs.dll b/TimeHACK.Main/obj/x86/Release/TempPE/Properties.Resources.Designer.cs.dll Binary files differnew file mode 100644 index 0000000..1928cb4 --- /dev/null +++ b/TimeHACK.Main/obj/x86/Release/TempPE/Properties.Resources.Designer.cs.dll diff --git a/TimeHACK.Main/obj/x86/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/TimeHACK.Main/obj/x86/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/TimeHACK.Main/obj/x86/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs diff --git a/TimeHACK.Main/obj/x86/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/TimeHACK.Main/obj/x86/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/TimeHACK.Main/obj/x86/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs diff --git a/TimeHACK.Main/obj/x86/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/TimeHACK.Main/obj/x86/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/TimeHACK.Main/obj/x86/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs diff --git a/TimeHACK.Main/obj/x86/Release/TimeHACK.Engine.Template.Taskbars.Win95TaskBarItem.resources b/TimeHACK.Main/obj/x86/Release/TimeHACK.Engine.Template.Taskbars.Win95TaskBarItem.resources Binary files differnew file mode 100644 index 0000000..9c67c9e --- /dev/null +++ b/TimeHACK.Main/obj/x86/Release/TimeHACK.Engine.Template.Taskbars.Win95TaskBarItem.resources diff --git a/TimeHACK.Main/obj/x86/Release/TimeHACK.Main.csproj.FileListAbsolute.txt b/TimeHACK.Main/obj/x86/Release/TimeHACK.Main.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..cf30bc0 --- /dev/null +++ b/TimeHACK.Main/obj/x86/Release/TimeHACK.Main.csproj.FileListAbsolute.txt @@ -0,0 +1,30 @@ +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\bin\x86\Release\TimeHACK.exe.manifest +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\bin\x86\Release\TimeHACK.application +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\bin\x86\Release\TimeHACK.exe +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\bin\x86\Release\TimeHACK.pdb +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\bin\x86\Release\Newtonsoft.Json.dll +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\bin\x86\Release\TimeHACK.Engine.dll +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\bin\x86\Release\TimeHACK.Engine.pdb +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\x86\Release\TimeHACK.Main.csprojResolveAssemblyReference.cache +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\x86\Release\TimeHACK.NewGameDialog.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\x86\Release\TimeHACK.OS.Win95.Windows95.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\x86\Release\TimeHACK.OS.Win95.Win95Apps.AddressBook.FRMWinClassicAddressBookNewContact.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\x86\Release\TimeHACK.WinClassicForms.TestApp.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\x86\Release\TimeHACK.OS.Win95.Win95Apps.WebChat1998.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\x86\Release\TimeHACK.OS.Win95.Win95Apps.AddressBook.FRMWinClassicAddressBookNewFolder.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\x86\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicAddressBook.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\x86\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicDownloader.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\x86\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicHWCV.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\x86\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicIE4.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\x86\Release\TimeHACK.WinClassicForms.WinClassicInstaller.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\x86\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicNotepad.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\x86\Release\TimeHACK.OS.Win95.Win95Apps.WinClassicWordPad.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\x86\Release\TimeHACK.Engine.Template.Taskbars.Win95TaskBarItem.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\x86\Release\TimeHACK.OS.Win98.Win98.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\x86\Release\TimeHACK.Properties.Resources.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\x86\Release\TimeHACK.TitleScreen.resources +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\x86\Release\TimeHACK.Main.csproj.GenerateResource.Cache +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\x86\Release\TimeHACK.exe.manifest +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\x86\Release\TimeHACK.application +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\x86\Release\TimeHACK.exe +I:\Desktop\HistamcomVB\My-TimeHACK\TimeHACK\TimeHACK.Main\obj\x86\Release\TimeHACK.pdb diff --git a/TimeHACK.Main/obj/x86/Release/TimeHACK.Main.csproj.GenerateResource.Cache b/TimeHACK.Main/obj/x86/Release/TimeHACK.Main.csproj.GenerateResource.Cache Binary files differnew file mode 100644 index 0000000..52c2d62 --- /dev/null +++ b/TimeHACK.Main/obj/x86/Release/TimeHACK.Main.csproj.GenerateResource.Cache diff --git a/TimeHACK.Main/obj/x86/Release/TimeHACK.Main.csprojResolveAssemblyReference.cache b/TimeHACK.Main/obj/x86/Release/TimeHACK.Main.csprojResolveAssemblyReference.cache Binary files differnew file mode 100644 index 0000000..567e21d --- /dev/null +++ b/TimeHACK.Main/obj/x86/Release/TimeHACK.Main.csprojResolveAssemblyReference.cache diff --git a/TimeHACK.Main/obj/x86/Release/TimeHACK.NewGameDialog.resources b/TimeHACK.Main/obj/x86/Release/TimeHACK.NewGameDialog.resources Binary files differnew file mode 100644 index 0000000..6c05a97 --- /dev/null +++ b/TimeHACK.Main/obj/x86/Release/TimeHACK.NewGameDialog.resources diff --git a/TimeHACK.Main/obj/x86/Release/TimeHACK.OS.Win95.Win95Apps.AddressBook.FRMWinClassicAddressBookNewContact.resources b/TimeHACK.Main/obj/x86/Release/TimeHACK.OS.Win95.Win95Apps.AddressBook.FRMWinClassicAddressBookNewContact.resources Binary files differnew file mode 100644 index 0000000..6c05a97 --- /dev/null +++ b/TimeHACK.Main/obj/x86/Release/TimeHACK.OS.Win95.Win95Apps.AddressBook.FRMWinClassicAddressBookNewContact.resources diff --git a/TimeHACK.Main/obj/x86/Release/TimeHACK.OS.Win95.Win95Apps.AddressBook.FRMWinClassicAddressBookNewFolder.resources b/TimeHACK.Main/obj/x86/Release/TimeHACK.OS.Win95.Win95Apps.AddressBook.FRMWinClassicAddressBookNewFolder.resources Binary files differnew file mode 100644 index 0000000..6c05a97 --- /dev/null +++ b/TimeHACK.Main/obj/x86/Release/TimeHACK.OS.Win95.Win95Apps.AddressBook.FRMWinClassicAddressBookNewFolder.resources diff --git a/TimeHACK.Main/obj/x86/Release/TimeHACK.OS.Win95.Win95Apps.WebChat1998.resources b/TimeHACK.Main/obj/x86/Release/TimeHACK.OS.Win95.Win95Apps.WebChat1998.resources Binary files differnew file mode 100644 index 0000000..7d689a4 --- /dev/null +++ b/TimeHACK.Main/obj/x86/Release/TimeHACK.OS.Win95.Win95Apps.WebChat1998.resources diff --git a/TimeHACK.Main/obj/x86/Release/TimeHACK.OS.Win95.Win95Apps.WinClassicAddressBook.resources b/TimeHACK.Main/obj/x86/Release/TimeHACK.OS.Win95.Win95Apps.WinClassicAddressBook.resources Binary files differnew file mode 100644 index 0000000..6c05a97 --- /dev/null +++ b/TimeHACK.Main/obj/x86/Release/TimeHACK.OS.Win95.Win95Apps.WinClassicAddressBook.resources diff --git a/TimeHACK.Main/obj/x86/Release/TimeHACK.OS.Win95.Win95Apps.WinClassicDownloader.resources b/TimeHACK.Main/obj/x86/Release/TimeHACK.OS.Win95.Win95Apps.WinClassicDownloader.resources Binary files differnew file mode 100644 index 0000000..6c05a97 --- /dev/null +++ b/TimeHACK.Main/obj/x86/Release/TimeHACK.OS.Win95.Win95Apps.WinClassicDownloader.resources diff --git a/TimeHACK.Main/obj/x86/Release/TimeHACK.OS.Win95.Win95Apps.WinClassicHWCV.resources b/TimeHACK.Main/obj/x86/Release/TimeHACK.OS.Win95.Win95Apps.WinClassicHWCV.resources Binary files differnew file mode 100644 index 0000000..e710144 --- /dev/null +++ b/TimeHACK.Main/obj/x86/Release/TimeHACK.OS.Win95.Win95Apps.WinClassicHWCV.resources diff --git a/TimeHACK.Main/obj/x86/Release/TimeHACK.OS.Win95.Win95Apps.WinClassicIE4.resources b/TimeHACK.Main/obj/x86/Release/TimeHACK.OS.Win95.Win95Apps.WinClassicIE4.resources Binary files differnew file mode 100644 index 0000000..9cbc1d1 --- /dev/null +++ b/TimeHACK.Main/obj/x86/Release/TimeHACK.OS.Win95.Win95Apps.WinClassicIE4.resources diff --git a/TimeHACK.Main/obj/x86/Release/TimeHACK.OS.Win95.Win95Apps.WinClassicNotepad.resources b/TimeHACK.Main/obj/x86/Release/TimeHACK.OS.Win95.Win95Apps.WinClassicNotepad.resources Binary files differnew file mode 100644 index 0000000..6c05a97 --- /dev/null +++ b/TimeHACK.Main/obj/x86/Release/TimeHACK.OS.Win95.Win95Apps.WinClassicNotepad.resources diff --git a/TimeHACK.Main/obj/x86/Release/TimeHACK.OS.Win95.Win95Apps.WinClassicWordPad.resources b/TimeHACK.Main/obj/x86/Release/TimeHACK.OS.Win95.Win95Apps.WinClassicWordPad.resources Binary files differnew file mode 100644 index 0000000..6c05a97 --- /dev/null +++ b/TimeHACK.Main/obj/x86/Release/TimeHACK.OS.Win95.Win95Apps.WinClassicWordPad.resources diff --git a/TimeHACK.Main/obj/x86/Release/TimeHACK.OS.Win95.Windows95.resources b/TimeHACK.Main/obj/x86/Release/TimeHACK.OS.Win95.Windows95.resources Binary files differnew file mode 100644 index 0000000..3e0b423 --- /dev/null +++ b/TimeHACK.Main/obj/x86/Release/TimeHACK.OS.Win95.Windows95.resources diff --git a/TimeHACK.Main/obj/x86/Release/TimeHACK.OS.Win98.Win98.resources b/TimeHACK.Main/obj/x86/Release/TimeHACK.OS.Win98.Win98.resources Binary files differnew file mode 100644 index 0000000..9944ba5 --- /dev/null +++ b/TimeHACK.Main/obj/x86/Release/TimeHACK.OS.Win98.Win98.resources diff --git a/TimeHACK.Main/obj/x86/Release/TimeHACK.Properties.Resources.resources b/TimeHACK.Main/obj/x86/Release/TimeHACK.Properties.Resources.resources Binary files differnew file mode 100644 index 0000000..0460cce --- /dev/null +++ b/TimeHACK.Main/obj/x86/Release/TimeHACK.Properties.Resources.resources diff --git a/TimeHACK.Main/obj/x86/Release/TimeHACK.TitleScreen.resources b/TimeHACK.Main/obj/x86/Release/TimeHACK.TitleScreen.resources Binary files differnew file mode 100644 index 0000000..43f5d49 --- /dev/null +++ b/TimeHACK.Main/obj/x86/Release/TimeHACK.TitleScreen.resources diff --git a/TimeHACK.Main/obj/x86/Release/TimeHACK.WinClassicForms.TestApp.resources b/TimeHACK.Main/obj/x86/Release/TimeHACK.WinClassicForms.TestApp.resources Binary files differnew file mode 100644 index 0000000..6c05a97 --- /dev/null +++ b/TimeHACK.Main/obj/x86/Release/TimeHACK.WinClassicForms.TestApp.resources diff --git a/TimeHACK.Main/obj/x86/Release/TimeHACK.WinClassicForms.WinClassicInstaller.resources b/TimeHACK.Main/obj/x86/Release/TimeHACK.WinClassicForms.WinClassicInstaller.resources Binary files differnew file mode 100644 index 0000000..efaafcd --- /dev/null +++ b/TimeHACK.Main/obj/x86/Release/TimeHACK.WinClassicForms.WinClassicInstaller.resources diff --git a/TimeHACK.Main/obj/x86/Release/TimeHACK.application b/TimeHACK.Main/obj/x86/Release/TimeHACK.application new file mode 100644 index 0000000..dace83f --- /dev/null +++ b/TimeHACK.Main/obj/x86/Release/TimeHACK.application @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?> +<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xrml="urn:mpeg:mpeg21:2003:01-REL-R-NS" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2"> + <assemblyIdentity name="TimeHACK.application" version="1.0.1.0" publicKeyToken="0000000000000000" language="en" processorArchitecture="x86" xmlns="urn:schemas-microsoft-com:asm.v1" /> + <description asmv2:publisher="HistacomCS Development Team" asmv2:product="HistacomCS" asmv2:supportUrl="http://www.ashifter.ml/histacom/forum" xmlns="urn:schemas-microsoft-com:asm.v1" /> + <deployment install="true" mapFileExtensions="true" co.v1:createDesktopShortcut="true" /> + <compatibleFrameworks xmlns="urn:schemas-microsoft-com:clickonce.v2"> + <framework targetVersion="4.5.2" profile="Full" supportedRuntime="4.0.30319" /> + </compatibleFrameworks> + <dependency> + <dependentAssembly dependencyType="install" codebase="TimeHACK.exe.manifest" size="22900"> + <assemblyIdentity name="TimeHACK.exe" version="1.0.1.0" publicKeyToken="0000000000000000" language="en" processorArchitecture="x86" type="win32" /> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>9XsHksXOk2fhEZpCOukwSKK7W0HTOCy6H8LOn/IMa6M=</dsig:DigestValue> + </hash> + </dependentAssembly> + </dependency> +</asmv1:assembly>
\ No newline at end of file diff --git a/TimeHACK.Main/obj/x86/Release/TimeHACK.exe b/TimeHACK.Main/obj/x86/Release/TimeHACK.exe Binary files differnew file mode 100644 index 0000000..39b68e0 --- /dev/null +++ b/TimeHACK.Main/obj/x86/Release/TimeHACK.exe diff --git a/TimeHACK.Main/obj/x86/Release/TimeHACK.exe.manifest b/TimeHACK.Main/obj/x86/Release/TimeHACK.exe.manifest new file mode 100644 index 0000000..d80f860 --- /dev/null +++ b/TimeHACK.Main/obj/x86/Release/TimeHACK.exe.manifest @@ -0,0 +1,478 @@ +<?xml version="1.0" encoding="utf-8"?> +<asmv1:assembly xsi:schemaLocation="urn:schemas-microsoft-com:asm.v1 assembly.adaptive.xsd" manifestVersion="1.0" xmlns:asmv1="urn:schemas-microsoft-com:asm.v1" xmlns="urn:schemas-microsoft-com:asm.v2" xmlns:asmv2="urn:schemas-microsoft-com:asm.v2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:co.v1="urn:schemas-microsoft-com:clickonce.v1" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" xmlns:dsig="http://www.w3.org/2000/09/xmldsig#" xmlns:co.v2="urn:schemas-microsoft-com:clickonce.v2"> + <asmv1:assemblyIdentity name="TimeHACK.exe" version="1.0.1.0" publicKeyToken="0000000000000000" language="en" processorArchitecture="x86" type="win32" /> + <description asmv2:publisher="HistacomCS Development Team" asmv2:product="HistacomCS" asmv2:supportUrl="http://www.ashifter.ml/histacom/forum" xmlns="urn:schemas-microsoft-com:asm.v1" /> + <application /> + <entryPoint> + <assemblyIdentity name="TimeHACK" version="1.0.0.0" language="neutral" processorArchitecture="x86" /> + <commandLine file="TimeHACK.exe" parameters="" /> + </entryPoint> + <co.v1:useManifestForTrust xmlns="urn:schemas-microsoft-com:asm.v1" /> + <trustInfo> + <security> + <applicationRequestMinimum> + <PermissionSet Unrestricted="true" ID="Custom" SameSite="site" /> + <defaultAssemblyRequest permissionSetReference="Custom" /> + </applicationRequestMinimum> + <requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3"> + <!-- + UAC Manifest Options + If you want to change the Windows User Account Control level replace the + requestedExecutionLevel node with one of the following. + + <requestedExecutionLevel level="asInvoker" uiAccess="false" /> + <requestedExecutionLevel level="requireAdministrator" uiAccess="false" /> + <requestedExecutionLevel level="highestAvailable" uiAccess="false" /> + + If you want to utilize File and Registry Virtualization for backward + compatibility then delete the requestedExecutionLevel node. + --> + <requestedExecutionLevel level="asInvoker" uiAccess="false" /> + </requestedPrivileges> + </security> + </trustInfo> + <dependency> + <dependentOS> + <osVersionInfo> + <os majorVersion="5" minorVersion="1" buildNumber="2600" servicePackMajor="0" /> + </osVersionInfo> + </dependentOS> + </dependency> + <dependency> + <dependentAssembly dependencyType="preRequisite" allowDelayedBinding="true"> + <assemblyIdentity name="Microsoft.Windows.CommonLanguageRuntime" version="4.0.30319.0" /> + </dependentAssembly> + </dependency> + <dependency> + <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="Newtonsoft.Json.dll" size="654848"> + <assemblyIdentity name="Newtonsoft.Json" version="10.0.0.0" publicKeyToken="30AD4FE6B2A6AEED" language="neutral" processorArchitecture="msil" /> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>HCRfTIXCraEwvFmULJC3AcJMBu2+PrJYOO2N5PhSU1w=</dsig:DigestValue> + </hash> + </dependentAssembly> + </dependency> + <dependency> + <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.exe" size="4804608"> + <assemblyIdentity name="TimeHACK" version="1.0.0.0" language="neutral" processorArchitecture="x86" /> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>dobNIsLrbKz25YZyEcMCF/ptbWXJIyNOnts8BCU7vNs=</dsig:DigestValue> + </hash> + </dependentAssembly> + </dependency> + <dependency> + <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.Engine.dll" size="187392"> + <assemblyIdentity name="TimeHACK.Engine" version="1.0.0.0" language="neutral" processorArchitecture="msil" /> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>4Bmiv+Bv5HnrACFrxYEZWLpxwAHN9AGwSRIgpeHajHM=</dsig:DigestValue> + </hash> + </dependentAssembly> + </dependency> + <file name="Resources\12padams_EULA.txt" size="1306"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>lqdCpqWSG703aUKUZuVLCGvz3fv9DSk/gweD2eGYZrQ=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\Icon128x.ico" size="99678"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>nzG7pg3H+3uPdr/lzLxyroAH8XD1zvIYW4peV9fAD6M=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\IE4\google.jpg" size="6218"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>MsBfDGQbMHg7EHMcNY/8mrPtzIR7Si+xtJAcxLHz+wo=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\IE4\googlehome.html" size="473"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>M69a0Q8VAYpaeWem7o8i+9iv5cJdzgRLyWD48mOZQiM=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\IE4\googleprototype.html" size="2571"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>5dxj6DQUI8H4fwy1EkXVnQnRwj/wJVEVSlzyjSYfUgI=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\IE4\ie4start.html" size="1064"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>GI6mR05IfCFwEQvctIONdEaTnhHSnhbc3fLErCxmNJE=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\IE4\padams.html" size="3165"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>k2m2tLIfVCyO67LZX2zSmbVyhl5XLttVgRG6E8/VuF0=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\TitleScreen\Exit.png" size="138932"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>sBCYzVLt3A/I7Gku5XJ8ZLN2L/aR2YJ1WHrzbf+PySI=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\TitleScreen\LoadGame.png" size="178312"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>ZzTzMYl3DLVEP1oagOyinEAULYpX610Iuk3sJnkA+yY=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\TitleScreen\MSExit.png" size="40470"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>LAoVjRnvN8/QnPLwFKlndMujFUfVmwuMdYg2vM+TWZI=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\TitleScreen\MSLoadGame.png" size="47514"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>V0sbr2Q/ES6ckgBpW09YU5PFleJYeN3dWWNN5Bmte6o=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\TitleScreen\MSNewGame.png" size="47088"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>2K2sK/Ba7mlOKw7sF8mza5p8tbxaAewzEqGSBUgZ1mY=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\TitleScreen\NewGame.png" size="179172"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>qmcKcG32LH7iikhI78zkcFVU8d2OB29WrHjaMNxQ31c=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\TitleScreen\TaskBarButton.png" size="387"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>Uj6S88dTZgAwhpS2lddEO1VF5yuGwj31xXwN2s4vPhY=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\TitleScreen\TaskBarClock.png" size="256"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>9h0M8CsC6iXP7E+R3EmdfocnzxgjfrC53xwwS5GM3CQ=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\TitleScreen\TimeHACK_Logo.png" size="879972"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>w0UragVhbcpGR96DEyDG3918bEsoNR0lYqukJOOY6EM=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\TitleScreen\TitleScreenBG.png" size="1569144"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>zrsVsDepWdceKYuysygzl34scDD+yFK0W6RY7elAjKc=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\16Color.png" size="657"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>DwYeH+xQs13qziRfLclvR4xdlexQmcNybOPlAfAktNw=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\256Color.png" size="264"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>a4iY6QVNpzMbNlIfIPmdmKdt6nRnAQGMDjOPWrM1oA8=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\TrueColor.png" size="284"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>GyCFWEz6VhwTq8fb3O8SuIT0U2WVgelHbDp5L8lW7KA=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\Win95SideBar.png" size="835"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>Z+wcS9Drzc+B2ytpUhd3VCyzHQlvomsyycp/Xiau5Vg=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\Win95Start.wav" size="270382"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>AP1JKyEdfo5h1ffRNHo2ZLE9DVXPGViMIN5NeDTfJ5E=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicClock.png" size="221"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>wdycAfKPNJg2GO6pIc0JKDnDhE1zrtpamp5CVVKPOhw=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicComputer.png" size="410"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>7qdgZRiaGUdkQELrWMmy0X2MexD+1MiZHIJbd5Uml2E=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicDocuments.png" size="346"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>YQWpE0bdQOdQx4JECZ5oRvN5c6pb+uMgeovoDdT/sW8=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicFind.png" size="519"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>+zAe0vYsdCQdvT5DQ3XujGzfmMm5Mx5kvMQWGy32vq4=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicFolder.png" size="285"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>VQvjXXCgsNEyzV6RvhuYZ5Reu41t0D7HH87dZYk7KcI=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicHelp.png" size="468"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>rukmHuBnlGNy4RGEvN4wWt8Fz+EV9Z2izAvd+61FUR4=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicIE4.png" size="534"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>pF6dDVQ6eNpFbiWSIN/nBMdJ/Oev6to/C/bBaGbEfoo=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicInbox.png" size="614"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>slW3YsxMrkkV9T4PE0LgBfh9DIWGvIxcA1Tk4HQlPYw=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicMSN.png" size="557"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>+Oqix05d9bmuGzXELIoh/sDI44JgBwy7xci7X79Q2KA=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicNetworking.png" size="492"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>qClKL3sLGduhUUkgph3TLlUcOJ9Rap+lqX32zp8f31A=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicOutlook.png" size="632"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>AzvxwpGvMrksiXkc3mKW5uuzp7TsxUxS7fhCKr9tmWE=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicProgramItem.png" size="312"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>/J+u19nP9/3Umk2QZ4141A2KL/z1/EzabYWTsBAvdwQ=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicPrograms.png" size="377"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>v5spqrMy5B5E+JCBZbgg0zI5maO16zQPzVadt19KO5U=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicRecycle.png" size="522"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>hfdhKI5M05j5cHUOVxVwftsZVBbycC/w4+J5mknwmr0=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicRun.png" size="439"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>SR16+bLKwtB7indZu424Gg7EZatjjh3QQO1xMK78ItM=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicSettings.png" size="543"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>e5Sz92eH3B1+fs6E/GQP+h4q2LmpTgNT43EkgevfryI=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicShutdown.png" size="461"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>bzXwypoYaLnjOMNStpcJjXIGFT2/HXJ8Awftsf+d6ZM=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicStart.png" size="380"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>xR7A8s/y3cRUwZTEB5N3A8KIF0mB8k5y4azjaVpgz3U=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicSuspend.png" size="467"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>zbhDuGL3PMWT/neUqIW70NotSiGrpCOiZlDRjp9jsfw=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicTaskBar.png" size="127"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>+fshereDl8F60Ef1K3Q1uudUcIBJeWlPAmosAdKe/eY=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicTaskbarItem.png" size="218"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>W0yCwc3lJJFqQfgeTtazQbdAjUboLWojci1PiqJjIBM=</dsig:DigestValue> + </hash> + </file> + <file name="Resources\WinClassic\WinClassicTime.png" size="225"> + <hash> + <dsig:Transforms> + <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> + </dsig:Transforms> + <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> + <dsig:DigestValue>x6TTsUiEHqlRiSdsR7WH5jiWTj1u/cJsO7BItxU4X9Q=</dsig:DigestValue> + </hash> + </file> +</asmv1:assembly>
\ No newline at end of file diff --git a/TimeHACK.Main/obj/x86/Release/TimeHACK.pdb b/TimeHACK.Main/obj/x86/Release/TimeHACK.pdb Binary files differnew file mode 100644 index 0000000..d3a9bf2 --- /dev/null +++ b/TimeHACK.Main/obj/x86/Release/TimeHACK.pdb |
