diff options
| author | AShifter <[email protected]> | 2017-03-26 15:16:44 -0600 |
|---|---|---|
| committer | AShifter <[email protected]> | 2017-03-26 15:16:44 -0600 |
| commit | 3d5745cbfcf6019dc9f864b59dd05d60bea770b3 (patch) | |
| tree | f0c24d96a6b49fa5b5436377cac6a2617dd13c9f | |
| parent | f16f3a8a3df33f46c4ec6c864447cced97c0f034 (diff) | |
| download | histacom2-3d5745cbfcf6019dc9f864b59dd05d60bea770b3.tar.gz histacom2-3d5745cbfcf6019dc9f864b59dd05d60bea770b3.tar.bz2 histacom2-3d5745cbfcf6019dc9f864b59dd05d60bea770b3.zip | |
Added TimeHACK.Engine...
i had an anal screw, honeyfry
41 files changed, 3880 insertions, 48 deletions
diff --git a/TimeHACK.Engine/Template/WinClassic.Designer.cs b/TimeHACK.Engine/Template/WinClassic.Designer.cs index 6fc4a78..1240979 100644 --- a/TimeHACK.Engine/Template/WinClassic.Designer.cs +++ b/TimeHACK.Engine/Template/WinClassic.Designer.cs @@ -93,7 +93,7 @@ this.programtopbar.Name = "programtopbar"; this.programtopbar.Size = new System.Drawing.Size(292, 18); this.programtopbar.TabIndex = 0; - this.programtopbar.MouseDown += new System.Windows.Forms.MouseEventHandler(this.programtopbar_drag); + this.programtopbar.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Programtopbar_drag); // // maximizebutton // @@ -104,7 +104,7 @@ this.maximizebutton.Size = new System.Drawing.Size(16, 14); this.maximizebutton.TabIndex = 6; this.maximizebutton.TabStop = false; - this.maximizebutton.Click += new System.EventHandler(this.maximizebutton_Click); + this.maximizebutton.Click += new System.EventHandler(this.Maximizebutton_Click); // // minimizebutton // @@ -136,7 +136,7 @@ this.closebutton.Size = new System.Drawing.Size(16, 14); this.closebutton.TabIndex = 4; this.closebutton.TabStop = false; - this.closebutton.Click += new System.EventHandler(this.closebutton_Click); + this.closebutton.Click += new System.EventHandler(this.Closebutton_Click); // // toprightcorner // diff --git a/TimeHACK.Engine/Template/WinClassic.cs b/TimeHACK.Engine/Template/WinClassic.cs index 1bd11e3..820bbb8 100644 --- a/TimeHACK.Engine/Template/WinClassic.cs +++ b/TimeHACK.Engine/Template/WinClassic.cs @@ -20,7 +20,7 @@ namespace TimeHACK.Engine.Template [DllImportAttribute("user32.dll")] public static extern bool ReleaseCapture(); - private void programtopbar_drag(object sender, MouseEventArgs e) + private void Programtopbar_drag(object sender, MouseEventArgs e) { if (e.Button == MouseButtons.Left) { @@ -29,14 +29,14 @@ namespace TimeHACK.Engine.Template } } - private void closebutton_Click(object sender, EventArgs e) + private void Closebutton_Click(object sender, EventArgs e) { this.Close(); } public Boolean max = false; - private void maximizebutton_Click(object sender, EventArgs e) + private void Maximizebutton_Click(object sender, EventArgs e) { if (max == false) { diff --git a/TimeHACK.Engine/WindowManager.cs b/TimeHACK.Engine/WindowManager.cs index fc9bd94..8047a8c 100644 --- a/TimeHACK.Engine/WindowManager.cs +++ b/TimeHACK.Engine/WindowManager.cs @@ -6,7 +6,7 @@ namespace TimeHACK.Engine { public class WindowManager { - public void startWinClassic(UserControl content, String title, PictureBox icon, Boolean MaxButton, Boolean MinButton) + public void StartWinClassic(UserControl content, String title, PictureBox icon, Boolean MaxButton, Boolean MinButton) { // Setup Window WinClassic app = new WinClassic(); diff --git a/TimeHACK.Engine/bin/Debug/TimeHACK.Engine.dll b/TimeHACK.Engine/bin/Debug/TimeHACK.Engine.dll Binary files differindex 9e8c504..9074301 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 b0d17dc..b95db11 100644 --- a/TimeHACK.Engine/bin/Debug/TimeHACK.Engine.pdb +++ b/TimeHACK.Engine/bin/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 differindex 360f1c8..f99e456 100644 --- a/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.csproj.GenerateResource.Cache +++ b/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.csproj.GenerateResource.Cache diff --git a/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.dll b/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.dll Binary files differindex 9e8c504..9074301 100644 --- a/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.dll +++ 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 differindex b0d17dc..b95db11 100644 --- a/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.pdb +++ b/TimeHACK.Engine/obj/Debug/TimeHACK.Engine.pdb diff --git a/TimeHACK.Main/TimeHACK.Main.csproj b/TimeHACK.Main/TimeHACK.Main.csproj index f93ea6d..66e21f3 100644 --- a/TimeHACK.Main/TimeHACK.Main.csproj +++ b/TimeHACK.Main/TimeHACK.Main.csproj @@ -120,22 +120,28 @@ <DesignTime>True</DesignTime> <DependentUpon>Resources.resx</DependentUpon> </Compile> - <Compile Include="WinClassicForms\TestApp.cs"> + <Compile Include="WinClassic\TestApp.cs"> <SubType>UserControl</SubType> </Compile> - <Compile Include="WinClassicForms\TestApp.Designer.cs"> + <Compile Include="WinClassic\TestApp.Designer.cs"> <DependentUpon>TestApp.cs</DependentUpon> </Compile> - <Compile Include="WinClassicForms\WinClassicTemplate.cs"> + <Compile Include="WinClassic\Win95IE4.cs"> + <SubType>UserControl</SubType> + </Compile> + <Compile Include="WinClassic\Win95IE4.Designer.cs"> + <DependentUpon>Win95IE4.cs</DependentUpon> + </Compile> + <Compile Include="WinClassic\WinClassicTemplate.cs"> <SubType>Form</SubType> </Compile> - <Compile Include="WinClassicForms\WinClassicTemplate.Designer.cs"> + <Compile Include="WinClassic\WinClassicTemplate.Designer.cs"> <DependentUpon>WinClassicTemplate.cs</DependentUpon> </Compile> - <Compile Include="WinClassicForms\WinClassicIE4.cs"> + <Compile Include="WinClassic\WinClassicIE4.cs"> <SubType>Form</SubType> </Compile> - <Compile Include="WinClassicForms\WinClassicIE4.Designer.cs"> + <Compile Include="WinClassic\WinClassicIE4.Designer.cs"> <DependentUpon>WinClassicIE4.cs</DependentUpon> </Compile> <Compile Include="Windows95.cs"> @@ -152,10 +158,13 @@ <Compile Include="TitleScreen.Designer.cs"> <DependentUpon>TitleScreen.cs</DependentUpon> </Compile> - <EmbeddedResource Include="WinClassicForms\TestApp.resx"> + <EmbeddedResource Include="WinClassic\TestApp.resx"> <DependentUpon>TestApp.cs</DependentUpon> </EmbeddedResource> - <EmbeddedResource Include="WinClassicForms\WinClassicIE4.resx"> + <EmbeddedResource Include="WinClassic\Win95IE4.resx"> + <DependentUpon>Win95IE4.cs</DependentUpon> + </EmbeddedResource> + <EmbeddedResource Include="WinClassic\WinClassicIE4.resx"> <DependentUpon>WinClassicIE4.cs</DependentUpon> </EmbeddedResource> <EmbeddedResource Include="Windows95.resx"> @@ -169,7 +178,7 @@ <EmbeddedResource Include="TitleScreen.resx"> <DependentUpon>TitleScreen.cs</DependentUpon> </EmbeddedResource> - <EmbeddedResource Include="WinClassicForms\WinClassicTemplate.resx"> + <EmbeddedResource Include="WinClassic\WinClassicTemplate.resx"> <DependentUpon>WinClassicTemplate.cs</DependentUpon> </EmbeddedResource> <None Include="Properties\Settings.settings"> diff --git a/TimeHACK.Main/WinClassicForms/TestApp.Designer.cs b/TimeHACK.Main/WinClassic/TestApp.Designer.cs index 2e9742b..2e9742b 100644 --- a/TimeHACK.Main/WinClassicForms/TestApp.Designer.cs +++ b/TimeHACK.Main/WinClassic/TestApp.Designer.cs diff --git a/TimeHACK.Main/WinClassicForms/TestApp.cs b/TimeHACK.Main/WinClassic/TestApp.cs index 0c2e6a8..0c2e6a8 100644 --- a/TimeHACK.Main/WinClassicForms/TestApp.cs +++ b/TimeHACK.Main/WinClassic/TestApp.cs diff --git a/TimeHACK.Main/WinClassicForms/TestApp.resx b/TimeHACK.Main/WinClassic/TestApp.resx index 1af7de1..1af7de1 100644 --- a/TimeHACK.Main/WinClassicForms/TestApp.resx +++ b/TimeHACK.Main/WinClassic/TestApp.resx diff --git a/TimeHACK.Main/WinClassic/Win95IE4.Designer.cs b/TimeHACK.Main/WinClassic/Win95IE4.Designer.cs new file mode 100644 index 0000000..4d38502 --- /dev/null +++ b/TimeHACK.Main/WinClassic/Win95IE4.Designer.cs @@ -0,0 +1,3533 @@ +namespace TimeHACK.WinClassic +{ + partial class Win95IE4 + { + /// <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() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Win95IE4)); + 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(); + this.Label38 = new System.Windows.Forms.Label(); + this.Label20 = new System.Windows.Forms.Label(); + this.Panel10 = new System.Windows.Forms.Panel(); + this.Button16 = new System.Windows.Forms.Button(); + this.Label22 = new System.Windows.Forms.Label(); + this.Button15 = new System.Windows.Forms.Button(); + this.Label21 = new System.Windows.Forms.Label(); + this.Label18 = new System.Windows.Forms.Label(); + this.Panel9 = new System.Windows.Forms.Panel(); + this.Label37 = new System.Windows.Forms.Label(); + this.Button24 = new System.Windows.Forms.Button(); + this.Button23 = new System.Windows.Forms.Button(); + this.Label36 = new System.Windows.Forms.Label(); + this.Label19 = new System.Windows.Forms.Label(); + this.Panel8 = new System.Windows.Forms.Panel(); + this.Button26 = new System.Windows.Forms.Button(); + this.Label57 = new System.Windows.Forms.Label(); + this.Button25 = new System.Windows.Forms.Button(); + this.Label43 = new System.Windows.Forms.Label(); + this.Button17 = new System.Windows.Forms.Button(); + this.Label5 = new System.Windows.Forms.Label(); + this.Label17 = new System.Windows.Forms.Label(); + this.Label16 = new System.Windows.Forms.Label(); + this.Label4 = new System.Windows.Forms.Label(); + this.padamsbackgrounds = new System.Windows.Forms.Panel(); + this.Panel13 = new System.Windows.Forms.Panel(); + this.Previewimage = new System.Windows.Forms.PictureBox(); + this.Button21 = new System.Windows.Forms.Button(); + this.Button22 = new System.Windows.Forms.Button(); + this.Label35 = new System.Windows.Forms.Label(); + this.mclarinflimage = new System.Windows.Forms.PictureBox(); + this.Button20 = new System.Windows.Forms.Button(); + this.Button19 = new System.Windows.Forms.Button(); + this.Label34 = new System.Windows.Forms.Label(); + this.win95background = new System.Windows.Forms.PictureBox(); + this.Label33 = new System.Windows.Forms.Label(); + this.Label32 = new System.Windows.Forms.Label(); + this.hotmailmain = new System.Windows.Forms.Panel(); + this.PictureBox9 = new System.Windows.Forms.PictureBox(); + this.PictureBox10 = new System.Windows.Forms.PictureBox(); + this.Label31 = new System.Windows.Forms.Label(); + this.Label30 = new System.Windows.Forms.Label(); + this.Label29 = new System.Windows.Forms.Label(); + this.PictureBox8 = new System.Windows.Forms.PictureBox(); + this.PictureBox7 = new System.Windows.Forms.PictureBox(); + this.PictureBox6 = new System.Windows.Forms.PictureBox(); + this.Label28 = new System.Windows.Forms.Label(); + this.Label27 = new System.Windows.Forms.Label(); + this.PictureBox5 = new System.Windows.Forms.PictureBox(); + this.RadioButton3 = new System.Windows.Forms.RadioButton(); + this.RadioButton2 = new System.Windows.Forms.RadioButton(); + this.RadioButton1 = new System.Windows.Forms.RadioButton(); + this.Button18 = new System.Windows.Forms.Button(); + this.txtpassword = new System.Windows.Forms.TextBox(); + this.txtloginname = new System.Windows.Forms.TextBox(); + this.Label26 = new System.Windows.Forms.Label(); + this.Label25 = new System.Windows.Forms.Label(); + this.Label24 = new System.Windows.Forms.Label(); + this.Label23 = new System.Windows.Forms.Label(); + this.Panel11 = new System.Windows.Forms.Panel(); + this.PictureBox4 = new System.Windows.Forms.PictureBox(); + this.PictureBox3 = new System.Windows.Forms.PictureBox(); + this.welcomeinternetscreen = new System.Windows.Forms.Panel(); + this.Label58 = new System.Windows.Forms.Label(); + this.LinkLabel16 = new System.Windows.Forms.LinkLabel(); + this.LinkLabel15 = new System.Windows.Forms.LinkLabel(); + this.Label3 = new System.Windows.Forms.Label(); + this.TextBox1 = new System.Windows.Forms.TextBox(); + this.Label2 = new System.Windows.Forms.Label(); + this.hotmailpadams = new System.Windows.Forms.Panel(); + this.email1 = new System.Windows.Forms.Panel(); + this.LinkLabel18 = new System.Windows.Forms.LinkLabel(); + this.Label56 = new System.Windows.Forms.Label(); + this.Label47 = new System.Windows.Forms.Label(); + this.TextBox12 = new System.Windows.Forms.TextBox(); + this.TextBox11 = new System.Windows.Forms.TextBox(); + this.TextBox7 = new System.Windows.Forms.TextBox(); + this.TextBox6 = new System.Windows.Forms.TextBox(); + this.Label46 = new System.Windows.Forms.Label(); + this.Label45 = new System.Windows.Forms.Label(); + this.Label44 = new System.Windows.Forms.Label(); + this.email3 = new System.Windows.Forms.Panel(); + this.Label52 = new System.Windows.Forms.Label(); + this.TextBox17 = new System.Windows.Forms.TextBox(); + this.TextBox18 = new System.Windows.Forms.TextBox(); + this.TextBox19 = new System.Windows.Forms.TextBox(); + this.TextBox20 = new System.Windows.Forms.TextBox(); + this.Label53 = new System.Windows.Forms.Label(); + this.Label54 = new System.Windows.Forms.Label(); + this.Label55 = new System.Windows.Forms.Label(); + this.email2 = new System.Windows.Forms.Panel(); + this.Label48 = new System.Windows.Forms.Label(); + this.TextBox13 = new System.Windows.Forms.TextBox(); + this.TextBox14 = new System.Windows.Forms.TextBox(); + this.TextBox15 = new System.Windows.Forms.TextBox(); + this.TextBox16 = new System.Windows.Forms.TextBox(); + this.Label49 = new System.Windows.Forms.Label(); + this.Label50 = new System.Windows.Forms.Label(); + this.Label51 = new System.Windows.Forms.Label(); + this.ListBox1 = new System.Windows.Forms.ListBox(); + this.PictureBox14 = new System.Windows.Forms.PictureBox(); + this.PictureBox13 = new System.Windows.Forms.PictureBox(); + this.PictureBox12 = new System.Windows.Forms.PictureBox(); + this.googlealpha = new System.Windows.Forms.Panel(); + this.Label15 = new System.Windows.Forms.Label(); + this.Panel6 = new System.Windows.Forms.Panel(); + this.LinkLabel13 = new System.Windows.Forms.LinkLabel(); + this.LinkLabel10 = new System.Windows.Forms.LinkLabel(); + this.LinkLabel11 = new System.Windows.Forms.LinkLabel(); + this.LinkLabel12 = new System.Windows.Forms.LinkLabel(); + this.LinkLabel9 = new System.Windows.Forms.LinkLabel(); + this.LinkLabel8 = new System.Windows.Forms.LinkLabel(); + this.LinkLabel7 = new System.Windows.Forms.LinkLabel(); + this.Panel7 = new System.Windows.Forms.Panel(); + this.LinkLabel14 = new System.Windows.Forms.LinkLabel(); + this.Button14 = new System.Windows.Forms.Button(); + this.TextBox5 = new System.Windows.Forms.TextBox(); + this.Label14 = new System.Windows.Forms.Label(); + this.Label13 = new System.Windows.Forms.Label(); + this.Panel5 = new System.Windows.Forms.Panel(); + this.LinkLabel6 = new System.Windows.Forms.LinkLabel(); + this.LinkLabel5 = new System.Windows.Forms.LinkLabel(); + this.Label12 = new System.Windows.Forms.Label(); + this.Panel4 = new System.Windows.Forms.Panel(); + this.Button13 = new System.Windows.Forms.Button(); + this.Button12 = new System.Windows.Forms.Button(); + this.TextBox4 = new System.Windows.Forms.TextBox(); + this.Label11 = new System.Windows.Forms.Label(); + this.PictureBox2 = new System.Windows.Forms.PictureBox(); + this.padamshidden = new System.Windows.Forms.Panel(); + this.TextBox10 = new System.Windows.Forms.TextBox(); + this.secretwebsite = new System.Windows.Forms.Panel(); + this.TextBox9 = new System.Windows.Forms.TextBox(); + this.skindows95advertisment = new System.Windows.Forms.Panel(); + this.Label42 = new System.Windows.Forms.Label(); + this.Label41 = new System.Windows.Forms.Label(); + this.TextBox8 = new System.Windows.Forms.TextBox(); + this.PictureBox11 = new System.Windows.Forms.PictureBox(); + this.Label40 = new System.Windows.Forms.Label(); + this.Label39 = new System.Windows.Forms.Label(); + this.googlemain = new System.Windows.Forms.Panel(); + this.linkLabel19 = new System.Windows.Forms.LinkLabel(); + this.googlebetalink = new System.Windows.Forms.LinkLabel(); + this.googleprototypelink = new System.Windows.Forms.LinkLabel(); + this.Label6 = new System.Windows.Forms.Label(); + this.googleprototype = new System.Windows.Forms.Panel(); + this.Label10 = new System.Windows.Forms.Label(); + this.Panel3 = new System.Windows.Forms.Panel(); + this.LinkLabel4 = new System.Windows.Forms.LinkLabel(); + this.Button11 = new System.Windows.Forms.Button(); + this.TextBox3 = new System.Windows.Forms.TextBox(); + this.Label9 = new System.Windows.Forms.Label(); + this.LinkLabel3 = new System.Windows.Forms.LinkLabel(); + this.LinkLabel2 = new System.Windows.Forms.LinkLabel(); + this.LinkLabel1 = new System.Windows.Forms.LinkLabel(); + this.Panel2 = new System.Windows.Forms.Panel(); + this.Label8 = new System.Windows.Forms.Label(); + this.Button10 = new System.Windows.Forms.Button(); + this.Button9 = new System.Windows.Forms.Button(); + this.ComboBox1 = new System.Windows.Forms.ComboBox(); + this.TextBox2 = new System.Windows.Forms.TextBox(); + this.Label7 = new System.Windows.Forms.Label(); + this.pboxgoogleprototypelogo = new System.Windows.Forms.PictureBox(); + this.Panel14 = new System.Windows.Forms.Panel(); + this.Button8 = new System.Windows.Forms.Button(); + this.addressbar = new System.Windows.Forms.ComboBox(); + this.Label1 = new System.Windows.Forms.Label(); + this.Panel1 = new System.Windows.Forms.Panel(); + this.Button30 = new System.Windows.Forms.Button(); + this.Button29 = new System.Windows.Forms.Button(); + this.Button28 = new System.Windows.Forms.Button(); + this.Button27 = new System.Windows.Forms.Button(); + this.Button7 = new System.Windows.Forms.Button(); + this.Button6 = new System.Windows.Forms.Button(); + this.Button5 = new System.Windows.Forms.Button(); + this.Button4 = new System.Windows.Forms.Button(); + this.Button3 = new System.Windows.Forms.Button(); + this.Button2 = new System.Windows.Forms.Button(); + this.Button1 = new System.Windows.Forms.Button(); + this.MenuStrip3 = new System.Windows.Forms.MenuStrip(); + this.ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem3 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem4 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem5 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem6 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem7 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem8 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem9 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem10 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem11 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem12 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem13 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem14 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem15 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem16 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem17 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem18 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem19 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem20 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem21 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem22 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem23 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem24 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem25 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem26 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem27 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem28 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem29 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem30 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem31 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem32 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem33 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem34 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem35 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem36 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem37 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem38 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem39 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem40 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem41 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem42 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem43 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem44 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem45 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem46 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem47 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem48 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem49 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem50 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem51 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem52 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem53 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem54 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem55 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem56 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem57 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem58 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem59 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem60 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem61 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem62 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem63 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem64 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem65 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem66 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem67 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem68 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem69 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem70 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem71 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem72 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem78 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem79 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem80 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem81 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem82 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem83 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem84 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem85 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem86 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem87 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem73 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem74 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem75 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem76 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem77 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem88 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem89 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem90 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem91 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem92 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem93 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem94 = new System.Windows.Forms.ToolStripMenuItem(); + this.ToolStripMenuItem95 = new System.Windows.Forms.ToolStripMenuItem(); + this.browsingarea.SuspendLayout(); + this.padamsmain.SuspendLayout(); + this.Panel12.SuspendLayout(); + this.Panel10.SuspendLayout(); + this.Panel9.SuspendLayout(); + this.Panel8.SuspendLayout(); + this.padamsbackgrounds.SuspendLayout(); + this.Panel13.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.Previewimage)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.mclarinflimage)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.win95background)).BeginInit(); + this.hotmailmain.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox9)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox10)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox8)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox7)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox6)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox5)).BeginInit(); + this.Panel11.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox3)).BeginInit(); + this.welcomeinternetscreen.SuspendLayout(); + this.hotmailpadams.SuspendLayout(); + this.email1.SuspendLayout(); + this.email3.SuspendLayout(); + this.email2.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox14)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox13)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox12)).BeginInit(); + this.googlealpha.SuspendLayout(); + this.Panel6.SuspendLayout(); + this.Panel7.SuspendLayout(); + this.Panel5.SuspendLayout(); + this.Panel4.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox2)).BeginInit(); + this.padamshidden.SuspendLayout(); + this.secretwebsite.SuspendLayout(); + this.skindows95advertisment.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox11)).BeginInit(); + this.googlemain.SuspendLayout(); + this.googleprototype.SuspendLayout(); + this.Panel3.SuspendLayout(); + this.Panel2.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pboxgoogleprototypelogo)).BeginInit(); + this.Panel14.SuspendLayout(); + this.Panel1.SuspendLayout(); + this.MenuStrip3.SuspendLayout(); + this.SuspendLayout(); + // + // browsingarea + // + this.browsingarea.BackColor = System.Drawing.Color.White; + this.browsingarea.Controls.Add(this.webBrowser1); + this.browsingarea.Controls.Add(this.padamsmain); + this.browsingarea.Controls.Add(this.padamsbackgrounds); + this.browsingarea.Controls.Add(this.hotmailmain); + this.browsingarea.Controls.Add(this.welcomeinternetscreen); + this.browsingarea.Controls.Add(this.hotmailpadams); + this.browsingarea.Controls.Add(this.googlealpha); + this.browsingarea.Controls.Add(this.padamshidden); + this.browsingarea.Controls.Add(this.secretwebsite); + this.browsingarea.Controls.Add(this.skindows95advertisment); + this.browsingarea.Controls.Add(this.googlemain); + this.browsingarea.Controls.Add(this.googleprototype); + this.browsingarea.Dock = System.Windows.Forms.DockStyle.Fill; + this.browsingarea.Location = new System.Drawing.Point(0, 111); + this.browsingarea.Name = "browsingarea"; + this.browsingarea.Size = new System.Drawing.Size(959, 483); + this.browsingarea.TabIndex = 15; + // + // webBrowser1 + // + this.webBrowser1.Location = new System.Drawing.Point(578, 206); + this.webBrowser1.MinimumSize = new System.Drawing.Size(20, 20); + this.webBrowser1.Name = "webBrowser1"; + this.webBrowser1.Size = new System.Drawing.Size(62, 47); + this.webBrowser1.TabIndex = 11; + this.webBrowser1.Url = new System.Uri("http://www.google.com", System.UriKind.Absolute); + // + // padamsmain + // + this.padamsmain.AutoScroll = true; + this.padamsmain.Controls.Add(this.Panel12); + this.padamsmain.Controls.Add(this.Label20); + this.padamsmain.Controls.Add(this.Panel10); + this.padamsmain.Controls.Add(this.Panel9); + this.padamsmain.Controls.Add(this.Panel8); + this.padamsmain.Controls.Add(this.Label16); + this.padamsmain.Controls.Add(this.Label4); + this.padamsmain.Location = new System.Drawing.Point(681, 336); + this.padamsmain.Name = "padamsmain"; + this.padamsmain.Size = new System.Drawing.Size(255, 115); + this.padamsmain.TabIndex = 4; + // + // Panel12 + // + this.Panel12.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.Panel12.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.Panel12.Controls.Add(this.LinkLabel17); + this.Panel12.Controls.Add(this.Label38); + this.Panel12.Location = new System.Drawing.Point(352, 94); + this.Panel12.Name = "Panel12"; + this.Panel12.Size = new System.Drawing.Size(200, 305); + this.Panel12.TabIndex = 6; + // + // LinkLabel17 + // + this.LinkLabel17.AutoSize = true; + this.LinkLabel17.Location = new System.Drawing.Point(56, 47); + this.LinkLabel17.Name = "LinkLabel17"; + this.LinkLabel17.Size = new System.Drawing.Size(90, 13); + this.LinkLabel17.TabIndex = 3; + this.LinkLabel17.TabStop = true; + this.LinkLabel17.Text = "www.hotmail.com"; + // + // Label38 + // + this.Label38.AutoSize = true; + this.Label38.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.Label38.Location = new System.Drawing.Point(66, 17); + this.Label38.Name = "Label38"; + this.Label38.Size = new System.Drawing.Size(75, 16); + this.Label38.TabIndex = 2; + this.Label38.Text = "WebSites"; + // + // Label20 + // + this.Label20.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.Label20.AutoSize = true; + this.Label20.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.Label20.Location = new System.Drawing.Point(-3, 422); + this.Label20.Name = "Label20"; + this.Label20.Size = new System.Drawing.Size(174, 15); + this.Label20.TabIndex = 7; + this.Label20.Text = "Copyright 1998 12padams"; + // + // Panel10 + // + this.Panel10.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.Panel10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.Panel10.Controls.Add(this.Button16); + this.Panel10.Controls.Add(this.Label22); + this.Panel10.Controls.Add(this.Button15); + this.Panel10.Controls.Add(this.Label21); + this.Panel10.Controls.Add(this.Label18); + this.Panel10.Location = new System.Drawing.Point(113, 94); + this.Panel10.Name = "Panel10"; + this.Panel10.Size = new System.Drawing.Size(200, 305); + this.Panel10.TabIndex = 6; + // + // Button16 + // + this.Button16.BackColor = System.Drawing.Color.Silver; + this.Button16.Location = new System.Drawing.Point(115, 74); + this.Button16.Name = "Button16"; + this.Button16.Size = new System.Drawing.Size(75, 23); + this.Button16.TabIndex = 7; + this.Button16.Text = "Download"; + this.Button16.UseVisualStyleBackColor = false; + // + // Label22 + // + this.Label22.AutoSize = true; + this.Label22.Location = new System.Drawing.Point(12, 78); + this.Label22.Name = "Label22"; + this.Label22.Size = new System.Drawing.Size(79, 13); + this.Label22.TabIndex = 6; + this.Label22.Text = "Error Blaster 95"; + // + // Button15 + // + this.Button15.BackColor = System.Drawing.Color.Silver; + this.Button15.Location = new System.Drawing.Point(115, 40); + this.Button15.Name = "Button15"; + this.Button15.Size = new System.Drawing.Size(75, 23); + this.Button15.TabIndex = 5; + this.Button15.Text = "Download"; + this.Button15.UseVisualStyleBackColor = false; + // + // Label21 + // + this.Label21.AutoSize = true; + this.Label21.Location = new System.Drawing.Point(12, 44); + this.Label21.Name = "Label21"; + this.Label21.Size = new System.Drawing.Size(82, 13); + this.Label21.TabIndex = 4; + this.Label21.Text = "Start Runner 95"; + // + // Label18 + // + this.Label18.AutoSize = true; + this.Label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.Label18.Location = new System.Drawing.Point(35, 18); + this.Label18.Name = "Label18"; + this.Label18.Size = new System.Drawing.Size(124, 16); + this.Label18.TabIndex = 3; + this.Label18.Text = "Example Viruses"; + // + // Panel9 + // + this.Panel9.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.Panel9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.Panel9.Controls.Add(this.Label37); + this.Panel9.Controls.Add(this.Button24); + this.Panel9.Controls.Add(this.Button23); + this.Panel9.Controls.Add(this.Label36); + this.Panel9.Controls.Add(this.Label19); + this.Panel9.Location = new System.Drawing.Point(-122, 94); + this.Panel9.Name = "Panel9"; + this.Panel9.Size = new System.Drawing.Size(207, 305); + this.Panel9.TabIndex = 6; + // + // Label37 + // + this.Label37.AutoSize = true; + this.Label37.Location = new System.Drawing.Point(11, 94); + this.Label37.Name = "Label37"; + this.Label37.Size = new System.Drawing.Size(68, 13); + this.Label37.TabIndex = 8; + this.Label37.Text = "Skindows 95"; + // + // Button24 + // + this.Button24.BackColor = System.Drawing.Color.Silver; + this.Button24.Location = new System.Drawing.Point(96, 87); + this.Button24.Name = "Button24"; + this.Button24.Size = new System.Drawing.Size(106, 23); + this.Button24.TabIndex = 7; + this.Button24.Text = "Info"; + this.Button24.UseVisualStyleBackColor = false; + // + // Button23 + // + this.Button23.BackColor = System.Drawing.Color.Silver; + this.Button23.Location = new System.Drawing.Point(96, 46); + this.Button23.Name = "Button23"; + this.Button23.Size = new System.Drawing.Size(106, 23); + this.Button23.TabIndex = 6; + this.Button23.Text = "View Backgrounds"; + this.Button23.UseVisualStyleBackColor = false; + // + // Label36 + // + this.Label36.AutoSize = true; + this.Label36.Location = new System.Drawing.Point(11, 51); + this.Label36.Name = "Label36"; + this.Label36.Size = new System.Drawing.Size(70, 13); + this.Label36.TabIndex = 5; + this.Label36.Text = "Backgrounds"; + // + // Label19 + // + this.Label19.AutoSize = true; + this.Label19.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.Label19.Location = new System.Drawing.Point(44, 13); + this.Label19.Name = "Label19"; + this.Label19.Size = new System.Drawing.Size(112, 16); + this.Label19.TabIndex = 4; + this.Label19.Text = "Customizations"; + // + // Panel8 + // + this.Panel8.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.Panel8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.Panel8.Controls.Add(this.Button26); + this.Panel8.Controls.Add(this.Label57); + this.Panel8.Controls.Add(this.Button25); + this.Panel8.Controls.Add(this.Label43); + this.Panel8.Controls.Add(this.Button17); + this.Panel8.Controls.Add(this.Label5); + this.Panel8.Controls.Add(this.Label17); + this.Panel8.Location = new System.Drawing.Point(-350, 94); + this.Panel8.Name = "Panel8"; + this.Panel8.Size = new System.Drawing.Size(200, 305); + this.Panel8.TabIndex = 5; + // + // Button26 + // + this.Button26.BackColor = System.Drawing.Color.Silver; + this.Button26.Location = new System.Drawing.Point(120, 115); + this.Button26.Name = "Button26"; + this.Button26.Size = new System.Drawing.Size(75, 22); + this.Button26.TabIndex = 8; + this.Button26.Text = "Download"; + this.Button26.UseVisualStyleBackColor = false; + // + // Label57 + // + this.Label57.AutoSize = true; + this.Label57.Location = new System.Drawing.Point(10, 120); + this.Label57.Name = "Label57"; + this.Label57.Size = new System.Drawing.Size(90, 13); + this.Label57.TabIndex = 7; + this.Label57.Text = "Time Distorter 0.1"; + // + // Button25 + // + this.Button25.BackColor = System.Drawing.Color.Silver; + this.Button25.Location = new System.Drawing.Point(120, 81); + this.Button25.Name = "Button25"; + this.Button25.Size = new System.Drawing.Size(75, 22); + this.Button25.TabIndex = 6; + this.Button25.Text = "Download"; + this.Button25.UseVisualStyleBackColor = false; + // + // Label43 + // + this.Label43.AutoSize = true; + this.Label43.Location = new System.Drawing.Point(8, 87); + this.Label43.Name = "Label43"; + this.Label43.Size = new System.Drawing.Size(82, 13); + this.Label43.TabIndex = 5; + this.Label43.Text = "Web Chat 1998"; + // + // Button17 + // + this.Button17.BackColor = System.Drawing.Color.Silver; + this.Button17.Location = new System.Drawing.Point(120, 47); + this.Button17.Name = "Button17"; + this.Button17.Size = new System.Drawing.Size(75, 22); + this.Button17.TabIndex = 4; + this.Button17.Text = "Download"; + this.Button17.UseVisualStyleBackColor = false; + // + // Label5 + // + this.Label5.AutoSize = true; + this.Label5.Location = new System.Drawing.Point(8, 51); + this.Label5.Name = "Label5"; + this.Label5.Size = new System.Drawing.Size(111, 13); + this.Label5.TabIndex = 3; + this.Label5.Text = "Guess the Number V1"; + // + // Label17 + // + this.Label17.AutoSize = true; + this.Label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.Label17.Location = new System.Drawing.Point(38, 17); + this.Label17.Name = "Label17"; + this.Label17.Size = new System.Drawing.Size(122, 16); + this.Label17.TabIndex = 2; + this.Label17.Text = "Games/Software"; + // + // Label16 + // + this.Label16.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.Label16.AutoSize = true; + this.Label16.Location = new System.Drawing.Point(-46, 36); + this.Label16.Name = "Label16"; + this.Label16.Size = new System.Drawing.Size(265, 13); + this.Label16.TabIndex = 1; + this.Label16.Text = "The best customizations for your windows 95 computer"; + // + // Label4 + // + this.Label4.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.Label4.AutoSize = true; + this.Label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.Label4.Location = new System.Drawing.Point(-65, 20); + this.Label4.Name = "Label4"; + this.Label4.Size = new System.Drawing.Size(312, 16); + this.Label4.TabIndex = 0; + this.Label4.Text = "Welcome to the Official 12padams website!!!"; + // + // padamsbackgrounds + // + this.padamsbackgrounds.AutoScroll = true; + this.padamsbackgrounds.Controls.Add(this.Panel13); + this.padamsbackgrounds.Controls.Add(this.Label33); + this.padamsbackgrounds.Controls.Add(this.Label32); + this.padamsbackgrounds.Location = new System.Drawing.Point(649, 3); + this.padamsbackgrounds.Name = "padamsbackgrounds"; + this.padamsbackgrounds.Size = new System.Drawing.Size(266, 203); + this.padamsbackgrounds.TabIndex = 6; + // + // Panel13 + // + this.Panel13.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.Panel13.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.Panel13.Controls.Add(this.Previewimage); + this.Panel13.Controls.Add(this.Button21); + this.Panel13.Controls.Add(this.Button22); + this.Panel13.Controls.Add(this.Label35); + this.Panel13.Controls.Add(this.mclarinflimage); + this.Panel13.Controls.Add(this.Button20); + this.Panel13.Controls.Add(this.Button19); + this.Panel13.Controls.Add(this.Label34); + 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(7760, 101); + this.Panel13.TabIndex = 2; + // + // Previewimage + // + this.Previewimage.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.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(6343, 101); + this.Previewimage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.Previewimage.TabIndex = 1; + this.Previewimage.TabStop = false; + // + // Button21 + // + this.Button21.BackColor = System.Drawing.Color.Silver; + this.Button21.Location = new System.Drawing.Point(95, 310); + this.Button21.Name = "Button21"; + this.Button21.Size = new System.Drawing.Size(115, 23); + this.Button21.TabIndex = 8; + this.Button21.Text = "Set As Background"; + this.Button21.UseVisualStyleBackColor = false; + // + // Button22 + // + this.Button22.BackColor = System.Drawing.Color.Silver; + this.Button22.Location = new System.Drawing.Point(26, 310); + this.Button22.Name = "Button22"; + this.Button22.Size = new System.Drawing.Size(63, 23); + this.Button22.TabIndex = 7; + this.Button22.Text = "Preview"; + this.Button22.UseVisualStyleBackColor = false; + // + // Label35 + // + this.Label35.AutoSize = true; + this.Label35.Location = new System.Drawing.Point(72, 176); + this.Label35.Name = "Label35"; + this.Label35.Size = new System.Drawing.Size(87, 13); + this.Label35.TabIndex = 6; + this.Label35.Text = "1994 Mclaren F1"; + // + // mclarinflimage + // + this.mclarinflimage.Location = new System.Drawing.Point(26, 192); + this.mclarinflimage.Name = "mclarinflimage"; + this.mclarinflimage.Size = new System.Drawing.Size(184, 115); + this.mclarinflimage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.mclarinflimage.TabIndex = 5; + this.mclarinflimage.TabStop = false; + // + // Button20 + // + this.Button20.BackColor = System.Drawing.Color.Silver; + this.Button20.Location = new System.Drawing.Point(95, 140); + this.Button20.Name = "Button20"; + this.Button20.Size = new System.Drawing.Size(115, 23); + this.Button20.TabIndex = 4; + this.Button20.Text = "Set As Background"; + this.Button20.UseVisualStyleBackColor = false; + // + // Button19 + // + this.Button19.BackColor = System.Drawing.Color.Silver; + this.Button19.Location = new System.Drawing.Point(26, 140); + this.Button19.Name = "Button19"; + this.Button19.Size = new System.Drawing.Size(63, 23); + this.Button19.TabIndex = 3; + this.Button19.Text = "Preview"; + this.Button19.UseVisualStyleBackColor = false; + // + // Label34 + // + this.Label34.AutoSize = true; + this.Label34.Location = new System.Drawing.Point(50, 6); + this.Label34.Name = "Label34"; + this.Label34.Size = new System.Drawing.Size(128, 13); + this.Label34.TabIndex = 2; + this.Label34.Text = "Windows 95 Boot Screen"; + // + // win95background + // + this.win95background.Location = new System.Drawing.Point(26, 22); + this.win95background.Name = "win95background"; + this.win95background.Size = new System.Drawing.Size(184, 115); + this.win95background.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.win95background.TabIndex = 0; + this.win95background.TabStop = false; + // + // Label33 + // + this.Label33.AutoSize = true; + this.Label33.Location = new System.Drawing.Point(46, 47); + this.Label33.Name = "Label33"; + this.Label33.Size = new System.Drawing.Size(622, 13); + this.Label33.TabIndex = 1; + this.Label33.Text = "Changing your desktop background shows the world that you are different and that " + + "you well... know how to change a background"; + // + // Label32 + // + this.Label32.AutoSize = true; + this.Label32.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.Label32.Location = new System.Drawing.Point(42, 21); + this.Label32.Name = "Label32"; + this.Label32.Size = new System.Drawing.Size(114, 20); + this.Label32.TabIndex = 0; + this.Label32.Text = "Backgrounds"; + // + // hotmailmain + // + this.hotmailmain.AutoScroll = true; + this.hotmailmain.BackColor = System.Drawing.Color.SteelBlue; + this.hotmailmain.Controls.Add(this.PictureBox9); + this.hotmailmain.Controls.Add(this.PictureBox10); + this.hotmailmain.Controls.Add(this.Label31); + this.hotmailmain.Controls.Add(this.Label30); + this.hotmailmain.Controls.Add(this.Label29); + this.hotmailmain.Controls.Add(this.PictureBox8); + this.hotmailmain.Controls.Add(this.PictureBox7); + this.hotmailmain.Controls.Add(this.PictureBox6); + this.hotmailmain.Controls.Add(this.Label28); + this.hotmailmain.Controls.Add(this.Label27); + this.hotmailmain.Controls.Add(this.PictureBox5); + this.hotmailmain.Controls.Add(this.RadioButton3); + this.hotmailmain.Controls.Add(this.RadioButton2); + this.hotmailmain.Controls.Add(this.RadioButton1); + this.hotmailmain.Controls.Add(this.Button18); + this.hotmailmain.Controls.Add(this.txtpassword); + this.hotmailmain.Controls.Add(this.txtloginname); + this.hotmailmain.Controls.Add(this.Label26); + this.hotmailmain.Controls.Add(this.Label25); + this.hotmailmain.Controls.Add(this.Label24); + this.hotmailmain.Controls.Add(this.Label23); + this.hotmailmain.Controls.Add(this.Panel11); + this.hotmailmain.Location = new System.Drawing.Point(233, 313); + this.hotmailmain.Name = "hotmailmain"; + this.hotmailmain.Size = new System.Drawing.Size(218, 127); + this.hotmailmain.TabIndex = 5; + // + // PictureBox9 + // + this.PictureBox9.Location = new System.Drawing.Point(248, 207); + this.PictureBox9.Name = "PictureBox9"; + this.PictureBox9.Size = new System.Drawing.Size(200, 33); + this.PictureBox9.TabIndex = 2; + this.PictureBox9.TabStop = false; + // + // PictureBox10 + // + this.PictureBox10.Location = new System.Drawing.Point(272, 246); + this.PictureBox10.Name = "PictureBox10"; + this.PictureBox10.Size = new System.Drawing.Size(160, 26); + this.PictureBox10.TabIndex = 3; + this.PictureBox10.TabStop = false; + // + // Label31 + // + this.Label31.AutoSize = true; + this.Label31.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + 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(111, 15); + this.Label31.TabIndex = 19; + this.Label31.Text = "Privacy Statement"; + // + // Label30 + // + this.Label30.AutoSize = true; + this.Label30.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + 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(77, 15); + this.Label30.TabIndex = 18; + this.Label30.Text = "Email Safety"; + // + // Label29 + // + this.Label29.AutoSize = true; + this.Label29.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + 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(86, 15); + this.Label29.TabIndex = 17; + this.Label29.Text = "About Hotmail"; + // + // PictureBox8 + // + this.PictureBox8.Location = new System.Drawing.Point(478, 256); + this.PictureBox8.Name = "PictureBox8"; + this.PictureBox8.Size = new System.Drawing.Size(17, 16); + this.PictureBox8.TabIndex = 16; + this.PictureBox8.TabStop = false; + // + // PictureBox7 + // + this.PictureBox7.Location = new System.Drawing.Point(478, 231); + this.PictureBox7.Name = "PictureBox7"; + this.PictureBox7.Size = new System.Drawing.Size(17, 16); + this.PictureBox7.TabIndex = 15; + this.PictureBox7.TabStop = false; + // + // PictureBox6 + // + this.PictureBox6.Location = new System.Drawing.Point(478, 206); + this.PictureBox6.Name = "PictureBox6"; + this.PictureBox6.Size = new System.Drawing.Size(17, 16); + this.PictureBox6.TabIndex = 14; + this.PictureBox6.TabStop = false; + // + // Label28 + // + this.Label28.AutoSize = true; + this.Label28.BackColor = System.Drawing.Color.Navy; + this.Label28.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.Label28.ForeColor = System.Drawing.Color.White; + this.Label28.Location = new System.Drawing.Point(463, 179); + this.Label28.Name = "Label28"; + this.Label28.Size = new System.Drawing.Size(231, 16); + this.Label28.TabIndex = 13; + this.Label28.Text = " I N F O "; + // + // Label27 + // + this.Label27.AutoSize = true; + this.Label27.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + 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(139, 15); + this.Label27.TabIndex = 12; + this.Label27.Text = "Forgot Your Password?"; + // + // PictureBox5 + // + this.PictureBox5.Location = new System.Drawing.Point(235, 139); + this.PictureBox5.Name = "PictureBox5"; + this.PictureBox5.Size = new System.Drawing.Size(17, 16); + this.PictureBox5.TabIndex = 11; + this.PictureBox5.TabStop = false; + // + // RadioButton3 + // + this.RadioButton3.AutoSize = true; + this.RadioButton3.Checked = true; + this.RadioButton3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.RadioButton3.ForeColor = System.Drawing.Color.White; + this.RadioButton3.Location = new System.Drawing.Point(466, 109); + this.RadioButton3.Name = "RadioButton3"; + this.RadioButton3.Size = new System.Drawing.Size(76, 17); + this.RadioButton3.TabIndex = 10; + this.RadioButton3.TabStop = true; + this.RadioButton3.Text = "My Default"; + this.RadioButton3.UseVisualStyleBackColor = true; + // + // RadioButton2 + // + this.RadioButton2.AutoSize = true; + this.RadioButton2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.RadioButton2.ForeColor = System.Drawing.Color.White; + this.RadioButton2.Location = new System.Drawing.Point(345, 109); + this.RadioButton2.Name = "RadioButton2"; + this.RadioButton2.Size = new System.Drawing.Size(76, 17); + this.RadioButton2.TabIndex = 9; + this.RadioButton2.Text = "No Frames"; + this.RadioButton2.UseVisualStyleBackColor = true; + // + // RadioButton1 + // + this.RadioButton1.AutoSize = true; + this.RadioButton1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.RadioButton1.ForeColor = System.Drawing.Color.White; + this.RadioButton1.Location = new System.Drawing.Point(235, 109); + this.RadioButton1.Name = "RadioButton1"; + this.RadioButton1.Size = new System.Drawing.Size(59, 17); + this.RadioButton1.TabIndex = 8; + this.RadioButton1.Text = "Frames"; + this.RadioButton1.UseVisualStyleBackColor = true; + // + // Button18 + // + this.Button18.BackColor = System.Drawing.Color.Silver; + this.Button18.Location = new System.Drawing.Point(563, 81); + this.Button18.Name = "Button18"; + this.Button18.Size = new System.Drawing.Size(60, 23); + this.Button18.TabIndex = 7; + this.Button18.Text = "Enter"; + this.Button18.UseVisualStyleBackColor = false; + // + // txtpassword + // + this.txtpassword.Location = new System.Drawing.Point(406, 83); + this.txtpassword.Name = "txtpassword"; + this.txtpassword.Size = new System.Drawing.Size(138, 20); + this.txtpassword.TabIndex = 6; + this.txtpassword.UseSystemPasswordChar = true; + // + // txtloginname + // + this.txtloginname.Location = new System.Drawing.Point(235, 83); + this.txtloginname.Name = "txtloginname"; + this.txtloginname.Size = new System.Drawing.Size(138, 20); + this.txtloginname.TabIndex = 5; + // + // Label26 + // + this.Label26.AutoSize = true; + this.Label26.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.Label26.ForeColor = System.Drawing.Color.White; + this.Label26.Location = new System.Drawing.Point(403, 59); + this.Label26.Name = "Label26"; + this.Label26.Size = new System.Drawing.Size(65, 15); + this.Label26.TabIndex = 4; + this.Label26.Text = "Password"; + // + // Label25 + // + this.Label25.AutoSize = true; + this.Label25.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + 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(74, 15); + this.Label25.TabIndex = 3; + this.Label25.Text = "Login Name"; + // + // Label24 + // + this.Label24.AutoSize = true; + this.Label24.BackColor = System.Drawing.Color.Navy; + this.Label24.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.Label24.ForeColor = System.Drawing.Color.White; + this.Label24.Location = new System.Drawing.Point(229, 179); + this.Label24.Name = "Label24"; + this.Label24.Size = new System.Drawing.Size(282, 16); + this.Label24.TabIndex = 2; + this.Label24.Text = " V I S I T O R S "; + // + // Label23 + // + this.Label23.AutoSize = true; + this.Label23.BackColor = System.Drawing.Color.Navy; + this.Label23.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.Label23.ForeColor = System.Drawing.Color.White; + this.Label23.Location = new System.Drawing.Point(229, 30); + this.Label23.Name = "Label23"; + this.Label23.Size = new System.Drawing.Size(606, 16); + this.Label23.TabIndex = 1; + this.Label23.Text = " R E G I S T E R E D U S E R S " + + " "; + // + // Panel11 + // + this.Panel11.BackColor = System.Drawing.Color.White; + this.Panel11.Controls.Add(this.PictureBox4); + this.Panel11.Controls.Add(this.PictureBox3); + this.Panel11.Location = new System.Drawing.Point(18, 0); + this.Panel11.Name = "Panel11"; + this.Panel11.Size = new System.Drawing.Size(205, 445); + this.Panel11.TabIndex = 0; + // + // PictureBox4 + // + this.PictureBox4.Location = new System.Drawing.Point(35, 179); + this.PictureBox4.Name = "PictureBox4"; + this.PictureBox4.Size = new System.Drawing.Size(160, 136); + this.PictureBox4.TabIndex = 1; + this.PictureBox4.TabStop = false; + // + // PictureBox3 + // + this.PictureBox3.Location = new System.Drawing.Point(13, 23); + this.PictureBox3.Name = "PictureBox3"; + this.PictureBox3.Size = new System.Drawing.Size(160, 136); + this.PictureBox3.TabIndex = 0; + this.PictureBox3.TabStop = false; + // + // welcomeinternetscreen + // + this.welcomeinternetscreen.AutoScroll = true; + this.welcomeinternetscreen.BackColor = System.Drawing.Color.White; + this.welcomeinternetscreen.Controls.Add(this.Label58); + this.welcomeinternetscreen.Controls.Add(this.LinkLabel16); + this.welcomeinternetscreen.Controls.Add(this.LinkLabel15); + this.welcomeinternetscreen.Controls.Add(this.Label3); + this.welcomeinternetscreen.Controls.Add(this.TextBox1); + this.welcomeinternetscreen.Controls.Add(this.Label2); + this.welcomeinternetscreen.Location = new System.Drawing.Point(8, 3); + this.welcomeinternetscreen.Name = "welcomeinternetscreen"; + this.welcomeinternetscreen.Size = new System.Drawing.Size(38, 38); + this.welcomeinternetscreen.TabIndex = 0; + // + // Label58 + // + this.Label58.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.Label58.AutoSize = true; + 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(-151, 45); + this.Label58.Name = "Label58"; + this.Label58.Size = new System.Drawing.Size(199, 16); + this.Label58.TabIndex = 7; + this.Label58.Text = "Where do you want to go today?"; + // + // LinkLabel16 + // + this.LinkLabel16.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.LinkLabel16.AutoSize = true; + this.LinkLabel16.Location = new System.Drawing.Point(-96, 317); + this.LinkLabel16.Name = "LinkLabel16"; + this.LinkLabel16.Size = new System.Drawing.Size(106, 13); + this.LinkLabel16.TabIndex = 6; + this.LinkLabel16.TabStop = true; + this.LinkLabel16.Text = "www.12padams.com"; + // + // LinkLabel15 + // + this.LinkLabel15.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.LinkLabel15.AutoSize = true; + this.LinkLabel15.Location = new System.Drawing.Point(-89, 298); + this.LinkLabel15.Name = "LinkLabel15"; + this.LinkLabel15.Size = new System.Drawing.Size(89, 13); + this.LinkLabel15.TabIndex = 5; + this.LinkLabel15.TabStop = true; + this.LinkLabel15.Text = "www.google.com"; + // + // Label3 + // + this.Label3.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.Label3.AutoSize = true; + 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(-211, 258); + this.Label3.Name = "Label3"; + this.Label3.Size = new System.Drawing.Size(342, 20); + this.Label3.TabIndex = 2; + this.Label3.Text = "Here are some sites you may wish to visit."; + // + // TextBox1 + // + this.TextBox1.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.TextBox1.BackColor = System.Drawing.Color.White; + this.TextBox1.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.TextBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.TextBox1.Location = new System.Drawing.Point(-247, 98); + this.TextBox1.Multiline = true; + this.TextBox1.Name = "TextBox1"; + this.TextBox1.ReadOnly = true; + this.TextBox1.Size = new System.Drawing.Size(428, 130); + this.TextBox1.TabIndex = 1; + this.TextBox1.Text = resources.GetString("TextBox1.Text"); + this.TextBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + // + // Label2 + // + this.Label2.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.Label2.AutoSize = true; + 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(-198, 19); + this.Label2.Name = "Label2"; + this.Label2.Size = new System.Drawing.Size(308, 24); + this.Label2.TabIndex = 0; + this.Label2.Text = "Welcome To Internet Explorer 4"; + // + // hotmailpadams + // + this.hotmailpadams.AutoScroll = true; + this.hotmailpadams.BackColor = System.Drawing.Color.LightSteelBlue; + this.hotmailpadams.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.hotmailpadams.Controls.Add(this.email1); + this.hotmailpadams.Controls.Add(this.email3); + this.hotmailpadams.Controls.Add(this.email2); + this.hotmailpadams.Controls.Add(this.ListBox1); + this.hotmailpadams.Controls.Add(this.PictureBox14); + this.hotmailpadams.Controls.Add(this.PictureBox13); + this.hotmailpadams.Controls.Add(this.PictureBox12); + this.hotmailpadams.Location = new System.Drawing.Point(8, 321); + this.hotmailpadams.Name = "hotmailpadams"; + this.hotmailpadams.Size = new System.Drawing.Size(214, 116); + this.hotmailpadams.TabIndex = 10; + // + // email1 + // + this.email1.Controls.Add(this.LinkLabel18); + this.email1.Controls.Add(this.Label56); + this.email1.Controls.Add(this.Label47); + this.email1.Controls.Add(this.TextBox12); + this.email1.Controls.Add(this.TextBox11); + this.email1.Controls.Add(this.TextBox7); + this.email1.Controls.Add(this.TextBox6); + this.email1.Controls.Add(this.Label46); + this.email1.Controls.Add(this.Label45); + this.email1.Controls.Add(this.Label44); + this.email1.Location = new System.Drawing.Point(207, 121); + this.email1.Name = "email1"; + this.email1.Size = new System.Drawing.Size(465, 213); + this.email1.TabIndex = 4; + this.email1.Visible = false; + // + // LinkLabel18 + // + this.LinkLabel18.AutoSize = true; + this.LinkLabel18.Location = new System.Drawing.Point(83, 86); + this.LinkLabel18.Name = "LinkLabel18"; + this.LinkLabel18.Size = new System.Drawing.Size(53, 13); + this.LinkLabel18.TabIndex = 9; + this.LinkLabel18.TabStop = true; + this.LinkLabel18.Text = "hwcv.exe"; + // + // Label56 + // + this.Label56.AutoSize = true; + this.Label56.Location = new System.Drawing.Point(7, 87); + this.Label56.Name = "Label56"; + this.Label56.Size = new System.Drawing.Size(69, 13); + this.Label56.TabIndex = 8; + this.Label56.Text = "Attachments:"; + // + // Label47 + // + this.Label47.AutoSize = true; + this.Label47.Location = new System.Drawing.Point(6, 110); + this.Label47.Name = "Label47"; + this.Label47.Size = new System.Drawing.Size(34, 13); + this.Label47.TabIndex = 7; + this.Label47.Text = "Body:"; + // + // TextBox12 + // + this.TextBox12.Location = new System.Drawing.Point(55, 109); + this.TextBox12.Multiline = true; + this.TextBox12.Name = "TextBox12"; + this.TextBox12.Size = new System.Drawing.Size(394, 94); + this.TextBox12.TabIndex = 6; + this.TextBox12.Text = resources.GetString("TextBox12.Text"); + // + // TextBox11 + // + this.TextBox11.Location = new System.Drawing.Point(55, 58); + this.TextBox11.Name = "TextBox11"; + this.TextBox11.Size = new System.Drawing.Size(394, 20); + this.TextBox11.TabIndex = 5; + this.TextBox11.Text = "12padams.com DataLog 1998"; + // + // TextBox7 + // + this.TextBox7.Location = new System.Drawing.Point(55, 32); + this.TextBox7.Name = "TextBox7"; + this.TextBox7.Size = new System.Drawing.Size(394, 20); + this.TextBox7.TabIndex = 4; + this.TextBox7.Text = "12padams"; + // + // TextBox6 + // + this.TextBox6.Location = new System.Drawing.Point(55, 6); + this.TextBox6.Name = "TextBox6"; + this.TextBox6.Size = new System.Drawing.Size(394, 20); + this.TextBox6.TabIndex = 3; + this.TextBox6.Text = "12padams Bot"; + // + // Label46 + // + this.Label46.AutoSize = true; + this.Label46.Location = new System.Drawing.Point(6, 61); + this.Label46.Name = "Label46"; + this.Label46.Size = new System.Drawing.Size(46, 13); + this.Label46.TabIndex = 2; + this.Label46.Text = "Subject:"; + // + // Label45 + // + this.Label45.AutoSize = true; + this.Label45.Location = new System.Drawing.Point(6, 35); + this.Label45.Name = "Label45"; + this.Label45.Size = new System.Drawing.Size(23, 13); + this.Label45.TabIndex = 1; + this.Label45.Text = "To:"; + // + // Label44 + // + this.Label44.AutoSize = true; + this.Label44.Location = new System.Drawing.Point(6, 9); + this.Label44.Name = "Label44"; + this.Label44.Size = new System.Drawing.Size(33, 13); + this.Label44.TabIndex = 0; + this.Label44.Text = "From:"; + // + // email3 + // + this.email3.Controls.Add(this.Label52); + this.email3.Controls.Add(this.TextBox17); + this.email3.Controls.Add(this.TextBox18); + this.email3.Controls.Add(this.TextBox19); + this.email3.Controls.Add(this.TextBox20); + this.email3.Controls.Add(this.Label53); + this.email3.Controls.Add(this.Label54); + this.email3.Controls.Add(this.Label55); + this.email3.Location = new System.Drawing.Point(175, 99); + this.email3.Name = "email3"; + this.email3.Size = new System.Drawing.Size(465, 213); + this.email3.TabIndex = 6; + this.email3.Visible = false; + // + // Label52 + // + this.Label52.AutoSize = true; + this.Label52.Location = new System.Drawing.Point(6, 88); + this.Label52.Name = "Label52"; + this.Label52.Size = new System.Drawing.Size(34, 13); + this.Label52.TabIndex = 7; + this.Label52.Text = "Body:"; + // + // TextBox17 + // + this.TextBox17.Location = new System.Drawing.Point(55, 85); + this.TextBox17.Multiline = true; + this.TextBox17.Name = "TextBox17"; + this.TextBox17.Size = new System.Drawing.Size(394, 116); + this.TextBox17.TabIndex = 6; + this.TextBox17.Text = resources.GetString("TextBox17.Text"); + // + // TextBox18 + // + this.TextBox18.Location = new System.Drawing.Point(55, 58); + this.TextBox18.Name = "TextBox18"; + this.TextBox18.Size = new System.Drawing.Size(394, 20); + this.TextBox18.TabIndex = 5; + this.TextBox18.Text = "What\'s the secret to your website"; + // + // TextBox19 + // + this.TextBox19.Location = new System.Drawing.Point(55, 32); + this.TextBox19.Name = "TextBox19"; + this.TextBox19.Size = new System.Drawing.Size(394, 20); + this.TextBox19.TabIndex = 4; + this.TextBox19.Text = "[email protected]"; + // + // TextBox20 + // + this.TextBox20.Location = new System.Drawing.Point(55, 6); + this.TextBox20.Name = "TextBox20"; + this.TextBox20.Size = new System.Drawing.Size(394, 20); + this.TextBox20.TabIndex = 3; + this.TextBox20.Text = "[email protected]"; + // + // Label53 + // + this.Label53.AutoSize = true; + this.Label53.Location = new System.Drawing.Point(6, 61); + this.Label53.Name = "Label53"; + this.Label53.Size = new System.Drawing.Size(46, 13); + this.Label53.TabIndex = 2; + this.Label53.Text = "Subject:"; + // + // Label54 + // + this.Label54.AutoSize = true; + this.Label54.Location = new System.Drawing.Point(6, 35); + this.Label54.Name = "Label54"; + this.Label54.Size = new System.Drawing.Size(23, 13); + this.Label54.TabIndex = 1; + this.Label54.Text = "To:"; + // + // Label55 + // + this.Label55.AutoSize = true; + this.Label55.Location = new System.Drawing.Point(6, 9); + this.Label55.Name = "Label55"; + this.Label55.Size = new System.Drawing.Size(33, 13); + this.Label55.TabIndex = 0; + this.Label55.Text = "From:"; + // + // email2 + // + this.email2.Controls.Add(this.Label48); + this.email2.Controls.Add(this.TextBox13); + this.email2.Controls.Add(this.TextBox14); + this.email2.Controls.Add(this.TextBox15); + this.email2.Controls.Add(this.TextBox16); + this.email2.Controls.Add(this.Label49); + this.email2.Controls.Add(this.Label50); + this.email2.Controls.Add(this.Label51); + this.email2.Location = new System.Drawing.Point(161, 124); + this.email2.Name = "email2"; + this.email2.Size = new System.Drawing.Size(465, 213); + this.email2.TabIndex = 5; + this.email2.Visible = false; + // + // Label48 + // + this.Label48.AutoSize = true; + this.Label48.Location = new System.Drawing.Point(6, 88); + this.Label48.Name = "Label48"; + this.Label48.Size = new System.Drawing.Size(34, 13); + this.Label48.TabIndex = 7; + this.Label48.Text = "Body:"; + // + // TextBox13 + // + this.TextBox13.Location = new System.Drawing.Point(55, 85); + this.TextBox13.Multiline = true; + this.TextBox13.Name = "TextBox13"; + this.TextBox13.Size = new System.Drawing.Size(394, 116); + this.TextBox13.TabIndex = 6; + this.TextBox13.Text = "Hey How dare you ask me about that I am blocking your ip right now from my websit" + + "e... And for the record don\'t waste your time theres nothing hidden on my websit" + + "e!!!"; + // + // TextBox14 + // + this.TextBox14.Location = new System.Drawing.Point(55, 58); + this.TextBox14.Name = "TextBox14"; + this.TextBox14.Size = new System.Drawing.Size(394, 20); + this.TextBox14.TabIndex = 5; + this.TextBox14.Text = "Re: What\'s the secret to your website"; + // + // TextBox15 + // + this.TextBox15.Location = new System.Drawing.Point(55, 32); + this.TextBox15.Name = "TextBox15"; + this.TextBox15.Size = new System.Drawing.Size(394, 20); + this.TextBox15.TabIndex = 4; + this.TextBox15.Text = "[email protected]"; + // + // TextBox16 + // + this.TextBox16.Location = new System.Drawing.Point(55, 6); + this.TextBox16.Name = "TextBox16"; + this.TextBox16.Size = new System.Drawing.Size(394, 20); + this.TextBox16.TabIndex = 3; + this.TextBox16.Text = "[email protected]"; + // + // Label49 + // + this.Label49.AutoSize = true; + this.Label49.Location = new System.Drawing.Point(6, 61); + this.Label49.Name = "Label49"; + this.Label49.Size = new System.Drawing.Size(46, 13); + this.Label49.TabIndex = 2; + this.Label49.Text = "Subject:"; + // + // Label50 + // + this.Label50.AutoSize = true; + this.Label50.Location = new System.Drawing.Point(6, 35); + this.Label50.Name = "Label50"; + this.Label50.Size = new System.Drawing.Size(23, 13); + this.Label50.TabIndex = 1; + this.Label50.Text = "To:"; + // + // Label51 + // + this.Label51.AutoSize = true; + this.Label51.Location = new System.Drawing.Point(6, 9); + this.Label51.Name = "Label51"; + this.Label51.Size = new System.Drawing.Size(33, 13); + this.Label51.TabIndex = 0; + this.Label51.Text = "From:"; + // + // ListBox1 + // + this.ListBox1.Dock = System.Windows.Forms.DockStyle.Fill; + this.ListBox1.FormattingEnabled = true; + this.ListBox1.Items.AddRange(new object[] { + "12padams.com datalog 1998", + "RE: What\'s the secrect to your website?", + "What\'s the secret to your website?"}); + this.ListBox1.Location = new System.Drawing.Point(154, 59); + this.ListBox1.Name = "ListBox1"; + this.ListBox1.Size = new System.Drawing.Size(518, 278); + this.ListBox1.TabIndex = 3; + // + // PictureBox14 + // + this.PictureBox14.Dock = System.Windows.Forms.DockStyle.Top; + this.PictureBox14.Location = new System.Drawing.Point(154, 38); + this.PictureBox14.Name = "PictureBox14"; + this.PictureBox14.Size = new System.Drawing.Size(518, 21); + this.PictureBox14.TabIndex = 2; + this.PictureBox14.TabStop = false; + // + // PictureBox13 + // + this.PictureBox13.Dock = System.Windows.Forms.DockStyle.Top; + this.PictureBox13.Location = new System.Drawing.Point(154, 0); + this.PictureBox13.Name = "PictureBox13"; + this.PictureBox13.Size = new System.Drawing.Size(518, 38); + this.PictureBox13.TabIndex = 1; + this.PictureBox13.TabStop = false; + // + // PictureBox12 + // + this.PictureBox12.Dock = System.Windows.Forms.DockStyle.Left; + this.PictureBox12.Location = new System.Drawing.Point(0, 0); + this.PictureBox12.Name = "PictureBox12"; + this.PictureBox12.Size = new System.Drawing.Size(154, 337); + this.PictureBox12.TabIndex = 0; + this.PictureBox12.TabStop = false; + // + // googlealpha + // + this.googlealpha.AutoScroll = true; + this.googlealpha.Controls.Add(this.Label15); + this.googlealpha.Controls.Add(this.Panel6); + this.googlealpha.Controls.Add(this.Panel7); + this.googlealpha.Controls.Add(this.Panel5); + this.googlealpha.Controls.Add(this.Panel4); + this.googlealpha.Controls.Add(this.PictureBox2); + this.googlealpha.Location = new System.Drawing.Point(422, 8); + this.googlealpha.Name = "googlealpha"; + this.googlealpha.Size = new System.Drawing.Size(213, 126); + this.googlealpha.TabIndex = 3; + // + // Label15 + // + this.Label15.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.Label15.AutoSize = true; + this.Label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.Label15.Location = new System.Drawing.Point(3, 370); + this.Label15.Name = "Label15"; + this.Label15.Size = new System.Drawing.Size(163, 15); + this.Label15.TabIndex = 4; + this.Label15.Text = "Copyright ©1998 Google Inc."; + // + // Panel6 + // + this.Panel6.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.Panel6.BackColor = System.Drawing.Color.MediumTurquoise; + this.Panel6.Controls.Add(this.LinkLabel13); + this.Panel6.Controls.Add(this.LinkLabel10); + this.Panel6.Controls.Add(this.LinkLabel11); + this.Panel6.Controls.Add(this.LinkLabel12); + this.Panel6.Controls.Add(this.LinkLabel9); + this.Panel6.Controls.Add(this.LinkLabel8); + this.Panel6.Controls.Add(this.LinkLabel7); + this.Panel6.Location = new System.Drawing.Point(6, 227); + this.Panel6.Name = "Panel6"; + this.Panel6.Size = new System.Drawing.Size(167, 124); + this.Panel6.TabIndex = 3; + // + // LinkLabel13 + // + this.LinkLabel13.AutoSize = true; + this.LinkLabel13.Location = new System.Drawing.Point(19, 104); + this.LinkLabel13.Name = "LinkLabel13"; + this.LinkLabel13.Size = new System.Drawing.Size(137, 13); + this.LinkLabel13.TabIndex = 6; + this.LinkLabel13.TabStop = true; + this.LinkLabel13.Text = "Making Google! the Default"; + // + // LinkLabel10 + // + this.LinkLabel10.AutoSize = true; + this.LinkLabel10.Location = new System.Drawing.Point(48, 89); + this.LinkLabel10.Name = "LinkLabel10"; + this.LinkLabel10.Size = new System.Drawing.Size(76, 13); + this.LinkLabel10.TabIndex = 5; + this.LinkLabel10.TabStop = true; + this.LinkLabel10.Text = "Google! Logos"; + // + // LinkLabel11 + // + this.LinkLabel11.AutoSize = true; + this.LinkLabel11.Location = new System.Drawing.Point(48, 73); + this.LinkLabel11.Name = "LinkLabel11"; + this.LinkLabel11.Size = new System.Drawing.Size(78, 13); + this.LinkLabel11.TabIndex = 4; + this.LinkLabel11.TabStop = true; + this.LinkLabel11.Text = "Jobs at Google"; + // + // LinkLabel12 + // + this.LinkLabel12.AutoSize = true; + this.LinkLabel12.Location = new System.Drawing.Point(49, 57); + this.LinkLabel12.Name = "LinkLabel12"; + this.LinkLabel12.Size = new System.Drawing.Size(72, 13); + this.LinkLabel12.TabIndex = 3; + this.LinkLabel12.TabStop = true; + this.LinkLabel12.Text = "Company Info"; + // + // LinkLabel9 + // + this.LinkLabel9.AutoSize = true; + this.LinkLabel9.Location = new System.Drawing.Point(70, 41); + this.LinkLabel9.Name = "LinkLabel9"; + this.LinkLabel9.Size = new System.Drawing.Size(32, 13); + this.LinkLabel9.TabIndex = 2; + this.LinkLabel9.TabStop = true; + this.LinkLabel9.Text = "Help!"; + // + // LinkLabel8 + // + this.LinkLabel8.AutoSize = true; + this.LinkLabel8.Location = new System.Drawing.Point(37, 25); + this.LinkLabel8.Name = "LinkLabel8"; + this.LinkLabel8.Size = new System.Drawing.Size(103, 13); + this.LinkLabel8.TabIndex = 1; + this.LinkLabel8.TabStop = true; + this.LinkLabel8.Text = "Press about Google!"; + // + // LinkLabel7 + // + this.LinkLabel7.AutoSize = true; + this.LinkLabel7.Location = new System.Drawing.Point(42, 9); + this.LinkLabel7.Name = "LinkLabel7"; + this.LinkLabel7.Size = new System.Drawing.Size(89, 13); + this.LinkLabel7.TabIndex = 0; + this.LinkLabel7.TabStop = true; + this.LinkLabel7.Text = "Why use Google!"; + // + // Panel7 + // + this.Panel7.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.Panel7.BackColor = System.Drawing.Color.LightSeaGreen; + this.Panel7.Controls.Add(this.LinkLabel14); + this.Panel7.Controls.Add(this.Button14); + this.Panel7.Controls.Add(this.TextBox5); + this.Panel7.Controls.Add(this.Label14); + this.Panel7.Controls.Add(this.Label13); + this.Panel7.Location = new System.Drawing.Point(176, 227); + this.Panel7.Name = "Panel7"; + this.Panel7.Size = new System.Drawing.Size(164, 124); + this.Panel7.TabIndex = 3; + // + // LinkLabel14 + // + this.LinkLabel14.AutoSize = true; + this.LinkLabel14.Location = new System.Drawing.Point(105, 84); + this.LinkLabel14.Name = "LinkLabel14"; + this.LinkLabel14.Size = new System.Drawing.Size(43, 13); + this.LinkLabel14.TabIndex = 4; + this.LinkLabel14.TabStop = true; + this.LinkLabel14.Text = "Archive"; + // + // Button14 + // + this.Button14.BackColor = System.Drawing.Color.Silver; + this.Button14.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.Button14.Location = new System.Drawing.Point(17, 79); + this.Button14.Name = "Button14"; + this.Button14.Size = new System.Drawing.Size(82, 23); + this.Button14.TabIndex = 3; + this.Button14.Text = "Subscribe"; + this.Button14.UseVisualStyleBackColor = false; + // + // TextBox5 + // + this.TextBox5.Location = new System.Drawing.Point(12, 57); + this.TextBox5.Name = "TextBox5"; + this.TextBox5.Size = new System.Drawing.Size(138, 20); + this.TextBox5.TabIndex = 2; + this.TextBox5.Text = "your e-mail"; + // + // Label14 + // + this.Label14.AutoSize = true; + this.Label14.Location = new System.Drawing.Point(44, 42); + this.Label14.Name = "Label14"; + this.Label14.Size = new System.Drawing.Size(87, 13); + this.Label14.TabIndex = 1; + this.Label14.Text = "updates monthly:"; + // + // Label13 + // + this.Label13.AutoSize = true; + this.Label13.Location = new System.Drawing.Point(55, 25); + this.Label13.Name = "Label13"; + this.Label13.Size = new System.Drawing.Size(64, 13); + this.Label13.TabIndex = 0; + this.Label13.Text = "Get Google!"; + // + // Panel5 + // + this.Panel5.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.Panel5.BackColor = System.Drawing.Color.PaleTurquoise; + this.Panel5.Controls.Add(this.LinkLabel6); + this.Panel5.Controls.Add(this.LinkLabel5); + this.Panel5.Controls.Add(this.Label12); + this.Panel5.Location = new System.Drawing.Point(-161, 227); + this.Panel5.Name = "Panel5"; + this.Panel5.Size = new System.Drawing.Size(164, 124); + this.Panel5.TabIndex = 2; + // + // LinkLabel6 + // + this.LinkLabel6.AutoSize = true; + this.LinkLabel6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.LinkLabel6.Location = new System.Drawing.Point(43, 81); + this.LinkLabel6.Name = "LinkLabel6"; + this.LinkLabel6.Size = new System.Drawing.Size(84, 16); + this.LinkLabel6.TabIndex = 2; + this.LinkLabel6.TabStop = true; + this.LinkLabel6.Text = "Linux Search"; + // + // LinkLabel5 + // + this.LinkLabel5.AutoSize = true; + this.LinkLabel5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.LinkLabel5.Location = new System.Drawing.Point(32, 64); + this.LinkLabel5.Name = "LinkLabel5"; + this.LinkLabel5.Size = new System.Drawing.Size(104, 16); + this.LinkLabel5.TabIndex = 1; + this.LinkLabel5.TabStop = true; + this.LinkLabel5.Text = "Stanford Search"; + // + // Label12 + // + this.Label12.AutoSize = true; + this.Label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.Label12.Location = new System.Drawing.Point(26, 46); + this.Label12.Name = "Label12"; + this.Label12.Size = new System.Drawing.Size(115, 16); + this.Label12.TabIndex = 0; + this.Label12.Text = "Special Searches"; + // + // Panel4 + // + this.Panel4.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.Panel4.BackColor = System.Drawing.Color.WhiteSmoke; + this.Panel4.Controls.Add(this.Button13); + this.Panel4.Controls.Add(this.Button12); + this.Panel4.Controls.Add(this.TextBox4); + this.Panel4.Controls.Add(this.Label11); + this.Panel4.Location = new System.Drawing.Point(-161, 125); + this.Panel4.Name = "Panel4"; + this.Panel4.Size = new System.Drawing.Size(501, 100); + this.Panel4.TabIndex = 1; + // + // Button13 + // + this.Button13.BackColor = System.Drawing.Color.Silver; + this.Button13.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.Button13.Location = new System.Drawing.Point(253, 55); + this.Button13.Name = "Button13"; + this.Button13.Size = new System.Drawing.Size(110, 25); + this.Button13.TabIndex = 3; + this.Button13.Text = "I\'m feeling lucky"; + this.Button13.UseVisualStyleBackColor = false; + // + // Button12 + // + this.Button12.BackColor = System.Drawing.Color.Silver; + this.Button12.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.Button12.Location = new System.Drawing.Point(141, 55); + this.Button12.Name = "Button12"; + this.Button12.Size = new System.Drawing.Size(106, 25); + this.Button12.TabIndex = 2; + this.Button12.Text = "Google Search"; + this.Button12.UseVisualStyleBackColor = false; + // + // TextBox4 + // + this.TextBox4.Location = new System.Drawing.Point(113, 26); + this.TextBox4.Multiline = true; + this.TextBox4.Name = "TextBox4"; + this.TextBox4.Size = new System.Drawing.Size(281, 24); + this.TextBox4.TabIndex = 1; + // + // Label11 + // + this.Label11.AutoSize = true; + this.Label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.Label11.Location = new System.Drawing.Point(155, 6); + this.Label11.Name = "Label11"; + this.Label11.Size = new System.Drawing.Size(186, 16); + this.Label11.TabIndex = 0; + this.Label11.Text = "Search the web using Google!"; + // + // PictureBox2 + // + this.PictureBox2.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.PictureBox2.Location = new System.Drawing.Point(-104, 7); + this.PictureBox2.Name = "PictureBox2"; + this.PictureBox2.Size = new System.Drawing.Size(361, 106); + this.PictureBox2.TabIndex = 0; + this.PictureBox2.TabStop = false; + // + // padamshidden + // + this.padamshidden.AutoScroll = true; + this.padamshidden.Controls.Add(this.TextBox10); + this.padamshidden.Location = new System.Drawing.Point(671, 223); + this.padamshidden.Name = "padamshidden"; + this.padamshidden.Size = new System.Drawing.Size(265, 91); + this.padamshidden.TabIndex = 9; + // + // TextBox10 + // + this.TextBox10.BackColor = System.Drawing.Color.White; + this.TextBox10.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.TextBox10.Location = new System.Drawing.Point(10, 15); + this.TextBox10.Multiline = true; + this.TextBox10.Name = "TextBox10"; + this.TextBox10.ReadOnly = true; + this.TextBox10.Size = new System.Drawing.Size(721, 409); + this.TextBox10.TabIndex = 0; + this.TextBox10.Text = resources.GetString("TextBox10.Text"); + // + // secretwebsite + // + this.secretwebsite.AutoScroll = true; + this.secretwebsite.BackColor = System.Drawing.Color.Black; + this.secretwebsite.Controls.Add(this.TextBox9); + this.secretwebsite.ForeColor = System.Drawing.Color.White; + this.secretwebsite.Location = new System.Drawing.Point(460, 264); + this.secretwebsite.Name = "secretwebsite"; + this.secretwebsite.Size = new System.Drawing.Size(197, 159); + this.secretwebsite.TabIndex = 8; + // + // TextBox9 + // + this.TextBox9.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.TextBox9.BackColor = System.Drawing.Color.Black; + this.TextBox9.ForeColor = System.Drawing.Color.White; + this.TextBox9.Location = new System.Drawing.Point(-304, 33); + this.TextBox9.Multiline = true; + this.TextBox9.Name = "TextBox9"; + this.TextBox9.ReadOnly = true; + this.TextBox9.Size = new System.Drawing.Size(761, 375); + this.TextBox9.TabIndex = 0; + this.TextBox9.Text = resources.GetString("TextBox9.Text"); + this.TextBox9.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + // + // skindows95advertisment + // + this.skindows95advertisment.AutoScroll = true; + this.skindows95advertisment.Controls.Add(this.Label42); + this.skindows95advertisment.Controls.Add(this.Label41); + this.skindows95advertisment.Controls.Add(this.TextBox8); + this.skindows95advertisment.Controls.Add(this.PictureBox11); + this.skindows95advertisment.Controls.Add(this.Label40); + this.skindows95advertisment.Controls.Add(this.Label39); + this.skindows95advertisment.Location = new System.Drawing.Point(457, 140); + this.skindows95advertisment.Name = "skindows95advertisment"; + this.skindows95advertisment.Size = new System.Drawing.Size(95, 95); + this.skindows95advertisment.TabIndex = 7; + // + // Label42 + // + 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(1191, 9); + this.Label42.Name = "Label42"; + this.Label42.Size = new System.Drawing.Size(263, 18); + this.Label42.TabIndex = 5; + this.Label42.Text = "Get all you will ever need for only:"; + // + // Label41 + // + 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(1291, 33); + this.Label41.Name = "Label41"; + this.Label41.Size = new System.Drawing.Size(71, 24); + this.Label41.TabIndex = 4; + this.Label41.Text = "$39.99"; + // + // TextBox8 + // + this.TextBox8.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left))); + this.TextBox8.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.TextBox8.Location = new System.Drawing.Point(51, 72); + this.TextBox8.Multiline = true; + this.TextBox8.Name = "TextBox8"; + this.TextBox8.ReadOnly = true; + this.TextBox8.Size = new System.Drawing.Size(172, 6627); + 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(1161, 60); + this.PictureBox11.Name = "PictureBox11"; + this.PictureBox11.Size = new System.Drawing.Size(337, 386); + this.PictureBox11.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; + this.PictureBox11.TabIndex = 2; + this.PictureBox11.TabStop = false; + // + // Label40 + // + this.Label40.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left))); + this.Label40.AutoSize = true; + this.Label40.Location = new System.Drawing.Point(48, 45); + this.Label40.Name = "Label40"; + this.Label40.Size = new System.Drawing.Size(180, 13); + this.Label40.TabIndex = 1; + this.Label40.Text = "The one stop customization software"; + // + // Label39 + // + this.Label39.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left))); + this.Label39.AutoSize = true; + this.Label39.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.Label39.Location = new System.Drawing.Point(47, 25); + this.Label39.Name = "Label39"; + this.Label39.Size = new System.Drawing.Size(110, 20); + this.Label39.TabIndex = 0; + this.Label39.Text = "Skindows 95"; + // + // googlemain + // + this.googlemain.AutoScroll = true; + this.googlemain.Controls.Add(this.linkLabel19); + this.googlemain.Controls.Add(this.googlebetalink); + this.googlemain.Controls.Add(this.googleprototypelink); + this.googlemain.Controls.Add(this.Label6); + this.googlemain.Location = new System.Drawing.Point(52, 3); + this.googlemain.Name = "googlemain"; + this.googlemain.Size = new System.Drawing.Size(38, 38); + this.googlemain.TabIndex = 1; + // + // linkLabel19 + // + this.linkLabel19.AutoSize = true; + this.linkLabel19.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.linkLabel19.Location = new System.Drawing.Point(17, 101); + this.linkLabel19.Name = "linkLabel19"; + this.linkLabel19.Size = new System.Drawing.Size(180, 16); + this.linkLabel19.TabIndex = 3; + this.linkLabel19.TabStop = true; + this.linkLabel19.Text = "Browse the World Wide Web"; + // + // googlebetalink + // + this.googlebetalink.AutoSize = true; + this.googlebetalink.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.googlebetalink.Location = new System.Drawing.Point(16, 82); + this.googlebetalink.Name = "googlebetalink"; + this.googlebetalink.Size = new System.Drawing.Size(411, 16); + this.googlebetalink.TabIndex = 2; + this.googlebetalink.TabStop = true; + this.googlebetalink.Text = "Might-work-some-of-the-time-prototype that is much more up to date. "; + // + // googleprototypelink + // + this.googleprototypelink.AutoSize = true; + this.googleprototypelink.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.googleprototypelink.Location = new System.Drawing.Point(16, 64); + this.googleprototypelink.Name = "googleprototypelink"; + this.googleprototypelink.Size = new System.Drawing.Size(205, 16); + this.googleprototypelink.TabIndex = 1; + this.googleprototypelink.TabStop = true; + this.googleprototypelink.Text = "Google Search Engine Prototype"; + // + // Label6 + // + this.Label6.AutoSize = true; + this.Label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.Label6.Location = new System.Drawing.Point(10, 15); + this.Label6.Name = "Label6"; + this.Label6.Size = new System.Drawing.Size(276, 31); + this.Label6.TabIndex = 0; + this.Label6.Text = "Welcome To Google"; + // + // googleprototype + // + this.googleprototype.AutoScroll = true; + this.googleprototype.Controls.Add(this.Label10); + this.googleprototype.Controls.Add(this.Panel3); + this.googleprototype.Controls.Add(this.LinkLabel3); + this.googleprototype.Controls.Add(this.LinkLabel2); + this.googleprototype.Controls.Add(this.LinkLabel1); + this.googleprototype.Controls.Add(this.Panel2); + this.googleprototype.Controls.Add(this.pboxgoogleprototypelogo); + this.googleprototype.Location = new System.Drawing.Point(107, 45); + this.googleprototype.Name = "googleprototype"; + this.googleprototype.Size = new System.Drawing.Size(317, 260); + this.googleprototype.TabIndex = 2; + // + // Label10 + // + this.Label10.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.Label10.AutoSize = true; + this.Label10.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.Label10.Location = new System.Drawing.Point(30, 405); + this.Label10.Name = "Label10"; + this.Label10.Size = new System.Drawing.Size(215, 15); + this.Label10.TabIndex = 6; + this.Label10.Text = "Copyright ©1997-8 Stanford University"; + // + // Panel3 + // + this.Panel3.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.Panel3.BackColor = System.Drawing.Color.WhiteSmoke; + this.Panel3.Controls.Add(this.LinkLabel4); + this.Panel3.Controls.Add(this.Button11); + this.Panel3.Controls.Add(this.TextBox3); + this.Panel3.Controls.Add(this.Label9); + this.Panel3.Location = new System.Drawing.Point(-91, 334); + this.Panel3.Name = "Panel3"; + this.Panel3.Size = new System.Drawing.Size(430, 65); + this.Panel3.TabIndex = 5; + // + // LinkLabel4 + // + this.LinkLabel4.AutoSize = true; + this.LinkLabel4.Location = new System.Drawing.Point(301, 44); + this.LinkLabel4.Name = "LinkLabel4"; + this.LinkLabel4.Size = new System.Drawing.Size(43, 13); + this.LinkLabel4.TabIndex = 3; + this.LinkLabel4.TabStop = true; + this.LinkLabel4.Text = "Archive"; + // + // Button11 + // + this.Button11.BackColor = System.Drawing.Color.Silver; + this.Button11.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.Button11.Location = new System.Drawing.Point(198, 34); + this.Button11.Name = "Button11"; + this.Button11.Size = new System.Drawing.Size(96, 26); + this.Button11.TabIndex = 2; + this.Button11.Text = "Subscribe"; + this.Button11.UseVisualStyleBackColor = false; + // + // TextBox3 + // + this.TextBox3.Location = new System.Drawing.Point(46, 36); + this.TextBox3.Name = "TextBox3"; + this.TextBox3.Size = new System.Drawing.Size(146, 20); + this.TextBox3.TabIndex = 1; + this.TextBox3.Text = "your e-mail"; + // + // Label9 + // + this.Label9.AutoSize = true; + this.Label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.Label9.Location = new System.Drawing.Point(111, 9); + this.Label9.Name = "Label9"; + this.Label9.Size = new System.Drawing.Size(212, 16); + this.Label9.TabIndex = 0; + this.Label9.Text = "Get Google! updates monthly!"; + // + // LinkLabel3 + // + this.LinkLabel3.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.LinkLabel3.AutoSize = true; + this.LinkLabel3.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.LinkLabel3.Location = new System.Drawing.Point(20, 309); + this.LinkLabel3.Name = "LinkLabel3"; + this.LinkLabel3.Size = new System.Drawing.Size(115, 18); + this.LinkLabel3.TabIndex = 4; + this.LinkLabel3.TabStop = true; + this.LinkLabel3.Text = "Stanford Search"; + // + // LinkLabel2 + // + this.LinkLabel2.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.LinkLabel2.AutoSize = true; + this.LinkLabel2.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.LinkLabel2.Location = new System.Drawing.Point(133, 309); + this.LinkLabel2.Name = "LinkLabel2"; + this.LinkLabel2.Size = new System.Drawing.Size(93, 18); + this.LinkLabel2.TabIndex = 3; + this.LinkLabel2.TabStop = true; + this.LinkLabel2.Text = "Linux Search"; + // + // LinkLabel1 + // + this.LinkLabel1.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.LinkLabel1.AutoSize = true; + this.LinkLabel1.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.LinkLabel1.Location = new System.Drawing.Point(42, 271); + this.LinkLabel1.Name = "LinkLabel1"; + this.LinkLabel1.Size = new System.Drawing.Size(162, 25); + this.LinkLabel1.TabIndex = 2; + this.LinkLabel1.TabStop = true; + this.LinkLabel1.Text = "About Google!"; + // + // Panel2 + // + this.Panel2.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.Panel2.BackColor = System.Drawing.Color.WhiteSmoke; + this.Panel2.Controls.Add(this.Label8); + this.Panel2.Controls.Add(this.Button10); + this.Panel2.Controls.Add(this.Button9); + this.Panel2.Controls.Add(this.ComboBox1); + this.Panel2.Controls.Add(this.TextBox2); + this.Panel2.Controls.Add(this.Label7); + this.Panel2.Location = new System.Drawing.Point(-91, 135); + this.Panel2.Name = "Panel2"; + this.Panel2.Size = new System.Drawing.Size(430, 117); + this.Panel2.TabIndex = 1; + // + // Label8 + // + this.Label8.AutoSize = true; + this.Label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.Label8.Location = new System.Drawing.Point(18, 91); + this.Label8.Name = "Label8"; + this.Label8.Size = new System.Drawing.Size(410, 16); + this.Label8.TabIndex = 5; + this.Label8.Text = "Index contains ~25 million pages (soon to be much bigger)"; + // + // Button10 + // + this.Button10.BackColor = System.Drawing.Color.Silver; + this.Button10.Location = new System.Drawing.Point(263, 65); + this.Button10.Name = "Button10"; + this.Button10.Size = new System.Drawing.Size(104, 23); + this.Button10.TabIndex = 4; + this.Button10.Text = "I\'m Feeling Lucky"; + this.Button10.UseVisualStyleBackColor = false; + // + // Button9 + // + this.Button9.BackColor = System.Drawing.Color.Silver; + this.Button9.Location = new System.Drawing.Point(153, 65); + this.Button9.Name = "Button9"; + this.Button9.Size = new System.Drawing.Size(104, 23); + this.Button9.TabIndex = 3; + this.Button9.Text = "Google Search"; + this.Button9.UseVisualStyleBackColor = false; + // + // ComboBox1 + // + this.ComboBox1.FormattingEnabled = true; + this.ComboBox1.Items.AddRange(new object[] { + "10 results", + "30 results", + "100 results"}); + this.ComboBox1.Location = new System.Drawing.Point(54, 65); + this.ComboBox1.Name = "ComboBox1"; + this.ComboBox1.Size = new System.Drawing.Size(92, 21); + this.ComboBox1.TabIndex = 2; + this.ComboBox1.Text = "10 results"; + // + // TextBox2 + // + this.TextBox2.Location = new System.Drawing.Point(83, 39); + this.TextBox2.Name = "TextBox2"; + this.TextBox2.Size = new System.Drawing.Size(261, 20); + this.TextBox2.TabIndex = 1; + // + // Label7 + // + this.Label7.AutoSize = true; + this.Label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.Label7.Location = new System.Drawing.Point(121, 15); + this.Label7.Name = "Label7"; + this.Label7.Size = new System.Drawing.Size(186, 16); + this.Label7.TabIndex = 0; + this.Label7.Text = "Search the web using Google!"; + // + // pboxgoogleprototypelogo + // + this.pboxgoogleprototypelogo.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.pboxgoogleprototypelogo.Location = new System.Drawing.Point(-57, 6); + this.pboxgoogleprototypelogo.Name = "pboxgoogleprototypelogo"; + this.pboxgoogleprototypelogo.Size = new System.Drawing.Size(349, 116); + this.pboxgoogleprototypelogo.TabIndex = 0; + this.pboxgoogleprototypelogo.TabStop = false; + // + // Panel14 + // + this.Panel14.BackColor = System.Drawing.Color.Silver; + this.Panel14.Controls.Add(this.Button8); + this.Panel14.Controls.Add(this.addressbar); + this.Panel14.Controls.Add(this.Label1); + this.Panel14.Dock = System.Windows.Forms.DockStyle.Top; + this.Panel14.Location = new System.Drawing.Point(0, 73); + this.Panel14.Name = "Panel14"; + this.Panel14.Size = new System.Drawing.Size(959, 38); + this.Panel14.TabIndex = 17; + // + // Button8 + // + this.Button8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.Button8.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.Button8.Location = new System.Drawing.Point(898, 5); + this.Button8.Name = "Button8"; + this.Button8.Size = new System.Drawing.Size(55, 28); + this.Button8.TabIndex = 2; + this.Button8.Text = "Go"; + this.Button8.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; + this.Button8.UseVisualStyleBackColor = true; + // + // addressbar + // + this.addressbar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.addressbar.FormattingEnabled = true; + this.addressbar.Location = new System.Drawing.Point(58, 9); + this.addressbar.Name = "addressbar"; + this.addressbar.Size = new System.Drawing.Size(812, 21); + this.addressbar.TabIndex = 1; + this.addressbar.Text = "www.microsoft.com/internetexplorer4/welcome"; + // + // Label1 + // + this.Label1.AutoSize = true; + this.Label1.Location = new System.Drawing.Point(4, 13); + this.Label1.Name = "Label1"; + this.Label1.Size = new System.Drawing.Size(48, 13); + this.Label1.TabIndex = 0; + this.Label1.Text = "Address:"; + // + // Panel1 + // + this.Panel1.BackColor = System.Drawing.Color.Silver; + this.Panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.Panel1.Controls.Add(this.Button30); + this.Panel1.Controls.Add(this.Button29); + this.Panel1.Controls.Add(this.Button28); + this.Panel1.Controls.Add(this.Button27); + this.Panel1.Controls.Add(this.Button7); + this.Panel1.Controls.Add(this.Button6); + this.Panel1.Controls.Add(this.Button5); + this.Panel1.Controls.Add(this.Button4); + this.Panel1.Controls.Add(this.Button3); + this.Panel1.Controls.Add(this.Button2); + this.Panel1.Controls.Add(this.Button1); + this.Panel1.Dock = System.Windows.Forms.DockStyle.Top; + this.Panel1.Location = new System.Drawing.Point(0, 24); + this.Panel1.Name = "Panel1"; + this.Panel1.Size = new System.Drawing.Size(959, 49); + this.Panel1.TabIndex = 14; + // + // Button30 + // + this.Button30.Dock = System.Windows.Forms.DockStyle.Left; + this.Button30.FlatAppearance.BorderSize = 0; + this.Button30.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.Button30.ImageAlign = System.Drawing.ContentAlignment.TopCenter; + this.Button30.Location = new System.Drawing.Point(750, 0); + this.Button30.Name = "Button30"; + this.Button30.Size = new System.Drawing.Size(75, 47); + this.Button30.TabIndex = 10; + this.Button30.Text = "Print"; + this.Button30.TextAlign = System.Drawing.ContentAlignment.BottomCenter; + this.Button30.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; + this.Button30.UseVisualStyleBackColor = true; + // + // Button29 + // + this.Button29.Dock = System.Windows.Forms.DockStyle.Left; + this.Button29.FlatAppearance.BorderSize = 0; + this.Button29.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.Button29.ImageAlign = System.Drawing.ContentAlignment.TopCenter; + this.Button29.Location = new System.Drawing.Point(675, 0); + this.Button29.Name = "Button29"; + this.Button29.Size = new System.Drawing.Size(75, 47); + this.Button29.TabIndex = 9; + this.Button29.Text = "Mail"; + this.Button29.TextAlign = System.Drawing.ContentAlignment.BottomCenter; + this.Button29.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; + this.Button29.UseVisualStyleBackColor = true; + // + // Button28 + // + this.Button28.Dock = System.Windows.Forms.DockStyle.Left; + this.Button28.FlatAppearance.BorderSize = 0; + this.Button28.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.Button28.ImageAlign = System.Drawing.ContentAlignment.TopCenter; + this.Button28.Location = new System.Drawing.Point(600, 0); + this.Button28.Name = "Button28"; + this.Button28.Size = new System.Drawing.Size(75, 47); + this.Button28.TabIndex = 8; + this.Button28.Text = "Full Screen"; + this.Button28.TextAlign = System.Drawing.ContentAlignment.BottomCenter; + this.Button28.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; + this.Button28.UseVisualStyleBackColor = true; + // + // Button27 + // + this.Button27.Dock = System.Windows.Forms.DockStyle.Left; + this.Button27.FlatAppearance.BorderSize = 0; + this.Button27.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.Button27.ImageAlign = System.Drawing.ContentAlignment.TopCenter; + this.Button27.Location = new System.Drawing.Point(525, 0); + this.Button27.Name = "Button27"; + this.Button27.Size = new System.Drawing.Size(75, 47); + this.Button27.TabIndex = 7; + this.Button27.Text = "Channels"; + this.Button27.TextAlign = System.Drawing.ContentAlignment.BottomCenter; + this.Button27.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; + this.Button27.UseVisualStyleBackColor = true; + // + // Button7 + // + this.Button7.Dock = System.Windows.Forms.DockStyle.Left; + this.Button7.FlatAppearance.BorderSize = 0; + this.Button7.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.Button7.Location = new System.Drawing.Point(450, 0); + this.Button7.Name = "Button7"; + this.Button7.Size = new System.Drawing.Size(75, 47); + this.Button7.TabIndex = 6; + this.Button7.Text = "History"; + this.Button7.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; + this.Button7.UseVisualStyleBackColor = true; + // + // Button6 + // + this.Button6.Dock = System.Windows.Forms.DockStyle.Left; + this.Button6.FlatAppearance.BorderSize = 0; + this.Button6.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.Button6.Location = new System.Drawing.Point(375, 0); + this.Button6.Name = "Button6"; + this.Button6.Size = new System.Drawing.Size(75, 47); + this.Button6.TabIndex = 5; + this.Button6.Text = "Favorites"; + this.Button6.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; + this.Button6.UseVisualStyleBackColor = true; + // + // Button5 + // + this.Button5.Dock = System.Windows.Forms.DockStyle.Left; + this.Button5.FlatAppearance.BorderSize = 0; + this.Button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.Button5.Location = new System.Drawing.Point(300, 0); + this.Button5.Name = "Button5"; + this.Button5.Size = new System.Drawing.Size(75, 47); + this.Button5.TabIndex = 4; + this.Button5.Text = "Home"; + this.Button5.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; + this.Button5.UseVisualStyleBackColor = true; + // + // Button4 + // + this.Button4.Dock = System.Windows.Forms.DockStyle.Left; + this.Button4.FlatAppearance.BorderSize = 0; + this.Button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.Button4.Location = new System.Drawing.Point(225, 0); + this.Button4.Name = "Button4"; + this.Button4.Size = new System.Drawing.Size(75, 47); + this.Button4.TabIndex = 3; + this.Button4.Text = "Refresh"; + this.Button4.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; + this.Button4.UseVisualStyleBackColor = true; + // + // Button3 + // + this.Button3.Dock = System.Windows.Forms.DockStyle.Left; + this.Button3.FlatAppearance.BorderSize = 0; + this.Button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.Button3.Location = new System.Drawing.Point(150, 0); + this.Button3.Name = "Button3"; + this.Button3.Size = new System.Drawing.Size(75, 47); + this.Button3.TabIndex = 2; + this.Button3.Text = "Stop"; + this.Button3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; + this.Button3.UseVisualStyleBackColor = true; + // + // Button2 + // + this.Button2.Dock = System.Windows.Forms.DockStyle.Left; + this.Button2.FlatAppearance.BorderSize = 0; + this.Button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.Button2.Location = new System.Drawing.Point(75, 0); + this.Button2.Name = "Button2"; + this.Button2.Size = new System.Drawing.Size(75, 47); + this.Button2.TabIndex = 1; + this.Button2.Text = "Forward"; + this.Button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; + this.Button2.UseVisualStyleBackColor = true; + // + // Button1 + // + this.Button1.Dock = System.Windows.Forms.DockStyle.Left; + this.Button1.FlatAppearance.BorderSize = 0; + this.Button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.Button1.Location = new System.Drawing.Point(0, 0); + this.Button1.Name = "Button1"; + this.Button1.Size = new System.Drawing.Size(75, 47); + this.Button1.TabIndex = 0; + this.Button1.Text = "Back"; + this.Button1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; + this.Button1.UseVisualStyleBackColor = true; + // + // MenuStrip3 + // + this.MenuStrip3.BackColor = System.Drawing.Color.Silver; + this.MenuStrip3.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ToolStripMenuItem1, + this.ToolStripMenuItem22, + this.ToolStripMenuItem28, + this.ToolStripMenuItem78, + this.ToolStripMenuItem73, + this.ToolStripMenuItem88}); + this.MenuStrip3.Location = new System.Drawing.Point(0, 0); + this.MenuStrip3.Name = "MenuStrip3"; + this.MenuStrip3.Size = new System.Drawing.Size(959, 24); + this.MenuStrip3.TabIndex = 16; + this.MenuStrip3.Text = "MenuStrip1"; + // + // ToolStripMenuItem1 + // + this.ToolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ToolStripMenuItem2, + this.ToolStripMenuItem8, + this.ToolStripMenuItem9, + this.ToolStripMenuItem10, + this.ToolStripMenuItem11, + this.ToolStripMenuItem12, + this.ToolStripMenuItem13, + this.ToolStripMenuItem14, + this.ToolStripMenuItem18, + this.ToolStripMenuItem19, + this.ToolStripMenuItem20, + this.ToolStripMenuItem21}); + this.ToolStripMenuItem1.Name = "ToolStripMenuItem1"; + this.ToolStripMenuItem1.Size = new System.Drawing.Size(37, 20); + this.ToolStripMenuItem1.Text = "File"; + // + // ToolStripMenuItem2 + // + this.ToolStripMenuItem2.BackColor = System.Drawing.Color.Silver; + this.ToolStripMenuItem2.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ToolStripMenuItem3, + this.ToolStripMenuItem4, + this.ToolStripMenuItem5, + this.ToolStripMenuItem6, + this.ToolStripMenuItem7}); + this.ToolStripMenuItem2.Name = "ToolStripMenuItem2"; + 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(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(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(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(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(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(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(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(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(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(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(221, 22); + this.ToolStripMenuItem13.Text = "Print..."; + // + // ToolStripMenuItem14 + // + this.ToolStripMenuItem14.BackColor = System.Drawing.Color.Silver; + this.ToolStripMenuItem14.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ToolStripMenuItem15, + this.ToolStripMenuItem16, + this.ToolStripMenuItem17}); + this.ToolStripMenuItem14.Name = "ToolStripMenuItem14"; + 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(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(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(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(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(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(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(221, 22); + this.ToolStripMenuItem21.Text = "Close"; + // + // ToolStripMenuItem22 + // + this.ToolStripMenuItem22.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ToolStripMenuItem23, + this.ToolStripMenuItem24, + this.ToolStripMenuItem25, + this.ToolStripMenuItem26, + this.ToolStripMenuItem27}); + this.ToolStripMenuItem22.Name = "ToolStripMenuItem22"; + 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(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(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(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(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(221, 22); + this.ToolStripMenuItem27.Text = "Find (on This Page)... Ctrl+F"; + // + // ToolStripMenuItem28 + // + this.ToolStripMenuItem28.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ToolStripMenuItem29, + this.ToolStripMenuItem35, + this.ToolStripMenuItem36, + this.ToolStripMenuItem41, + this.ToolStripMenuItem43, + this.ToolStripMenuItem44, + this.ToolStripMenuItem45, + this.ToolStripMenuItem51, + this.ToolStripMenuItem71, + this.ToolStripMenuItem72}); + this.ToolStripMenuItem28.Name = "ToolStripMenuItem28"; + this.ToolStripMenuItem28.Size = new System.Drawing.Size(44, 20); + this.ToolStripMenuItem28.Text = "View"; + // + // ToolStripMenuItem29 + // + this.ToolStripMenuItem29.BackColor = System.Drawing.Color.Silver; + this.ToolStripMenuItem29.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ToolStripMenuItem30, + this.ToolStripMenuItem31, + this.ToolStripMenuItem32, + this.ToolStripMenuItem33, + this.ToolStripMenuItem34}); + this.ToolStripMenuItem29.Name = "ToolStripMenuItem29"; + 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(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(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(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(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(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(166, 22); + this.ToolStripMenuItem35.Text = "Status Bar"; + // + // ToolStripMenuItem36 + // + this.ToolStripMenuItem36.BackColor = System.Drawing.Color.Silver; + this.ToolStripMenuItem36.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ToolStripMenuItem37, + this.ToolStripMenuItem38, + this.ToolStripMenuItem39, + this.ToolStripMenuItem40}); + this.ToolStripMenuItem36.Name = "ToolStripMenuItem36"; + 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(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(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(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(184, 22); + this.ToolStripMenuItem40.Text = "Tip of the Day"; + // + // ToolStripMenuItem41 + // + this.ToolStripMenuItem41.BackColor = System.Drawing.Color.Silver; + this.ToolStripMenuItem41.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ToolStripMenuItem42}); + this.ToolStripMenuItem41.Name = "ToolStripMenuItem41"; + 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(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(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(166, 22); + this.ToolStripMenuItem44.Text = "Refresh F5"; + // + // ToolStripMenuItem45 + // + this.ToolStripMenuItem45.BackColor = System.Drawing.Color.Silver; + this.ToolStripMenuItem45.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ToolStripMenuItem46, + this.ToolStripMenuItem47, + this.ToolStripMenuItem48, + this.ToolStripMenuItem49, + this.ToolStripMenuItem50}); + this.ToolStripMenuItem45.Name = "ToolStripMenuItem45"; + 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(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(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(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(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(119, 22); + this.ToolStripMenuItem50.Text = "Smallest"; + // + // ToolStripMenuItem51 + // + this.ToolStripMenuItem51.BackColor = System.Drawing.Color.Silver; + this.ToolStripMenuItem51.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ToolStripMenuItem52, + this.ToolStripMenuItem53, + this.ToolStripMenuItem54}); + this.ToolStripMenuItem51.Name = "ToolStripMenuItem51"; + 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(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(230, 22); + this.ToolStripMenuItem53.Text = "Western European (Windows)"; + // + // ToolStripMenuItem54 + // + this.ToolStripMenuItem54.BackColor = System.Drawing.Color.Silver; + this.ToolStripMenuItem54.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ToolStripMenuItem55, + this.ToolStripMenuItem56, + this.ToolStripMenuItem57, + this.ToolStripMenuItem58, + this.ToolStripMenuItem59, + this.ToolStripMenuItem60, + this.ToolStripMenuItem61, + this.ToolStripMenuItem62, + this.ToolStripMenuItem63, + this.ToolStripMenuItem64, + this.ToolStripMenuItem65, + this.ToolStripMenuItem66, + this.ToolStripMenuItem67, + this.ToolStripMenuItem68, + this.ToolStripMenuItem69, + this.ToolStripMenuItem70}); + this.ToolStripMenuItem54.Name = "ToolStripMenuItem54"; + 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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(166, 22); + this.ToolStripMenuItem72.Text = "Full Screen F11"; + // + // ToolStripMenuItem78 + // + this.ToolStripMenuItem78.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ToolStripMenuItem79, + this.ToolStripMenuItem85, + this.ToolStripMenuItem86, + this.ToolStripMenuItem87}); + this.ToolStripMenuItem78.Name = "ToolStripMenuItem78"; + this.ToolStripMenuItem78.Size = new System.Drawing.Size(34, 20); + this.ToolStripMenuItem78.Text = "Go"; + // + // ToolStripMenuItem79 + // + this.ToolStripMenuItem79.BackColor = System.Drawing.Color.Silver; + this.ToolStripMenuItem79.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ToolStripMenuItem80, + this.ToolStripMenuItem81, + this.ToolStripMenuItem82, + this.ToolStripMenuItem83, + this.ToolStripMenuItem84}); + this.ToolStripMenuItem79.Name = "ToolStripMenuItem79"; + 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(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(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(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(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(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(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(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(175, 22); + this.ToolStripMenuItem87.Text = "Internet Options..."; + // + // ToolStripMenuItem73 + // + this.ToolStripMenuItem73.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ToolStripMenuItem74, + this.ToolStripMenuItem75, + this.ToolStripMenuItem76}); + this.ToolStripMenuItem73.Name = "ToolStripMenuItem73"; + 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(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(180, 22); + this.ToolStripMenuItem75.Text = "Organize Favorites..."; + // + // ToolStripMenuItem76 + // + this.ToolStripMenuItem76.BackColor = System.Drawing.Color.Silver; + this.ToolStripMenuItem76.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ToolStripMenuItem77}); + this.ToolStripMenuItem76.Name = "ToolStripMenuItem76"; + 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(109, 22); + this.ToolStripMenuItem77.Text = "(none)"; + // + // ToolStripMenuItem88 + // + this.ToolStripMenuItem88.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { + this.ToolStripMenuItem89, + this.ToolStripMenuItem90, + this.ToolStripMenuItem91, + this.ToolStripMenuItem92, + this.ToolStripMenuItem93, + this.ToolStripMenuItem94, + this.ToolStripMenuItem95}); + this.ToolStripMenuItem88.Name = "ToolStripMenuItem88"; + 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(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(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(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(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(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(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(196, 22); + this.ToolStripMenuItem95.Text = "Send Feedback"; + // + // Win95IE4 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.Controls.Add(this.browsingarea); + this.Controls.Add(this.Panel14); + this.Controls.Add(this.Panel1); + this.Controls.Add(this.MenuStrip3); + this.Name = "Win95IE4"; + this.Size = new System.Drawing.Size(959, 594); + this.browsingarea.ResumeLayout(false); + this.padamsmain.ResumeLayout(false); + this.padamsmain.PerformLayout(); + this.Panel12.ResumeLayout(false); + this.Panel12.PerformLayout(); + this.Panel10.ResumeLayout(false); + this.Panel10.PerformLayout(); + this.Panel9.ResumeLayout(false); + this.Panel9.PerformLayout(); + this.Panel8.ResumeLayout(false); + this.Panel8.PerformLayout(); + this.padamsbackgrounds.ResumeLayout(false); + this.padamsbackgrounds.PerformLayout(); + this.Panel13.ResumeLayout(false); + this.Panel13.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.Previewimage)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.mclarinflimage)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.win95background)).EndInit(); + this.hotmailmain.ResumeLayout(false); + this.hotmailmain.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox9)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox10)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox8)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox7)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox6)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox5)).EndInit(); + this.Panel11.ResumeLayout(false); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox3)).EndInit(); + this.welcomeinternetscreen.ResumeLayout(false); + this.welcomeinternetscreen.PerformLayout(); + this.hotmailpadams.ResumeLayout(false); + this.email1.ResumeLayout(false); + this.email1.PerformLayout(); + this.email3.ResumeLayout(false); + this.email3.PerformLayout(); + this.email2.ResumeLayout(false); + this.email2.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox14)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox13)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox12)).EndInit(); + this.googlealpha.ResumeLayout(false); + this.googlealpha.PerformLayout(); + this.Panel6.ResumeLayout(false); + this.Panel6.PerformLayout(); + this.Panel7.ResumeLayout(false); + this.Panel7.PerformLayout(); + this.Panel5.ResumeLayout(false); + this.Panel5.PerformLayout(); + this.Panel4.ResumeLayout(false); + this.Panel4.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox2)).EndInit(); + this.padamshidden.ResumeLayout(false); + this.padamshidden.PerformLayout(); + this.secretwebsite.ResumeLayout(false); + this.secretwebsite.PerformLayout(); + this.skindows95advertisment.ResumeLayout(false); + this.skindows95advertisment.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.PictureBox11)).EndInit(); + this.googlemain.ResumeLayout(false); + this.googlemain.PerformLayout(); + this.googleprototype.ResumeLayout(false); + this.googleprototype.PerformLayout(); + this.Panel3.ResumeLayout(false); + this.Panel3.PerformLayout(); + this.Panel2.ResumeLayout(false); + this.Panel2.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pboxgoogleprototypelogo)).EndInit(); + this.Panel14.ResumeLayout(false); + this.Panel14.PerformLayout(); + this.Panel1.ResumeLayout(false); + this.MenuStrip3.ResumeLayout(false); + this.MenuStrip3.PerformLayout(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + internal System.Windows.Forms.Panel browsingarea; + private System.Windows.Forms.WebBrowser webBrowser1; + internal System.Windows.Forms.Panel padamsmain; + internal System.Windows.Forms.Panel Panel12; + internal System.Windows.Forms.LinkLabel LinkLabel17; + internal System.Windows.Forms.Label Label38; + internal System.Windows.Forms.Label Label20; + internal System.Windows.Forms.Panel Panel10; + internal System.Windows.Forms.Button Button16; + internal System.Windows.Forms.Label Label22; + internal System.Windows.Forms.Button Button15; + internal System.Windows.Forms.Label Label21; + internal System.Windows.Forms.Label Label18; + internal System.Windows.Forms.Panel Panel9; + internal System.Windows.Forms.Label Label37; + internal System.Windows.Forms.Button Button24; + internal System.Windows.Forms.Button Button23; + internal System.Windows.Forms.Label Label36; + internal System.Windows.Forms.Label Label19; + internal System.Windows.Forms.Panel Panel8; + internal System.Windows.Forms.Button Button26; + internal System.Windows.Forms.Label Label57; + internal System.Windows.Forms.Button Button25; + internal System.Windows.Forms.Label Label43; + internal System.Windows.Forms.Button Button17; + internal System.Windows.Forms.Label Label5; + internal System.Windows.Forms.Label Label17; + internal System.Windows.Forms.Label Label16; + internal System.Windows.Forms.Label Label4; + internal System.Windows.Forms.Panel padamsbackgrounds; + internal System.Windows.Forms.Panel Panel13; + internal System.Windows.Forms.PictureBox Previewimage; + internal System.Windows.Forms.Button Button21; + internal System.Windows.Forms.Button Button22; + internal System.Windows.Forms.Label Label35; + internal System.Windows.Forms.PictureBox mclarinflimage; + internal System.Windows.Forms.Button Button20; + internal System.Windows.Forms.Button Button19; + internal System.Windows.Forms.Label Label34; + internal System.Windows.Forms.PictureBox win95background; + internal System.Windows.Forms.Label Label33; + internal System.Windows.Forms.Label Label32; + internal System.Windows.Forms.Panel hotmailmain; + internal System.Windows.Forms.PictureBox PictureBox9; + internal System.Windows.Forms.PictureBox PictureBox10; + internal System.Windows.Forms.Label Label31; + internal System.Windows.Forms.Label Label30; + internal System.Windows.Forms.Label Label29; + internal System.Windows.Forms.PictureBox PictureBox8; + internal System.Windows.Forms.PictureBox PictureBox7; + internal System.Windows.Forms.PictureBox PictureBox6; + internal System.Windows.Forms.Label Label28; + internal System.Windows.Forms.Label Label27; + internal System.Windows.Forms.PictureBox PictureBox5; + internal System.Windows.Forms.RadioButton RadioButton3; + internal System.Windows.Forms.RadioButton RadioButton2; + internal System.Windows.Forms.RadioButton RadioButton1; + internal System.Windows.Forms.Button Button18; + internal System.Windows.Forms.TextBox txtpassword; + internal System.Windows.Forms.TextBox txtloginname; + internal System.Windows.Forms.Label Label26; + internal System.Windows.Forms.Label Label25; + internal System.Windows.Forms.Label Label24; + internal System.Windows.Forms.Label Label23; + internal System.Windows.Forms.Panel Panel11; + internal System.Windows.Forms.PictureBox PictureBox4; + internal System.Windows.Forms.PictureBox PictureBox3; + internal System.Windows.Forms.Panel welcomeinternetscreen; + internal System.Windows.Forms.Label Label58; + internal System.Windows.Forms.LinkLabel LinkLabel16; + internal System.Windows.Forms.LinkLabel LinkLabel15; + internal System.Windows.Forms.Label Label3; + internal System.Windows.Forms.TextBox TextBox1; + internal System.Windows.Forms.Label Label2; + internal System.Windows.Forms.Panel hotmailpadams; + internal System.Windows.Forms.Panel email1; + internal System.Windows.Forms.LinkLabel LinkLabel18; + internal System.Windows.Forms.Label Label56; + internal System.Windows.Forms.Label Label47; + internal System.Windows.Forms.TextBox TextBox12; + internal System.Windows.Forms.TextBox TextBox11; + internal System.Windows.Forms.TextBox TextBox7; + internal System.Windows.Forms.TextBox TextBox6; + internal System.Windows.Forms.Label Label46; + internal System.Windows.Forms.Label Label45; + internal System.Windows.Forms.Label Label44; + internal System.Windows.Forms.Panel email3; + internal System.Windows.Forms.Label Label52; + internal System.Windows.Forms.TextBox TextBox17; + internal System.Windows.Forms.TextBox TextBox18; + internal System.Windows.Forms.TextBox TextBox19; + internal System.Windows.Forms.TextBox TextBox20; + internal System.Windows.Forms.Label Label53; + internal System.Windows.Forms.Label Label54; + internal System.Windows.Forms.Label Label55; + internal System.Windows.Forms.Panel email2; + internal System.Windows.Forms.Label Label48; + internal System.Windows.Forms.TextBox TextBox13; + internal System.Windows.Forms.TextBox TextBox14; + internal System.Windows.Forms.TextBox TextBox15; + internal System.Windows.Forms.TextBox TextBox16; + internal System.Windows.Forms.Label Label49; + internal System.Windows.Forms.Label Label50; + internal System.Windows.Forms.Label Label51; + internal System.Windows.Forms.ListBox ListBox1; + internal System.Windows.Forms.PictureBox PictureBox14; + internal System.Windows.Forms.PictureBox PictureBox13; + internal System.Windows.Forms.PictureBox PictureBox12; + internal System.Windows.Forms.Panel googlealpha; + internal System.Windows.Forms.Label Label15; + internal System.Windows.Forms.Panel Panel6; + internal System.Windows.Forms.LinkLabel LinkLabel13; + internal System.Windows.Forms.LinkLabel LinkLabel10; + internal System.Windows.Forms.LinkLabel LinkLabel11; + internal System.Windows.Forms.LinkLabel LinkLabel12; + internal System.Windows.Forms.LinkLabel LinkLabel9; + internal System.Windows.Forms.LinkLabel LinkLabel8; + internal System.Windows.Forms.LinkLabel LinkLabel7; + internal System.Windows.Forms.Panel Panel7; + internal System.Windows.Forms.LinkLabel LinkLabel14; + internal System.Windows.Forms.Button Button14; + internal System.Windows.Forms.TextBox TextBox5; + internal System.Windows.Forms.Label Label14; + internal System.Windows.Forms.Label Label13; + internal System.Windows.Forms.Panel Panel5; + internal System.Windows.Forms.LinkLabel LinkLabel6; + internal System.Windows.Forms.LinkLabel LinkLabel5; + internal System.Windows.Forms.Label Label12; + internal System.Windows.Forms.Panel Panel4; + internal System.Windows.Forms.Button Button13; + internal System.Windows.Forms.Button Button12; + internal System.Windows.Forms.TextBox TextBox4; + internal System.Windows.Forms.Label Label11; + internal System.Windows.Forms.PictureBox PictureBox2; + internal System.Windows.Forms.Panel padamshidden; + internal System.Windows.Forms.TextBox TextBox10; + internal System.Windows.Forms.Panel secretwebsite; + internal System.Windows.Forms.TextBox TextBox9; + internal System.Windows.Forms.Panel skindows95advertisment; + internal System.Windows.Forms.Label Label42; + internal System.Windows.Forms.Label Label41; + internal System.Windows.Forms.TextBox TextBox8; + internal System.Windows.Forms.PictureBox PictureBox11; + internal System.Windows.Forms.Label Label40; + internal System.Windows.Forms.Label Label39; + internal System.Windows.Forms.Panel googlemain; + internal System.Windows.Forms.LinkLabel linkLabel19; + internal System.Windows.Forms.LinkLabel googlebetalink; + internal System.Windows.Forms.LinkLabel googleprototypelink; + internal System.Windows.Forms.Label Label6; + internal System.Windows.Forms.Panel googleprototype; + internal System.Windows.Forms.Label Label10; + internal System.Windows.Forms.Panel Panel3; + internal System.Windows.Forms.LinkLabel LinkLabel4; + internal System.Windows.Forms.Button Button11; + internal System.Windows.Forms.TextBox TextBox3; + internal System.Windows.Forms.Label Label9; + internal System.Windows.Forms.LinkLabel LinkLabel3; + internal System.Windows.Forms.LinkLabel LinkLabel2; + internal System.Windows.Forms.LinkLabel LinkLabel1; + internal System.Windows.Forms.Panel Panel2; + internal System.Windows.Forms.Label Label8; + internal System.Windows.Forms.Button Button10; + internal System.Windows.Forms.Button Button9; + internal System.Windows.Forms.ComboBox ComboBox1; + internal System.Windows.Forms.TextBox TextBox2; + internal System.Windows.Forms.Label Label7; + internal System.Windows.Forms.PictureBox pboxgoogleprototypelogo; + internal System.Windows.Forms.Panel Panel14; + internal System.Windows.Forms.Button Button8; + internal System.Windows.Forms.ComboBox addressbar; + internal System.Windows.Forms.Label Label1; + internal System.Windows.Forms.Panel Panel1; + internal System.Windows.Forms.Button Button30; + internal System.Windows.Forms.Button Button29; + internal System.Windows.Forms.Button Button28; + internal System.Windows.Forms.Button Button27; + internal System.Windows.Forms.Button Button7; + internal System.Windows.Forms.Button Button6; + internal System.Windows.Forms.Button Button5; + internal System.Windows.Forms.Button Button4; + internal System.Windows.Forms.Button Button3; + internal System.Windows.Forms.Button Button2; + internal System.Windows.Forms.Button Button1; + internal System.Windows.Forms.MenuStrip MenuStrip3; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem1; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem2; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem3; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem4; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem5; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem6; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem7; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem8; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem9; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem10; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem11; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem12; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem13; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem14; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem15; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem16; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem17; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem18; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem19; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem20; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem21; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem22; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem23; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem24; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem25; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem26; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem27; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem28; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem29; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem30; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem31; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem32; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem33; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem34; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem35; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem36; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem37; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem38; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem39; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem40; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem41; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem42; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem43; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem44; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem45; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem46; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem47; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem48; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem49; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem50; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem51; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem52; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem53; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem54; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem55; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem56; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem57; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem58; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem59; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem60; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem61; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem62; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem63; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem64; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem65; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem66; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem67; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem68; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem69; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem70; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem71; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem72; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem78; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem79; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem80; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem81; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem82; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem83; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem84; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem85; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem86; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem87; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem73; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem74; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem75; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem76; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem77; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem88; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem89; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem90; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem91; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem92; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem93; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem94; + internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem95; + } +} diff --git a/TimeHACK.Main/WinClassic/Win95IE4.cs b/TimeHACK.Main/WinClassic/Win95IE4.cs new file mode 100644 index 0000000..bf03223 --- /dev/null +++ b/TimeHACK.Main/WinClassic/Win95IE4.cs @@ -0,0 +1,93 @@ +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.WinClassic +{ + public partial class Win95IE4 : UserControl + { + public Win95IE4() + { + InitializeComponent(); + } + + private void Win95IE4_Load(object sender, EventArgs e) + { + HidePrograms(); + welcomeinternetscreen.Show(); + welcomeinternetscreen.Dock = DockStyle.Fill; + } + + private void HidePrograms() + { + googlemain.Hide(); + welcomeinternetscreen.Hide(); + googleprototype.Hide(); + googlealpha.Hide(); + padamsmain.Hide(); + hotmailmain.Hide(); + padamsbackgrounds.Hide(); + skindows95advertisment.Hide(); + secretwebsite.Hide(); + padamshidden.Hide(); + email1.Hide(); + email2.Hide(); + email3.Hide(); + hotmailpadams.Hide(); + webBrowser1.Hide(); + } + + private void LinkLabel15_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + { + HidePrograms(); + googlemain.Dock = DockStyle.Fill; + googlemain.Show(); + addressbar.Text = "www.google.com"; + } + + private void LinkLabel16_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + { + HidePrograms(); + padamsmain.Dock = DockStyle.Fill; + padamsmain.Show(); + addressbar.Text = "www.12padams.com"; + } + + private void Googleprototypelink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + { + HidePrograms(); + googleprototype.Dock = DockStyle.Fill; + googleprototype.Show(); + addressbar.Text = "www.google.stanford.edu"; + } + + private void Googlebetalink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + { + HidePrograms(); + googlealpha.Dock = DockStyle.Fill; + googlealpha.Show(); + addressbar.Text = "www.alpha.google.com"; + } + + private void Label20_Click(object sender, EventArgs e) + { + HidePrograms(); + padamshidden.Dock = DockStyle.Fill; + padamshidden.Show(); + } + + private void LinkLabel19_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + { + HidePrograms(); + webBrowser1.Dock = DockStyle.Fill; + webBrowser1.Show(); + } + + } +} diff --git a/TimeHACK.Main/WinClassicForms/WinClassicIE4.resx b/TimeHACK.Main/WinClassic/Win95IE4.resx index 12119dc..12119dc 100644 --- a/TimeHACK.Main/WinClassicForms/WinClassicIE4.resx +++ b/TimeHACK.Main/WinClassic/Win95IE4.resx diff --git a/TimeHACK.Main/WinClassicForms/WinClassicCMD.Designer.cs b/TimeHACK.Main/WinClassic/WinClassicCMD.Designer.cs index ba99aa9..ba99aa9 100644 --- a/TimeHACK.Main/WinClassicForms/WinClassicCMD.Designer.cs +++ b/TimeHACK.Main/WinClassic/WinClassicCMD.Designer.cs diff --git a/TimeHACK.Main/WinClassicForms/WinClassicCMD.cs b/TimeHACK.Main/WinClassic/WinClassicCMD.cs index 109e08e..109e08e 100644 --- a/TimeHACK.Main/WinClassicForms/WinClassicCMD.cs +++ b/TimeHACK.Main/WinClassic/WinClassicCMD.cs diff --git a/TimeHACK.Main/WinClassicForms/WinClassicCMD.resx b/TimeHACK.Main/WinClassic/WinClassicCMD.resx index cd30725..cd30725 100644 --- a/TimeHACK.Main/WinClassicForms/WinClassicCMD.resx +++ b/TimeHACK.Main/WinClassic/WinClassicCMD.resx diff --git a/TimeHACK.Main/WinClassicForms/WinClassicIE4.Designer.cs b/TimeHACK.Main/WinClassic/WinClassicIE4.Designer.cs index 4efe87a..e429662 100644 --- a/TimeHACK.Main/WinClassicForms/WinClassicIE4.Designer.cs +++ b/TimeHACK.Main/WinClassic/WinClassicIE4.Designer.cs @@ -728,7 +728,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(6554, 118); + this.Panel13.Size = new System.Drawing.Size(6956, 118); this.Panel13.TabIndex = 2; // // Previewimage @@ -739,7 +739,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(5137, 118); + this.Previewimage.Size = new System.Drawing.Size(5539, 118); this.Previewimage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.Previewimage.TabIndex = 1; this.Previewimage.TabStop = false; @@ -1877,7 +1877,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(990, 9); + this.Label42.Location = new System.Drawing.Point(1057, 9); this.Label42.Name = "Label42"; this.Label42.Size = new System.Drawing.Size(263, 18); this.Label42.TabIndex = 5; @@ -1888,7 +1888,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(1090, 33); + this.Label41.Location = new System.Drawing.Point(1157, 33); this.Label41.Name = "Label41"; this.Label41.Size = new System.Drawing.Size(71, 24); this.Label41.TabIndex = 4; @@ -1903,14 +1903,14 @@ this.TextBox8.Multiline = true; this.TextBox8.Name = "TextBox8"; this.TextBox8.ReadOnly = true; - this.TextBox8.Size = new System.Drawing.Size(172, 5574); + this.TextBox8.Size = new System.Drawing.Size(172, 5925); 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(960, 60); + this.PictureBox11.Location = new System.Drawing.Point(1027, 60); this.PictureBox11.Name = "PictureBox11"; this.PictureBox11.Size = new System.Drawing.Size(337, 386); this.PictureBox11.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; @@ -1962,7 +1962,7 @@ this.linkLabel19.TabIndex = 3; this.linkLabel19.TabStop = true; this.linkLabel19.Text = "Browse the World Wide Web"; - this.linkLabel19.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel19_LinkClicked); + this.linkLabel19.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.LinkLabel19_LinkClicked); // // googlebetalink // @@ -1974,7 +1974,7 @@ this.googlebetalink.TabIndex = 2; this.googlebetalink.TabStop = true; this.googlebetalink.Text = "Might-work-some-of-the-time-prototype that is much more up to date. "; - this.googlebetalink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.googlebetalink_LinkClicked); + this.googlebetalink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.Googlebetalink_LinkClicked); // // googleprototypelink // @@ -1986,7 +1986,7 @@ this.googleprototypelink.TabIndex = 1; this.googleprototypelink.TabStop = true; this.googleprototypelink.Text = "Google Search Engine Prototype"; - this.googleprototypelink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.googleprototypelink_LinkClicked); + this.googleprototypelink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.Googleprototypelink_LinkClicked); // // Label6 // @@ -2008,7 +2008,7 @@ this.googleprototype.Controls.Add(this.LinkLabel1); this.googleprototype.Controls.Add(this.Panel2); this.googleprototype.Controls.Add(this.pboxgoogleprototypelogo); - this.googleprototype.Location = new System.Drawing.Point(6, 47); + this.googleprototype.Location = new System.Drawing.Point(107, 45); this.googleprototype.Name = "googleprototype"; this.googleprototype.Size = new System.Drawing.Size(317, 260); this.googleprototype.TabIndex = 2; diff --git a/TimeHACK.Main/WinClassicForms/WinClassicIE4.cs b/TimeHACK.Main/WinClassic/WinClassicIE4.cs index 4dffe55..22bc0d9 100644 --- a/TimeHACK.Main/WinClassicForms/WinClassicIE4.cs +++ b/TimeHACK.Main/WinClassic/WinClassicIE4.cs @@ -1,5 +1,4 @@ using System; -using System.Runtime.InteropServices; using System.Windows.Forms; namespace TimeHACK @@ -13,12 +12,12 @@ namespace TimeHACK private void WinClassicIE4_Load(object sender, EventArgs e) { TopMost = true; - hidePrograms(); + HidePrograms(); welcomeinternetscreen.Show(); welcomeinternetscreen.Dock = DockStyle.Fill; } - private void hidePrograms() + private void HidePrograms() { googlemain.Hide(); welcomeinternetscreen.Hide(); @@ -39,7 +38,7 @@ namespace TimeHACK private void LinkLabel15_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { - hidePrograms(); + HidePrograms(); googlemain.Dock = DockStyle.Fill; googlemain.Show(); addressbar.Text = "www.google.com"; @@ -47,28 +46,28 @@ namespace TimeHACK private void LinkLabel16_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { - hidePrograms(); + HidePrograms(); padamsmain.Dock = DockStyle.Fill; padamsmain.Show(); addressbar.Text = "www.12padams.com"; } - private void closebutton_Click(object sender, EventArgs e) + private void Closebutton_Click(object sender, EventArgs e) { this.Close(); } - private void googleprototypelink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + private void Googleprototypelink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { - hidePrograms(); + HidePrograms(); googleprototype.Dock = DockStyle.Fill; googleprototype.Show(); addressbar.Text = "www.google.stanford.edu"; } - private void googlebetalink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + private void Googlebetalink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { - hidePrograms(); + HidePrograms(); googlealpha.Dock = DockStyle.Fill; googlealpha.Show(); addressbar.Text = "www.alpha.google.com"; @@ -76,14 +75,14 @@ namespace TimeHACK private void Label20_Click(object sender, EventArgs e) { - hidePrograms(); + HidePrograms(); padamshidden.Dock = DockStyle.Fill; padamshidden.Show(); } - private void linkLabel19_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + private void LinkLabel19_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { - hidePrograms(); + HidePrograms(); webBrowser1.Dock = DockStyle.Fill; webBrowser1.Show(); } diff --git a/TimeHACK.Main/WinClassic/WinClassicIE4.resx b/TimeHACK.Main/WinClassic/WinClassicIE4.resx new file mode 100644 index 0000000..12119dc --- /dev/null +++ b/TimeHACK.Main/WinClassic/WinClassicIE4.resx @@ -0,0 +1,197 @@ +<?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> + <data name="TextBox1.Text" xml:space="preserve"> + <value>Welcome To Internet Explorer 4. +Internet explorer 4 makes browsing the web and exploring websites a pleasent experience. +Just type an address in the location bar above and then press go. +Instantly you will be taken to the webpage of your choosing. +Where do you want to go today?</value> + </data> + <data name="TextBox12.Text" xml:space="preserve"> + <value>1998: Added Time Distortion software to 12padams website. +Software was hidden and only accessable after downloading hwcv.exe and applying it onto the 12padams website +Time Distortion software in extremely early stages and dangerous +Any Download of the time distortion software results in an instant alert to 12padams</value> + </data> + <data name="TextBox17.Text" xml:space="preserve"> + <value>Hey 12padams... I was scanning your website and i found well i don't know. + +Do you have some type of hidden software on it because i can't find to find the matching software the has the same code as i saw... + +Whats the hidden software?</value> + </data> + <data name="TextBox10.Text" xml:space="preserve"> + <value>12padams.com Data Log + +1996: www.12padams.com created +1997:Lots Of software added to 12padams.com +1998: ############### + +WARNING 1998 log file is encrypted and unreadable. + +Rest of log stored on hotmail account... + +Username: [email protected] +Password: projectdeath </value> + </data> + <data name="TextBox9.Text" xml:space="preserve"> + <value> + + + +WARNING: You have entered a secret site which was not meant to be accessed. + +Warning do not tell 12padams about this website... +12padams is evil. +12padams is holding secrets which need to be found out. +I myself am banned from 12padams.com I almost found out the secret. +I don't know what the secret is but it seems that 12padams is hiding an additional piece of software on his site. +This software is hidden but can still be accessed. +The software is very powerful and is not a game, virus, or anything like that. +I don't know what it is but i do know its powerful. + +You need to access this it. +I was scanning the code on the 12padams website and thats how i know about it. +Someone needs to find this software and use it. +I don't know how to access it from the 12padams site but all I know is that you have to click on something. +Its the thing you would least expect to click.... + +This site will be destroyed by 12padams very soon you need to find this secret before he removes it from his website. + +FIND IT!!! +JUST CLICK EVERYWHERE ON THE 12PADAMS WEBSITE TILL YOU FIND THE SECRET!!!!! + +written by "the hidden hacker"</value> + </data> + <data name="TextBox8.Text" xml:space="preserve"> + <value>Skindows 95 is the best customization software in the world avalible for windows 95. + +It allows the editing of the active captionbar to look pritty much however you like it. + +Show the world your style. Buy Skindows 95 to use your computer to its full potential + +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> + <metadata name="MenuStrip3.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> + <value>17, 17</value> + </metadata> +</root>
\ No newline at end of file diff --git a/TimeHACK.Main/WinClassicForms/WinClassicTemplate.Designer.cs b/TimeHACK.Main/WinClassic/WinClassicTemplate.Designer.cs index 252c147..252c147 100644 --- a/TimeHACK.Main/WinClassicForms/WinClassicTemplate.Designer.cs +++ b/TimeHACK.Main/WinClassic/WinClassicTemplate.Designer.cs diff --git a/TimeHACK.Main/WinClassicForms/WinClassicTemplate.cs b/TimeHACK.Main/WinClassic/WinClassicTemplate.cs index 9152521..9152521 100644 --- a/TimeHACK.Main/WinClassicForms/WinClassicTemplate.cs +++ b/TimeHACK.Main/WinClassic/WinClassicTemplate.cs diff --git a/TimeHACK.Main/WinClassicForms/WinClassicTemplate.resx b/TimeHACK.Main/WinClassic/WinClassicTemplate.resx index cd30725..cd30725 100644 --- a/TimeHACK.Main/WinClassicForms/WinClassicTemplate.resx +++ b/TimeHACK.Main/WinClassic/WinClassicTemplate.resx diff --git a/TimeHACK.Main/Windows95.cs b/TimeHACK.Main/Windows95.cs index 94c42aa..832cfbd 100644 --- a/TimeHACK.Main/Windows95.cs +++ b/TimeHACK.Main/Windows95.cs @@ -116,7 +116,7 @@ namespace TimeHACK { WindowManager wm = new WindowManager(); TestApp test = new TestApp(); - wm.startWinClassic(test, "TestApp", null, true, true); + wm.StartWinClassic(test, "TestApp", null, true, true); } } } diff --git a/TimeHACK.Main/bin/Release/TimeHACK.Engine.dll b/TimeHACK.Main/bin/Release/TimeHACK.Engine.dll Binary files differindex 9e8c504..9074301 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 b0d17dc..b95db11 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 af9f856..5678b12 100644 --- a/TimeHACK.Main/bin/Release/TimeHACK.application +++ b/TimeHACK.Main/bin/Release/TimeHACK.application @@ -14,7 +14,7 @@ <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> </dsig:Transforms> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> - <dsig:DigestValue>a/Rg0oqaFV3brH5B97iOCDXc0yawkl9S/2cVtgXXS8M=</dsig:DigestValue> + <dsig:DigestValue>owcvndBWt3qGkDndsMykYlr5kB7zH3NDbzGfSUEMI4Q=</dsig:DigestValue> </hash> </dependentAssembly> </dependency> diff --git a/TimeHACK.Main/bin/Release/TimeHACK.exe b/TimeHACK.Main/bin/Release/TimeHACK.exe Binary files differindex 899a43f..f7ee039 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 2b1efb6..acf6100 100644 --- a/TimeHACK.Main/bin/Release/TimeHACK.exe.manifest +++ b/TimeHACK.Main/bin/Release/TimeHACK.exe.manifest @@ -44,14 +44,14 @@ </dependentAssembly> </dependency> <dependency> - <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.exe" size="4272128"> + <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.exe" size="4316160"> <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>a195m/FVq7D1VXSsD5UlJt8G92gqRxAIBSlvD7iViak=</dsig:DigestValue> + <dsig:DigestValue>0HpVKz1ySHX1nAbymXka7wsJyOP+TKug9rRVwFJTHFg=</dsig:DigestValue> </hash> </dependentAssembly> </dependency> @@ -63,7 +63,7 @@ <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> </dsig:Transforms> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> - <dsig:DigestValue>YDC6fdQvXveTmH0thYXVu9Uk9dtVVg3+QjDTaaqtScc=</dsig:DigestValue> + <dsig:DigestValue>kfO2njAcVXARAwAtSM9wiIcjfnG1rI+K7OP2VxVBwGw=</dsig:DigestValue> </hash> </dependentAssembly> </dependency> diff --git a/TimeHACK.Main/bin/Release/TimeHACK.pdb b/TimeHACK.Main/bin/Release/TimeHACK.pdb Binary files differindex 3ea1e2f..d5c442b 100644 --- a/TimeHACK.Main/bin/Release/TimeHACK.pdb +++ b/TimeHACK.Main/bin/Release/TimeHACK.pdb diff --git a/TimeHACK.Main/bin/Release/app.publish/TimeHACK.exe b/TimeHACK.Main/bin/Release/app.publish/TimeHACK.exe Binary files differindex 899a43f..f7ee039 100644 --- a/TimeHACK.Main/bin/Release/app.publish/TimeHACK.exe +++ b/TimeHACK.Main/bin/Release/app.publish/TimeHACK.exe 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 73ed556..a45fbc4 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.Main.csproj.FileListAbsolute.txt b/TimeHACK.Main/obj/Release/TimeHACK.Main.csproj.FileListAbsolute.txt index 434d62f..6a082e0 100644 --- a/TimeHACK.Main/obj/Release/TimeHACK.Main.csproj.FileListAbsolute.txt +++ b/TimeHACK.Main/obj/Release/TimeHACK.Main.csproj.FileListAbsolute.txt @@ -35,3 +35,4 @@ C:\Users\Liam\Documents\GitHub\TimeHACK-lempfork\TimeHACK.Main\obj\Release\TimeH C:\Users\Liam\Documents\GitHub\TimeHACK-lempfork\TimeHACK.Main\obj\Release\TimeHACK.exe C:\Users\Liam\Documents\GitHub\TimeHACK-lempfork\TimeHACK.Main\obj\Release\TimeHACK.pdb D:\Documents\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.WinClassicForms.TestApp.resources +D:\Documents\GitHub\TimeHACK\TimeHACK.Main\obj\Release\TimeHACK.WinClassic.Win95IE4.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 ea80eb6..a13035e 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 afd9c88..f6ed0d6 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.WinClassic.Win95IE4.resources b/TimeHACK.Main/obj/Release/TimeHACK.WinClassic.Win95IE4.resources Binary files differnew file mode 100644 index 0000000..9b1b2c8 --- /dev/null +++ b/TimeHACK.Main/obj/Release/TimeHACK.WinClassic.Win95IE4.resources diff --git a/TimeHACK.Main/obj/Release/TimeHACK.application b/TimeHACK.Main/obj/Release/TimeHACK.application index af9f856..5678b12 100644 --- a/TimeHACK.Main/obj/Release/TimeHACK.application +++ b/TimeHACK.Main/obj/Release/TimeHACK.application @@ -14,7 +14,7 @@ <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> </dsig:Transforms> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> - <dsig:DigestValue>a/Rg0oqaFV3brH5B97iOCDXc0yawkl9S/2cVtgXXS8M=</dsig:DigestValue> + <dsig:DigestValue>owcvndBWt3qGkDndsMykYlr5kB7zH3NDbzGfSUEMI4Q=</dsig:DigestValue> </hash> </dependentAssembly> </dependency> diff --git a/TimeHACK.Main/obj/Release/TimeHACK.exe b/TimeHACK.Main/obj/Release/TimeHACK.exe Binary files differindex 899a43f..f7ee039 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 2b1efb6..acf6100 100644 --- a/TimeHACK.Main/obj/Release/TimeHACK.exe.manifest +++ b/TimeHACK.Main/obj/Release/TimeHACK.exe.manifest @@ -44,14 +44,14 @@ </dependentAssembly> </dependency> <dependency> - <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.exe" size="4272128"> + <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.exe" size="4316160"> <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>a195m/FVq7D1VXSsD5UlJt8G92gqRxAIBSlvD7iViak=</dsig:DigestValue> + <dsig:DigestValue>0HpVKz1ySHX1nAbymXka7wsJyOP+TKug9rRVwFJTHFg=</dsig:DigestValue> </hash> </dependentAssembly> </dependency> @@ -63,7 +63,7 @@ <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> </dsig:Transforms> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> - <dsig:DigestValue>YDC6fdQvXveTmH0thYXVu9Uk9dtVVg3+QjDTaaqtScc=</dsig:DigestValue> + <dsig:DigestValue>kfO2njAcVXARAwAtSM9wiIcjfnG1rI+K7OP2VxVBwGw=</dsig:DigestValue> </hash> </dependentAssembly> </dependency> diff --git a/TimeHACK.Main/obj/Release/TimeHACK.pdb b/TimeHACK.Main/obj/Release/TimeHACK.pdb Binary files differindex 3ea1e2f..d5c442b 100644 --- a/TimeHACK.Main/obj/Release/TimeHACK.pdb +++ b/TimeHACK.Main/obj/Release/TimeHACK.pdb |
