diff options
| author | jtsshieh <[email protected]> | 2017-08-02 22:08:21 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-08-02 22:08:21 -0400 |
| commit | 2029bbc59969fd4554022bc23dd6a88a2adc6d19 (patch) | |
| tree | b5a5281108d8f0983fdf3b3446a4911059fd3497 /TimeHACK.Main | |
| parent | d2286b7d68db20fae6bdb58078853379faf5ac08 (diff) | |
| parent | a3b48880bf4136cb8033305fde052727e24ab8b1 (diff) | |
| download | histacom2-2029bbc59969fd4554022bc23dd6a88a2adc6d19.tar.gz histacom2-2029bbc59969fd4554022bc23dd6a88a2adc6d19.tar.bz2 histacom2-2029bbc59969fd4554022bc23dd6a88a2adc6d19.zip | |
Merge branch 'master' into master
Diffstat (limited to 'TimeHACK.Main')
18 files changed, 486 insertions, 4504 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95.Designer.cs b/TimeHACK.Main/OS/Win95/Win95.Designer.cs index 5bd1f57..1846c29 100644 --- a/TimeHACK.Main/OS/Win95/Win95.Designer.cs +++ b/TimeHACK.Main/OS/Win95/Win95.Designer.cs @@ -86,7 +86,6 @@ namespace TimeHACK.OS.Win95 this.downloaderTestToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.installerTestToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.storyTest1ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); - this.iE4TestToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.SettingsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.ControlPanelToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.PrintersToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); @@ -739,8 +738,7 @@ namespace TimeHACK.OS.Win95 this.DocumentsToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.downloaderTestToolStripMenuItem, this.installerTestToolStripMenuItem, - this.storyTest1ToolStripMenuItem, - this.iE4TestToolStripMenuItem}); + this.storyTest1ToolStripMenuItem}); this.DocumentsToolStripMenuItem.Image = global::TimeHACK.Properties.Resources.WinClassicDocuments; this.DocumentsToolStripMenuItem.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; this.DocumentsToolStripMenuItem.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None; @@ -775,15 +773,6 @@ namespace TimeHACK.OS.Win95 this.storyTest1ToolStripMenuItem.Text = "StoryTest1"; this.storyTest1ToolStripMenuItem.Click += new System.EventHandler(this.storyTest1ToolStripMenuItem_Click); // - // iE4TestToolStripMenuItem - // - this.iE4TestToolStripMenuItem.BackColor = System.Drawing.SystemColors.Control; - this.iE4TestToolStripMenuItem.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; - this.iE4TestToolStripMenuItem.Name = "iE4TestToolStripMenuItem"; - this.iE4TestToolStripMenuItem.Size = new System.Drawing.Size(159, 22); - this.iE4TestToolStripMenuItem.Text = "IE4Test"; - this.iE4TestToolStripMenuItem.Click += new System.EventHandler(this.iE4TestToolStripMenuItem_Click); - // // SettingsToolStripMenuItem // this.SettingsToolStripMenuItem.BackColor = System.Drawing.Color.Silver; @@ -1159,7 +1148,6 @@ namespace TimeHACK.OS.Win95 private System.Windows.Forms.Panel taskbarItems; private System.Windows.Forms.ToolStripMenuItem storyTest1ToolStripMenuItem; internal System.Windows.Forms.ToolStripMenuItem FTPClientToolStripMenuItem; - private System.Windows.Forms.ToolStripMenuItem iE4TestToolStripMenuItem; private System.Windows.Forms.Timer desktopupdate; private System.Windows.Forms.ToolStripMenuItem deleteToolStripMenuItem; internal System.Windows.Forms.ToolStripMenuItem toolStripMenuItem1; diff --git a/TimeHACK.Main/OS/Win95/Win95.cs b/TimeHACK.Main/OS/Win95/Win95.cs index ab92313..073d41c 100644 --- a/TimeHACK.Main/OS/Win95/Win95.cs +++ b/TimeHACK.Main/OS/Win95/Win95.cs @@ -480,13 +480,6 @@ namespace TimeHACK.OS.Win95 startmenu.Hide(); } - private void iE4TestToolStripMenuItem_Click(object sender, EventArgs e) - { - WinClassic app = wm.StartWin95(new TempIE4(), "IE4", null, true, true); - app.BringToFront(); - startmenu.Hide(); - } - private void CalculatorToolStripMenuItem_Click(object sender, EventArgs e) { WinClassic app = wm.StartWin95(new WinClassicCalculator(), "Calculator", Properties.Resources.WinClassicCalc, false, false, resize: false); diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/IE4Sites/GoogleHome.cs b/TimeHACK.Main/OS/Win95/Win95Apps/IE4Sites/GoogleHome.cs index d71c171..c8eb531 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/IE4Sites/GoogleHome.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/IE4Sites/GoogleHome.cs @@ -19,7 +19,7 @@ namespace TimeHACK.OS.Win95.Win95Apps.IE4Sites private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { - TempIE4.GoToPage("www.google.stanford.edu"); + WinClassicIE4.GoToPage("www.google.stanford.edu"); } } } diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/IE4Sites/IE4Start.cs b/TimeHACK.Main/OS/Win95/Win95Apps/IE4Sites/IE4Start.cs index ee21b0f..2d48c99 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/IE4Sites/IE4Start.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/IE4Sites/IE4Start.cs @@ -19,7 +19,7 @@ namespace TimeHACK.OS.Win95.Win95Apps.IE4Sites private void linkLabel1_Click(object sender, EventArgs e) { - TempIE4.GoToPage("www.google.com"); + WinClassicIE4.GoToPage("www.google.com"); } } } diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/TempIE4.Designer.cs b/TimeHACK.Main/OS/Win95/Win95Apps/TempIE4.Designer.cs deleted file mode 100644 index 521d623..0000000 --- a/TimeHACK.Main/OS/Win95/Win95Apps/TempIE4.Designer.cs +++ /dev/null @@ -1,1463 +0,0 @@ -namespace TimeHACK.OS.Win95.Win95Apps -{ - partial class TempIE4 - { - /// <summary> - /// Required designer variable. - /// </summary> - private System.ComponentModel.IContainer components = null; - - /// <summary> - /// Clean up any resources being used. - /// </summary> - /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Component Designer generated code - - /// <summary> - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// </summary> - private void InitializeComponent() - { - this.Panel14 = new System.Windows.Forms.Panel(); - this.pictureBox3 = new System.Windows.Forms.PictureBox(); - this.GoButton = new System.Windows.Forms.Button(); - this._addressbar = new System.Windows.Forms.ComboBox(); - this.Label1 = new System.Windows.Forms.Label(); - this.Button30 = new System.Windows.Forms.Button(); - this.Button29 = 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.HomeButton = new System.Windows.Forms.Button(); - this.Button4 = new System.Windows.Forms.Button(); - this.Button3 = new System.Windows.Forms.Button(); - this.ForwardButton = new System.Windows.Forms.Button(); - this.BackButton = new System.Windows.Forms.Button(); - this.Panel1 = new System.Windows.Forms.Panel(); - this.pictureBox8 = new System.Windows.Forms.PictureBox(); - this.pictureBox6 = new System.Windows.Forms.PictureBox(); - this.pictureBox5 = new System.Windows.Forms.PictureBox(); - this.pictureBox2 = new System.Windows.Forms.PictureBox(); - this.pictureBox1 = new System.Windows.Forms.PictureBox(); - 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 = new System.Windows.Forms.Panel(); - this.pictureBox4 = new System.Windows.Forms.PictureBox(); - this.pictureBox7 = new System.Windows.Forms.PictureBox(); - this.pictureBox9 = new System.Windows.Forms.PictureBox(); - this.label2 = new System.Windows.Forms.Label(); - this.pictureBox10 = new System.Windows.Forms.PictureBox(); - this.Panel14.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit(); - this.Panel1.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox8)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); - this.MenuStrip3.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).BeginInit(); - this.SuspendLayout(); - // - // Panel14 - // - this.Panel14.BackColor = System.Drawing.Color.Silver; - this.Panel14.Controls.Add(this.pictureBox10); - this.Panel14.Controls.Add(this.label2); - this.Panel14.Controls.Add(this.pictureBox9); - this.Panel14.Controls.Add(this.pictureBox3); - this.Panel14.Controls.Add(this.GoButton); - 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, 71); - this.Panel14.Name = "Panel14"; - this.Panel14.Size = new System.Drawing.Size(959, 31); - this.Panel14.TabIndex = 16; - // - // pictureBox3 - // - this.pictureBox3.BackgroundImage = global::TimeHACK.Properties.Resources.ie4_vsplitter2; - this.pictureBox3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; - this.pictureBox3.Location = new System.Drawing.Point(2, 3); - this.pictureBox3.Name = "pictureBox3"; - this.pictureBox3.Size = new System.Drawing.Size(3, 21); - this.pictureBox3.TabIndex = 2; - this.pictureBox3.TabStop = false; - // - // GoButton - // - this.GoButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.GoButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.GoButton.Image = global::TimeHACK.Properties.Resources.ie4_go; - this.GoButton.ImageAlign = System.Drawing.ContentAlignment.TopCenter; - this.GoButton.Location = new System.Drawing.Point(872, 2); - this.GoButton.Name = "GoButton"; - this.GoButton.Size = new System.Drawing.Size(44, 23); - this.GoButton.TabIndex = 0; - this.GoButton.Text = "Go"; - this.GoButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; - this.GoButton.UseVisualStyleBackColor = true; - this.GoButton.Click += new System.EventHandler(this.GoButton_Click); - // - // _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, 2); - 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"; - this._addressbar.KeyDown += new System.Windows.Forms.KeyEventHandler(this._addressbar_KeyDown); - // - // Label1 - // - this.Label1.AutoSize = true; - this.Label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); - this.Label1.Location = new System.Drawing.Point(12, 7); - this.Label1.Name = "Label1"; - this.Label1.Size = new System.Drawing.Size(45, 13); - this.Label1.TabIndex = 0; - this.Label1.Text = "Address"; - // - // Button30 - // - this.Button30.Dock = System.Windows.Forms.DockStyle.Left; - this.Button30.FlatAppearance.BorderSize = 0; - this.Button30.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.Button30.Image = global::TimeHACK.Properties.Resources.ie4_print; - this.Button30.ImageAlign = System.Drawing.ContentAlignment.BottomCenter; - this.Button30.Location = new System.Drawing.Point(591, 0); - this.Button30.Name = "Button30"; - this.Button30.Size = new System.Drawing.Size(49, 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.Image = global::TimeHACK.Properties.Resources.ie4_mail; - this.Button29.ImageAlign = System.Drawing.ContentAlignment.BottomCenter; - this.Button29.Location = new System.Drawing.Point(528, 0); - this.Button29.Name = "Button29"; - this.Button29.Size = new System.Drawing.Size(63, 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; - // - // Button27 - // - this.Button27.Dock = System.Windows.Forms.DockStyle.Left; - this.Button27.FlatAppearance.BorderSize = 0; - this.Button27.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.Button27.Image = global::TimeHACK.Properties.Resources.ie4_history; - this.Button27.ImageAlign = System.Drawing.ContentAlignment.BottomCenter; - this.Button27.Location = new System.Drawing.Point(465, 0); - this.Button27.Name = "Button27"; - this.Button27.Size = new System.Drawing.Size(63, 47); - this.Button27.TabIndex = 7; - this.Button27.Text = "History"; - 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.Image = global::TimeHACK.Properties.Resources.ie4_favorites; - this.Button7.ImageAlign = System.Drawing.ContentAlignment.BottomCenter; - this.Button7.Location = new System.Drawing.Point(402, 0); - this.Button7.Name = "Button7"; - this.Button7.Size = new System.Drawing.Size(63, 47); - this.Button7.TabIndex = 6; - this.Button7.Text = "Favorites"; - this.Button7.TextAlign = System.Drawing.ContentAlignment.BottomCenter; - 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.Image = global::TimeHACK.Properties.Resources.ie4_search; - this.Button6.ImageAlign = System.Drawing.ContentAlignment.BottomCenter; - this.Button6.Location = new System.Drawing.Point(339, 0); - this.Button6.Name = "Button6"; - this.Button6.Size = new System.Drawing.Size(63, 47); - this.Button6.TabIndex = 5; - this.Button6.Text = "Search"; - this.Button6.TextAlign = System.Drawing.ContentAlignment.BottomCenter; - this.Button6.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; - this.Button6.UseVisualStyleBackColor = true; - // - // HomeButton - // - this.HomeButton.Dock = System.Windows.Forms.DockStyle.Left; - this.HomeButton.FlatAppearance.BorderSize = 0; - this.HomeButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.HomeButton.Image = global::TimeHACK.Properties.Resources.ie4_home; - this.HomeButton.ImageAlign = System.Drawing.ContentAlignment.BottomCenter; - this.HomeButton.Location = new System.Drawing.Point(276, 0); - this.HomeButton.Name = "HomeButton"; - this.HomeButton.Size = new System.Drawing.Size(63, 47); - this.HomeButton.TabIndex = 4; - this.HomeButton.Text = "Home"; - this.HomeButton.TextAlign = System.Drawing.ContentAlignment.BottomCenter; - this.HomeButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; - this.HomeButton.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.Image = global::TimeHACK.Properties.Resources.ie4_refresh; - this.Button4.ImageAlign = System.Drawing.ContentAlignment.BottomCenter; - this.Button4.Location = new System.Drawing.Point(213, 0); - this.Button4.Name = "Button4"; - this.Button4.Size = new System.Drawing.Size(63, 47); - this.Button4.TabIndex = 3; - this.Button4.Text = "Refresh"; - this.Button4.TextAlign = System.Drawing.ContentAlignment.BottomCenter; - 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.Image = global::TimeHACK.Properties.Resources.ie4_stop; - this.Button3.ImageAlign = System.Drawing.ContentAlignment.BottomCenter; - this.Button3.Location = new System.Drawing.Point(150, 0); - this.Button3.Name = "Button3"; - this.Button3.Size = new System.Drawing.Size(63, 47); - this.Button3.TabIndex = 2; - this.Button3.Text = "Stop"; - this.Button3.TextAlign = System.Drawing.ContentAlignment.BottomCenter; - this.Button3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; - this.Button3.UseVisualStyleBackColor = true; - // - // ForwardButton - // - this.ForwardButton.Dock = System.Windows.Forms.DockStyle.Left; - this.ForwardButton.FlatAppearance.BorderSize = 0; - this.ForwardButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.ForwardButton.Image = global::TimeHACK.Properties.Resources.ie4_forward; - this.ForwardButton.ImageAlign = System.Drawing.ContentAlignment.BottomCenter; - this.ForwardButton.Location = new System.Drawing.Point(75, 0); - this.ForwardButton.Name = "ForwardButton"; - this.ForwardButton.Size = new System.Drawing.Size(75, 47); - this.ForwardButton.TabIndex = 1; - this.ForwardButton.Text = "Forward"; - this.ForwardButton.TextAlign = System.Drawing.ContentAlignment.BottomCenter; - this.ForwardButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; - this.ForwardButton.UseVisualStyleBackColor = true; - // - // BackButton - // - this.BackButton.Dock = System.Windows.Forms.DockStyle.Left; - this.BackButton.FlatAppearance.BorderSize = 0; - this.BackButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.BackButton.Image = global::TimeHACK.Properties.Resources.ie4_back; - this.BackButton.ImageAlign = System.Drawing.ContentAlignment.BottomCenter; - this.BackButton.Location = new System.Drawing.Point(0, 0); - this.BackButton.Name = "BackButton"; - this.BackButton.Size = new System.Drawing.Size(75, 47); - this.BackButton.TabIndex = 1; - this.BackButton.Text = "Back"; - this.BackButton.TextAlign = System.Drawing.ContentAlignment.BottomCenter; - this.BackButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; - this.BackButton.UseVisualStyleBackColor = true; - // - // Panel1 - // - this.Panel1.BackColor = System.Drawing.Color.Silver; - this.Panel1.Controls.Add(this.pictureBox8); - this.Panel1.Controls.Add(this.pictureBox6); - this.Panel1.Controls.Add(this.pictureBox5); - this.Panel1.Controls.Add(this.pictureBox2); - this.Panel1.Controls.Add(this.pictureBox1); - this.Panel1.Controls.Add(this.Button30); - this.Panel1.Controls.Add(this.Button29); - this.Panel1.Controls.Add(this.Button27); - this.Panel1.Controls.Add(this.Button7); - this.Panel1.Controls.Add(this.Button6); - this.Panel1.Controls.Add(this.HomeButton); - this.Panel1.Controls.Add(this.Button4); - this.Panel1.Controls.Add(this.Button3); - this.Panel1.Controls.Add(this.ForwardButton); - this.Panel1.Controls.Add(this.BackButton); - 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, 47); - this.Panel1.TabIndex = 14; - // - // pictureBox8 - // - this.pictureBox8.BackgroundImage = global::TimeHACK.Properties.Resources.ie4_hsplitter; - this.pictureBox8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; - this.pictureBox8.Location = new System.Drawing.Point(0, 46); - this.pictureBox8.Name = "pictureBox8"; - this.pictureBox8.Size = new System.Drawing.Size(959, 2); - this.pictureBox8.TabIndex = 15; - this.pictureBox8.TabStop = false; - // - // pictureBox6 - // - this.pictureBox6.BackgroundImage = global::TimeHACK.Properties.Resources.ie4_hsplitter; - this.pictureBox6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; - this.pictureBox6.Location = new System.Drawing.Point(0, 0); - this.pictureBox6.Name = "pictureBox6"; - this.pictureBox6.Size = new System.Drawing.Size(959, 2); - this.pictureBox6.TabIndex = 14; - this.pictureBox6.TabStop = false; - // - // pictureBox5 - // - this.pictureBox5.BackgroundImage = global::TimeHACK.Properties.Resources.ie4_vsplitter3; - this.pictureBox5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; - this.pictureBox5.Location = new System.Drawing.Point(2, 5); - this.pictureBox5.Name = "pictureBox5"; - this.pictureBox5.Size = new System.Drawing.Size(3, 38); - this.pictureBox5.TabIndex = 13; - this.pictureBox5.TabStop = false; - // - // pictureBox2 - // - this.pictureBox2.BackgroundImage = global::TimeHACK.Properties.Resources.ie4_vsplitter; - this.pictureBox2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; - this.pictureBox2.Location = new System.Drawing.Point(337, -1); - this.pictureBox2.Name = "pictureBox2"; - this.pictureBox2.Size = new System.Drawing.Size(2, 47); - this.pictureBox2.TabIndex = 12; - this.pictureBox2.TabStop = false; - // - // pictureBox1 - // - this.pictureBox1.BackgroundImage = global::TimeHACK.Properties.Resources.ie4_vsplitter; - this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; - this.pictureBox1.Location = new System.Drawing.Point(526, -1); - this.pictureBox1.Name = "pictureBox1"; - this.pictureBox1.Size = new System.Drawing.Size(2, 47); - this.pictureBox1.TabIndex = 11; - this.pictureBox1.TabStop = false; - // - // 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 = 15; - 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"; - // - // _browsingArea - // - this._browsingArea.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this._browsingArea.Dock = System.Windows.Forms.DockStyle.Fill; - this._browsingArea.Location = new System.Drawing.Point(0, 102); - this._browsingArea.Name = "_browsingArea"; - this._browsingArea.Size = new System.Drawing.Size(959, 492); - this._browsingArea.TabIndex = 17; - // - // pictureBox4 - // - this.pictureBox4.BackgroundImage = global::TimeHACK.Properties.Resources.ie4_vsplitter2; - this.pictureBox4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; - this.pictureBox4.Location = new System.Drawing.Point(2, 4); - this.pictureBox4.Name = "pictureBox4"; - this.pictureBox4.Size = new System.Drawing.Size(3, 19); - this.pictureBox4.TabIndex = 18; - this.pictureBox4.TabStop = false; - // - // pictureBox7 - // - this.pictureBox7.BackgroundImage = global::TimeHACK.Properties.Resources.ie4_hsplitter; - this.pictureBox7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; - this.pictureBox7.Location = new System.Drawing.Point(0, 0); - this.pictureBox7.Name = "pictureBox7"; - this.pictureBox7.Size = new System.Drawing.Size(959, 2); - this.pictureBox7.TabIndex = 15; - this.pictureBox7.TabStop = false; - // - // pictureBox9 - // - this.pictureBox9.BackgroundImage = global::TimeHACK.Properties.Resources.ie4_hsplitter; - this.pictureBox9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; - this.pictureBox9.Location = new System.Drawing.Point(0, 26); - this.pictureBox9.Name = "pictureBox9"; - this.pictureBox9.Size = new System.Drawing.Size(959, 2); - this.pictureBox9.TabIndex = 16; - this.pictureBox9.TabStop = false; - // - // label2 - // - this.label2.AutoSize = true; - this.label2.Location = new System.Drawing.Point(924, 7); - this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(32, 13); - this.label2.TabIndex = 17; - this.label2.Text = "Links"; - // - // pictureBox10 - // - this.pictureBox10.BackgroundImage = global::TimeHACK.Properties.Resources.ie4_vsplitter2; - this.pictureBox10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; - this.pictureBox10.Location = new System.Drawing.Point(921, 4); - this.pictureBox10.Name = "pictureBox10"; - this.pictureBox10.Size = new System.Drawing.Size(3, 20); - this.pictureBox10.TabIndex = 19; - this.pictureBox10.TabStop = false; - // - // TempIE4 - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.Controls.Add(this.pictureBox7); - this.Controls.Add(this.pictureBox4); - this.Controls.Add(this._browsingArea); - this.Controls.Add(this.Panel14); - this.Controls.Add(this.Panel1); - this.Controls.Add(this.MenuStrip3); - this.Name = "TempIE4"; - this.Size = new System.Drawing.Size(959, 594); - this.Load += new System.EventHandler(this.TempIE4_Load); - this.Panel14.ResumeLayout(false); - this.Panel14.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit(); - this.Panel1.ResumeLayout(false); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox8)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); - this.MenuStrip3.ResumeLayout(false); - this.MenuStrip3.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).EndInit(); - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - internal System.Windows.Forms.Panel Panel14; - internal System.Windows.Forms.Button GoButton; - internal System.Windows.Forms.ComboBox _addressbar; - internal System.Windows.Forms.Label Label1; - internal System.Windows.Forms.Button Button30; - internal System.Windows.Forms.Button Button29; - internal System.Windows.Forms.Button Button27; - internal System.Windows.Forms.Button Button7; - internal System.Windows.Forms.Button Button6; - internal System.Windows.Forms.Button HomeButton; - internal System.Windows.Forms.Button Button4; - internal System.Windows.Forms.Button Button3; - internal System.Windows.Forms.Button ForwardButton; - internal System.Windows.Forms.Button BackButton; - internal System.Windows.Forms.Panel Panel1; - 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; - private System.Windows.Forms.Panel _browsingArea; - private System.Windows.Forms.PictureBox pictureBox1; - private System.Windows.Forms.PictureBox pictureBox2; - private System.Windows.Forms.PictureBox pictureBox3; - private System.Windows.Forms.PictureBox pictureBox4; - private System.Windows.Forms.PictureBox pictureBox5; - private System.Windows.Forms.PictureBox pictureBox6; - private System.Windows.Forms.PictureBox pictureBox7; - private System.Windows.Forms.PictureBox pictureBox8; - private System.Windows.Forms.PictureBox pictureBox9; - private System.Windows.Forms.PictureBox pictureBox10; - private System.Windows.Forms.Label label2; - } -} diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/TempIE4.cs b/TimeHACK.Main/OS/Win95/Win95Apps/TempIE4.cs deleted file mode 100644 index d41add1..0000000 --- a/TimeHACK.Main/OS/Win95/Win95Apps/TempIE4.cs +++ /dev/null @@ -1,76 +0,0 @@ -using System; -using System.Collections.Generic; -using System.ComponentModel; -using System.Drawing; -using System.Data; -using System.Linq; -using System.Text; -using System.Threading.Tasks; -using System.Windows.Forms; -using TimeHACK.OS.Win95.Win95Apps.IE4Sites; - -namespace TimeHACK.OS.Win95.Win95Apps -{ - public partial class TempIE4 : UserControl - { - public static Panel browsingArea = new Panel(); - public static ComboBox addressbar = new ComboBox(); - - public TempIE4() - { - InitializeComponent(); - browsingArea = _browsingArea; - addressbar = _addressbar; - } - - public static async void GoToPage(string url) - { - UserControl uc = new UserControl(); - - switch (url) - { - case "www.microsoft.com/windows/ie/default.htm": - uc = new IE4Start(); - break; - case "www.google.com": - uc = new GoogleHome(); - break; - case "www.google.stanford.edu": - uc = new GooglePrototype(); - break; - default: - uc = new IE4NoPage(); - break; - } - - addressbar.Text = url; - uc.Dock = DockStyle.Fill; - - await Task.Delay(new Random().Next(500, 1500)); - - browsingArea.Controls.Clear(); - browsingArea.Controls.Add(uc); - } - - private void TempIE4_Load(object sender, EventArgs e) - { - GoToPage("www.microsoft.com/windows/ie/default.htm"); - GoButton.Paint += (s, args) => Engine.Paintbrush.PaintClassicBorders(s, args, 2); - } - - private void GoButton_Click(object sender, EventArgs e) - { - GoToPage(addressbar.Text); - } - - private void _addressbar_KeyDown(object sender, KeyEventArgs e) - { - if (e.KeyCode == Keys.Enter) - { - GoButton_Click(this, new EventArgs()); - e.SuppressKeyPress = true; - browsingArea.Focus(); - } - } - } -} diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/TempIE4.resx b/TimeHACK.Main/OS/Win95/Win95Apps/TempIE4.resx deleted file mode 100644 index 5039d37..0000000 --- a/TimeHACK.Main/OS/Win95/Win95Apps/TempIE4.resx +++ /dev/null @@ -1,123 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<root> - <!-- - Microsoft ResX Schema - - Version 2.0 - - The primary goals of this format is to allow a simple XML format - that is mostly human readable. The generation and parsing of the - various data types are done through the TypeConverter classes - associated with the data types. - - Example: - - ... ado.net/XML headers & schema ... - <resheader name="resmimetype">text/microsoft-resx</resheader> - <resheader name="version">2.0</resheader> - <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> - <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> - <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> - <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> - <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> - <value>[base64 mime encoded serialized .NET Framework object]</value> - </data> - <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> - <comment>This is a comment</comment> - </data> - - There are any number of "resheader" rows that contain simple - name/value pairs. - - Each data row contains a name, and value. The row also contains a - type or mimetype. Type corresponds to a .NET class that support - text/value conversion through the TypeConverter architecture. - Classes that don't support this are serialized and stored with the - mimetype set. - - The mimetype is used for serialized objects, and tells the - ResXResourceReader how to depersist the object. This is currently not - extensible. For a given mimetype the value must be set accordingly: - - Note - application/x-microsoft.net.object.binary.base64 is the format - that the ResXResourceWriter will generate, however the reader can - read any of the formats listed below. - - mimetype: application/x-microsoft.net.object.binary.base64 - value : The object must be serialized with - : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter - : and then encoded with base64 encoding. - - mimetype: application/x-microsoft.net.object.soap.base64 - value : The object must be serialized with - : System.Runtime.Serialization.Formatters.Soap.SoapFormatter - : and then encoded with base64 encoding. - - mimetype: application/x-microsoft.net.object.bytearray.base64 - value : The object must be serialized into a byte array - : using a System.ComponentModel.TypeConverter - : and then encoded with base64 encoding. - --> - <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> - <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> - <xsd:element name="root" msdata:IsDataSet="true"> - <xsd:complexType> - <xsd:choice maxOccurs="unbounded"> - <xsd:element name="metadata"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" /> - </xsd:sequence> - <xsd:attribute name="name" use="required" type="xsd:string" /> - <xsd:attribute name="type" type="xsd:string" /> - <xsd:attribute name="mimetype" type="xsd:string" /> - <xsd:attribute ref="xml:space" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="assembly"> - <xsd:complexType> - <xsd:attribute name="alias" type="xsd:string" /> - <xsd:attribute name="name" type="xsd:string" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="data"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> - <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> - <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> - <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> - <xsd:attribute ref="xml:space" /> - </xsd:complexType> - </xsd:element> - <xsd:element name="resheader"> - <xsd:complexType> - <xsd:sequence> - <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> - </xsd:sequence> - <xsd:attribute name="name" type="xsd:string" use="required" /> - </xsd:complexType> - </xsd:element> - </xsd:choice> - </xsd:complexType> - </xsd:element> - </xsd:schema> - <resheader name="resmimetype"> - <value>text/microsoft-resx</value> - </resheader> - <resheader name="version"> - <value>2.0</value> - </resheader> - <resheader name="reader"> - <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </resheader> - <resheader name="writer"> - <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> - </resheader> - <metadata name="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/OS/Win95/Win95Apps/Win95WindowsExplorer.cs b/TimeHACK.Main/OS/Win95/Win95Apps/Win95WindowsExplorer.cs index 5fc923d..3debce7 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/Win95WindowsExplorer.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/Win95WindowsExplorer.cs @@ -12,6 +12,7 @@ using System.IO; using TimeHACK.Engine; using Newtonsoft.Json; using TimeHACK.Engine.Template; +using System.Diagnostics; namespace TimeHACK.OS.Win95.Win95Apps { @@ -52,20 +53,23 @@ namespace TimeHACK.OS.Win95.Win95Apps mainView.LargeImageList = new ImageList(); mainView.LargeImageList.ImageSize = new Size(32, 32); - mainView.LargeImageList.Images.Add(Properties.Resources.Win95Computer); - mainView.LargeImageList.Images.Add(Properties.Resources.WinClassicFolder); - mainView.LargeImageList.Images.Add(Properties.Resources.WinClassicIE4); - mainView.LargeImageList.Images.Add(Properties.Resources.WinClassicInbox); - mainView.LargeImageList.Images.Add(Properties.Resources.WinClassicMSN); - mainView.LargeImageList.Images.Add(Properties.Resources.WinClassicNetworking); - mainView.LargeImageList.Images.Add(Properties.Resources.WinClassicOutlook); - mainView.LargeImageList.Images.Add(Properties.Resources.WinClassicRecycle); - mainView.LargeImageList.Images.Add(Properties.Resources.Win95File); - mainView.LargeImageList.Images.Add(Properties.Resources.WinClassicFolder); - mainView.LargeImageList.Images.Add(Properties.Resources.WinClassicApp); - mainView.LargeImageList.Images.Add(Properties.Resources.WinClassicSetup); - mainView.LargeImageList.Images.Add(Properties.Resources.WinClassicNotepad); - mainView.LargeImageList.Images.Add(Properties.Resources.WinClassicCalcBig); + mainView.LargeImageList.Images.AddRange(new Bitmap[] { Properties.Resources.Win95Computer, // 0 + Properties.Resources.WinClassicFolder, + Properties.Resources.WinClassicIE4, + Properties.Resources.WinClassicInbox, + Properties.Resources.WinClassicMSN, + Properties.Resources.WinClassicNetworking, // 5 + Properties.Resources.WinClassicOutlook, + Properties.Resources.WinClassicRecycle, + Properties.Resources.Win95File, + Properties.Resources.WinClassicFolder, + Properties.Resources.WinClassicApp, // 10 + Properties.Resources.WinClassicSetup, + Properties.Resources.WinClassicNotepad, + Properties.Resources.WinClassicCalcBig, + Properties.Resources.WinClassicNotepadBig, + Properties.Resources.WinClassicRegedit, // 15 + Properties.Resources.WinClassicWordpad }); program.BringToFront(); @@ -157,37 +161,13 @@ namespace TimeHACK.OS.Win95.Win95Apps } else return; } - - switch (new FileInfo(str).Extension) + FileSystemFolderInfo fsfi = JsonConvert.DeserializeObject<FileSystemFolderInfo>(File.ReadAllText(Path.Combine(CurrentDirectory, "_data.info"))); + foreach(var item in fsfi.Files) { - case ".exe": - string contents; - - contents = File.ReadAllText(str); - - switch (contents.ToLower()) - { - case "calc": - itm.ImageIndex = 13; - break; - case "explorer": - itm.ImageIndex = 0; - break; - case "notepad": - itm.ImageIndex = 12; - break; - default: - itm.ImageIndex = 10; - break; - } - break; - case ".txt": - itm.ImageIndex = 12; - break; - default: - itm.ImageIndex = 8; - break; + Debug.Print(item.Name + " " + Path.GetFileName(str)); + if (item.Name == Path.GetFileName(str)) { itm.ImageIndex = item.FileIcon; return; } } + itm.ImageIndex = 8; } } catch (Exception ex) { //wm.StartInfobox95("Exploring - C:", "Error with the file explorer \n" + ex.Message, Properties.Resources.Win95Info); add illegal operation dialog here later @@ -271,6 +251,15 @@ namespace TimeHACK.OS.Win95.Win95Apps Program.nonimportantapps[Program.nonimportantapps.Count - 1].FormClosing += new FormClosingEventHandler(Program.NonImportantApp_Closing); break; + case "notepad": + WinClassic appNP = wm.StartWin95(new WinClassicNotepad(), "Notepad", Properties.Resources.Win95IconNotepad_2, true, true); + Program.AddTaskbarItem(appNP, appNP.Tag.ToString(), "Notepad", Properties.Resources.Win95IconNotepad_2); + + Program.nonimportantapps.Add(appNP); + Program.nonimportantapps[Program.nonimportantapps.Count - 1].BringToFront(); + Program.nonimportantapps[Program.nonimportantapps.Count - 1].FormClosing += new FormClosingEventHandler(Program.NonImportantApp_Closing); + + break; case "wordpad": WinClassic appWP = wm.StartWin95(new WinClassicWordPad(), "Wordpad", Properties.Resources.WinClassicWordpad, true, true); Program.AddTaskbarItem(appWP, appWP.Tag.ToString(), "Wordpad", Properties.Resources.WinClassicWordpad); @@ -315,8 +304,8 @@ namespace TimeHACK.OS.Win95.Win95Apps } string ReturnType(string extension) { - string returnVal = ""; - fileType = 1; + string returnVal = "File"; + fileType = 0; switch (extension) { case ".txt": fileType = 1; @@ -608,7 +597,7 @@ namespace TimeHACK.OS.Win95.Win95Apps { if (mainView.FocusedItem.Tag == null) { // If it isn't a file - GoToDir(Path.Combine(CurrentDirectory, mainView.FocusedItem.ImageKey.ToString())); + GoToDir(Path.Combine(CurrentDirectory, mainView.FocusedItem.Text)); } else { // If it is a file @@ -709,19 +698,10 @@ namespace TimeHACK.OS.Win95.Win95Apps else OpenFile = true; if (OpenFile == true) { - if (txtSave.Text == "") - { - wm.StartInfobox95("Windows Explorer", "Please enter a filename", InfoboxType.Info, InfoboxButtons.OK); - } + if (txtSave.Text == "") wm.StartInfobox95("Windows Explorer", "Please enter a filename", InfoboxType.Info, InfoboxButtons.OK); else { - if (new FileInfo(Path.Combine(CurrentDirectory, txtSave.Text)).Extension == onlyViewExtension) - { - - Program.WindowsExplorerReturnPath = Path.Combine(CurrentDirectory, txtSave.Text); - - } - + if (new FileInfo(Path.Combine(CurrentDirectory, txtSave.Text)).Extension == onlyViewExtension) Program.WindowsExplorerReturnPath = Path.Combine(CurrentDirectory, txtSave.Text); FileDialogBoxManager.IsInOpenDialog = false; FileDialogBoxManager.IsInSaveDialog = false; @@ -793,22 +773,13 @@ namespace TimeHACK.OS.Win95.Win95Apps { string setText; setText = e.Label; - if (setText == "") - { - wm.StartInfobox95("Windows Explorer", "Please enter a new directory name", InfoboxType.Info, InfoboxButtons.OK); - } + if (setText == "") wm.StartInfobox95("Windows Explorer", "Please enter a new directory name", InfoboxType.Info, InfoboxButtons.OK); else { - if (Directory.Exists(setText)) - { - wm.StartInfobox95("Windows Explorer", "That directory already exists.", InfoboxType.Info, InfoboxButtons.OK); - } + if (Directory.Exists(setText)) wm.StartInfobox95("Windows Explorer", "That directory already exists.", InfoboxType.Info, InfoboxButtons.OK); else { - if (File.Exists(setText)) - { - wm.StartInfobox95("Windows Explorer", "That file already exists.", InfoboxType.Info, InfoboxButtons.OK); - } + if (File.Exists(setText)) wm.StartInfobox95("Windows Explorer", "That file already exists.", InfoboxType.Info, InfoboxButtons.OK); else { if (Directory.Exists(mainView.FocusedItem.ImageKey)) @@ -1003,10 +974,7 @@ namespace TimeHACK.OS.Win95.Win95Apps private void SellectAllCtrlAToolStripMenuItem_Click(object sender, EventArgs e) { - foreach (ListViewItem item in mainView.Items) - { - item.Selected = true; - } + foreach (ListViewItem item in mainView.Items) item.Selected = true; } } } diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.Designer.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.Designer.cs index 3184160..9c81998 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.Designer.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.Designer.cs @@ -2,12 +2,12 @@ { partial class WinClassicIE4 { - /// <summary> + /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; - /// <summary> + /// <summary> /// Clean up any resources being used. /// </summary> /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> @@ -20,173 +20,21 @@ base.Dispose(disposing); } - #region Windows Form Designer generated code + #region Component Designer generated code - /// <summary> - /// Required method for Designer support - do not modify + /// <summary> + /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { - this.resources = new System.ComponentModel.ComponentResourceManager(typeof(WinClassicIE4)); - this.program = new System.Windows.Forms.Panel(); - this.browsingarea = new System.Windows.Forms.Panel(); - this.webBrowser1 = new System.Windows.Forms.WebBrowser(); - this.padamsmain = new System.Windows.Forms.Panel(); - this.Panel12 = new System.Windows.Forms.Panel(); - this.LinkLabel17 = new System.Windows.Forms.LinkLabel(); - 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.WCDownloadButton = 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.googlebetalink = new System.Windows.Forms.LinkLabel(); - this.googleprototypelink = new System.Windows.Forms.LinkLabel(); - this.Label6 = new System.Windows.Forms.Label(); this.Panel14 = new System.Windows.Forms.Panel(); + this.pictureBox3 = new System.Windows.Forms.PictureBox(); this.GoButton = new System.Windows.Forms.Button(); - this.addressbar = new System.Windows.Forms.ComboBox(); + 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(); @@ -195,7 +43,12 @@ this.Button3 = new System.Windows.Forms.Button(); this.ForwardButton = new System.Windows.Forms.Button(); this.BackButton = new System.Windows.Forms.Button(); - this.PictureBox1 = new System.Windows.Forms.PictureBox(); + this.Panel1 = new System.Windows.Forms.Panel(); + this.pictureBox8 = new System.Windows.Forms.PictureBox(); + this.pictureBox6 = new System.Windows.Forms.PictureBox(); + this.pictureBox5 = new System.Windows.Forms.PictureBox(); + this.pictureBox2 = new System.Windows.Forms.PictureBox(); + this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.MenuStrip3 = new System.Windows.Forms.MenuStrip(); this.ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem(); this.ToolStripMenuItem2 = new System.Windows.Forms.ToolStripMenuItem(); @@ -292,1742 +145,100 @@ this.ToolStripMenuItem93 = new System.Windows.Forms.ToolStripMenuItem(); this.ToolStripMenuItem94 = new System.Windows.Forms.ToolStripMenuItem(); this.ToolStripMenuItem95 = new System.Windows.Forms.ToolStripMenuItem(); - this.program.SuspendLayout(); - 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._browsingArea = new System.Windows.Forms.Panel(); + this.pictureBox4 = new System.Windows.Forms.PictureBox(); + this.pictureBox7 = new System.Windows.Forms.PictureBox(); + this.pictureBox9 = new System.Windows.Forms.PictureBox(); + this.label2 = new System.Windows.Forms.Label(); + this.pictureBox10 = new System.Windows.Forms.PictureBox(); this.Panel14.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit(); this.Panel1.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.PictureBox1)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox8)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); this.MenuStrip3.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).BeginInit(); this.SuspendLayout(); // - // program - // - this.program.BackColor = System.Drawing.Color.Silver; - this.program.Controls.Add(this.browsingarea); - this.program.Controls.Add(this.webBrowser1); - this.program.Controls.Add(this.Panel14); - this.program.Controls.Add(this.Panel1); - this.program.Controls.Add(this.PictureBox1); - this.program.Controls.Add(this.MenuStrip3); - this.program.Dock = System.Windows.Forms.DockStyle.Fill; - this.program.Location = new System.Drawing.Point(0, 0); - this.program.Name = "program"; - this.program.Size = new System.Drawing.Size(959, 594); - this.program.TabIndex = 13; - // - // browsingarea - // - this.browsingarea.BackColor = System.Drawing.Color.White; - 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.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 = 9; - this.browsingarea.Visible = false; - // - // webBrowser1 - // - this.webBrowser1.Dock = System.Windows.Forms.DockStyle.Fill; - this.webBrowser1.Location = new System.Drawing.Point(0, 111); - this.webBrowser1.Name = "webBrowser1"; - this.webBrowser1.Size = new System.Drawing.Size(959, 483); - this.webBrowser1.TabIndex = 11; - this.webBrowser1.DocumentCompleted += new System.Windows.Forms.WebBrowserDocumentCompletedEventHandler(webBrowser1_DocumentCompleted); - // - // padamsmain - // - this.padamsmain.AutoScroll = true; - 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(360, 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(5, 422); - this.Label20.Name = "Label20"; - this.Label20.Size = new System.Drawing.Size(174, 15); - this.Label20.TabIndex = 7; - this.Label20.Text = "Copyright 1998 12padams"; - this.Label20.Click += new System.EventHandler(this.Label20_Click); - // - // 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(121, 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(-114, 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.WCDownloadButton); - 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(-342, 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"; - // - // WCDownloadButton - // - this.WCDownloadButton.BackColor = System.Drawing.Color.Silver; - this.WCDownloadButton.Location = new System.Drawing.Point(120, 81); - this.WCDownloadButton.Name = "WCDownloadButton"; - this.WCDownloadButton.Size = new System.Drawing.Size(75, 22); - this.WCDownloadButton.TabIndex = 6; - this.WCDownloadButton.Text = "Download"; - this.WCDownloadButton.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(-38, 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(-57, 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(7358, 118); - 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(5941, 118); - 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(113, 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(79, 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(88, 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(142, 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(75, 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 = false; - this.Label58.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.Label58.Location = new System.Drawing.Point(0, 45); - this.Label58.Name = "Label58"; - this.Label58.Size = new System.Drawing.Size(browsingarea.Width, 16); - this.Label58.TabIndex = 7; - this.Label58.Text = "Where do you want to go today?"; - this.Label58.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - // - // LinkLabel16 - // - this.LinkLabel16.Anchor = System.Windows.Forms.AnchorStyles.Top; - this.LinkLabel16.AutoSize = false; - this.LinkLabel16.Location = new System.Drawing.Point(0, 317); - this.LinkLabel16.Name = "LinkLabel16"; - this.LinkLabel16.Size = new System.Drawing.Size(browsingarea.Width, 13); - this.LinkLabel16.TabIndex = 6; - this.LinkLabel16.TabStop = true; - this.LinkLabel16.Text = "www.12padams.com"; - this.LinkLabel16.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - // - // LinkLabel15 - // - this.LinkLabel15.Anchor = System.Windows.Forms.AnchorStyles.Top; - this.LinkLabel15.AutoSize = false; - this.LinkLabel15.Location = new System.Drawing.Point(0, 298); - this.LinkLabel15.Name = "LinkLabel15"; - this.LinkLabel15.Size = new System.Drawing.Size(browsingarea.Width, 13); - this.LinkLabel15.TabIndex = 5; - this.LinkLabel15.TabStop = true; - this.LinkLabel15.Text = "www.google.com"; - this.LinkLabel15.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - // - // Label3 - // - this.Label3.Anchor = System.Windows.Forms.AnchorStyles.Top; - this.Label3.AutoSize = false; - this.Label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.Label3.Location = new System.Drawing.Point(0, 258); - this.Label3.Name = "Label3"; - this.Label3.Size = new System.Drawing.Size(browsingarea.Width, 20); - this.Label3.TabIndex = 2; - this.Label3.Text = "Here are some sites you may wish to visit."; - this.Label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - // - // 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(0, 98); - this.TextBox1.Multiline = true; - this.TextBox1.Name = "TextBox1"; - this.TextBox1.ReadOnly = true; - this.TextBox1.Size = new System.Drawing.Size(browsingarea.Width, 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 = false; - this.Label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.Label2.Location = new System.Drawing.Point(0, 19); - this.Label2.Name = "Label2"; - this.Label2.Size = new System.Drawing.Size(browsingarea.Width, 24); - this.Label2.TabIndex = 0; - this.Label2.Text = "Welcome To Internet Explorer 4"; - this.Label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - // - // 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(11, 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(14, 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(184, 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(-153, 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(-153, 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; - this.Button12.Click += new System.EventHandler(this.Button12_Click); - // - // 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(-96, 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(-296, 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(1124, 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(1224, 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, 6276); - this.TextBox8.TabIndex = 3; - this.TextBox8.Text = resources.GetString("TextBox8.Text"); - // - // PictureBox11 - // - this.PictureBox11.Anchor = System.Windows.Forms.AnchorStyles.Top; - this.PictureBox11.Location = new System.Drawing.Point(1094, 60); - this.PictureBox11.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.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; - // - // 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"; - // // Panel14 // + this.Panel14.BackColor = System.Drawing.Color.Silver; + this.Panel14.Controls.Add(this.pictureBox10); + this.Panel14.Controls.Add(this.label2); + this.Panel14.Controls.Add(this.pictureBox9); + this.Panel14.Controls.Add(this.pictureBox3); this.Panel14.Controls.Add(this.GoButton); - this.Panel14.Controls.Add(this.addressbar); + 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.Location = new System.Drawing.Point(0, 71); this.Panel14.Name = "Panel14"; - this.Panel14.Size = new System.Drawing.Size(959, 38); - this.Panel14.TabIndex = 13; + this.Panel14.Size = new System.Drawing.Size(959, 31); + this.Panel14.TabIndex = 16; + // + // pictureBox3 + // + this.pictureBox3.BackgroundImage = global::TimeHACK.Properties.Resources.ie4_vsplitter2; + this.pictureBox3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox3.Location = new System.Drawing.Point(2, 3); + this.pictureBox3.Name = "pictureBox3"; + this.pictureBox3.Size = new System.Drawing.Size(3, 21); + this.pictureBox3.TabIndex = 2; + this.pictureBox3.TabStop = false; // // GoButton // this.GoButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.GoButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.GoButton.Location = new System.Drawing.Point(898, 5); + this.GoButton.Image = global::TimeHACK.Properties.Resources.ie4_go; + this.GoButton.ImageAlign = System.Drawing.ContentAlignment.TopCenter; + this.GoButton.Location = new System.Drawing.Point(872, 2); this.GoButton.Name = "GoButton"; - this.GoButton.Size = new System.Drawing.Size(55, 28); - this.GoButton.TabIndex = 2; + this.GoButton.Size = new System.Drawing.Size(44, 23); + this.GoButton.TabIndex = 0; this.GoButton.Text = "Go"; this.GoButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText; this.GoButton.UseVisualStyleBackColor = true; - this.GoButton.Click += new System.EventHandler(GoButton_Click); + this.GoButton.Click += new System.EventHandler(this.GoButton_Click); // // _addressbar // - this.addressbar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) + 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"; + this._addressbar.FormattingEnabled = true; + this._addressbar.Location = new System.Drawing.Point(58, 2); + 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"; + this._addressbar.KeyDown += new System.Windows.Forms.KeyEventHandler(this._addressbar_KeyDown); // // Label1 // this.Label1.AutoSize = true; - this.Label1.Location = new System.Drawing.Point(4, 13); + this.Label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); + this.Label1.Location = new System.Drawing.Point(12, 7); this.Label1.Name = "Label1"; - this.Label1.Size = new System.Drawing.Size(48, 13); + this.Label1.Size = new System.Drawing.Size(45, 13); this.Label1.TabIndex = 0; - this.Label1.Text = "Address:"; - // - // Panel1 - // - 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.HomeButton); - this.Panel1.Controls.Add(this.Button4); - this.Panel1.Controls.Add(this.Button3); - this.Panel1.Controls.Add(this.ForwardButton); - this.Panel1.Controls.Add(this.BackButton); - 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 = 7; + this.Label1.Text = "Address"; // // 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.Image = global::TimeHACK.Properties.Resources.ie4_print; + this.Button30.ImageAlign = System.Drawing.ContentAlignment.BottomCenter; + this.Button30.Location = new System.Drawing.Point(591, 0); this.Button30.Name = "Button30"; - this.Button30.Size = new System.Drawing.Size(75, 47); + this.Button30.Size = new System.Drawing.Size(49, 47); this.Button30.TabIndex = 10; this.Button30.Text = "Print"; this.Button30.TextAlign = System.Drawing.ContentAlignment.BottomCenter; @@ -2039,42 +250,29 @@ 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.Image = global::TimeHACK.Properties.Resources.ie4_mail; + this.Button29.ImageAlign = System.Drawing.ContentAlignment.BottomCenter; + this.Button29.Location = new System.Drawing.Point(528, 0); this.Button29.Name = "Button29"; - this.Button29.Size = new System.Drawing.Size(75, 47); + this.Button29.Size = new System.Drawing.Size(63, 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.Image = global::TimeHACK.Properties.Resources.ie4_history; + this.Button27.ImageAlign = System.Drawing.ContentAlignment.BottomCenter; + this.Button27.Location = new System.Drawing.Point(465, 0); this.Button27.Name = "Button27"; - this.Button27.Size = new System.Drawing.Size(75, 47); + this.Button27.Size = new System.Drawing.Size(63, 47); this.Button27.TabIndex = 7; - this.Button27.Text = "Channels"; + this.Button27.Text = "History"; this.Button27.TextAlign = System.Drawing.ContentAlignment.BottomCenter; this.Button27.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; this.Button27.UseVisualStyleBackColor = true; @@ -2084,11 +282,14 @@ 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.Image = global::TimeHACK.Properties.Resources.ie4_favorites; + this.Button7.ImageAlign = System.Drawing.ContentAlignment.BottomCenter; + this.Button7.Location = new System.Drawing.Point(402, 0); this.Button7.Name = "Button7"; - this.Button7.Size = new System.Drawing.Size(75, 47); + this.Button7.Size = new System.Drawing.Size(63, 47); this.Button7.TabIndex = 6; - this.Button7.Text = "History"; + this.Button7.Text = "Favorites"; + this.Button7.TextAlign = System.Drawing.ContentAlignment.BottomCenter; this.Button7.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; this.Button7.UseVisualStyleBackColor = true; // @@ -2097,11 +298,14 @@ 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.Image = global::TimeHACK.Properties.Resources.ie4_search; + this.Button6.ImageAlign = System.Drawing.ContentAlignment.BottomCenter; + this.Button6.Location = new System.Drawing.Point(339, 0); this.Button6.Name = "Button6"; - this.Button6.Size = new System.Drawing.Size(75, 47); + this.Button6.Size = new System.Drawing.Size(63, 47); this.Button6.TabIndex = 5; - this.Button6.Text = "Favorites"; + this.Button6.Text = "Search"; + this.Button6.TextAlign = System.Drawing.ContentAlignment.BottomCenter; this.Button6.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; this.Button6.UseVisualStyleBackColor = true; // @@ -2110,25 +314,30 @@ this.HomeButton.Dock = System.Windows.Forms.DockStyle.Left; this.HomeButton.FlatAppearance.BorderSize = 0; this.HomeButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.HomeButton.Location = new System.Drawing.Point(300, 0); + this.HomeButton.Image = global::TimeHACK.Properties.Resources.ie4_home; + this.HomeButton.ImageAlign = System.Drawing.ContentAlignment.BottomCenter; + this.HomeButton.Location = new System.Drawing.Point(276, 0); this.HomeButton.Name = "HomeButton"; - this.HomeButton.Size = new System.Drawing.Size(75, 47); + this.HomeButton.Size = new System.Drawing.Size(63, 47); this.HomeButton.TabIndex = 4; this.HomeButton.Text = "Home"; + this.HomeButton.TextAlign = System.Drawing.ContentAlignment.BottomCenter; this.HomeButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; this.HomeButton.UseVisualStyleBackColor = true; - this.HomeButton.Click += new System.EventHandler(this.HomeButton_Click); // // 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.Image = global::TimeHACK.Properties.Resources.ie4_refresh; + this.Button4.ImageAlign = System.Drawing.ContentAlignment.BottomCenter; + this.Button4.Location = new System.Drawing.Point(213, 0); this.Button4.Name = "Button4"; - this.Button4.Size = new System.Drawing.Size(75, 47); + this.Button4.Size = new System.Drawing.Size(63, 47); this.Button4.TabIndex = 3; this.Button4.Text = "Refresh"; + this.Button4.TextAlign = System.Drawing.ContentAlignment.BottomCenter; this.Button4.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; this.Button4.UseVisualStyleBackColor = true; // @@ -2137,11 +346,14 @@ this.Button3.Dock = System.Windows.Forms.DockStyle.Left; this.Button3.FlatAppearance.BorderSize = 0; this.Button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.Button3.Image = global::TimeHACK.Properties.Resources.ie4_stop; + this.Button3.ImageAlign = System.Drawing.ContentAlignment.BottomCenter; this.Button3.Location = new System.Drawing.Point(150, 0); this.Button3.Name = "Button3"; - this.Button3.Size = new System.Drawing.Size(75, 47); + this.Button3.Size = new System.Drawing.Size(63, 47); this.Button3.TabIndex = 2; this.Button3.Text = "Stop"; + this.Button3.TextAlign = System.Drawing.ContentAlignment.BottomCenter; this.Button3.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; this.Button3.UseVisualStyleBackColor = true; // @@ -2150,37 +362,106 @@ this.ForwardButton.Dock = System.Windows.Forms.DockStyle.Left; this.ForwardButton.FlatAppearance.BorderSize = 0; this.ForwardButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.ForwardButton.Image = global::TimeHACK.Properties.Resources.ie4_forward; + this.ForwardButton.ImageAlign = System.Drawing.ContentAlignment.BottomCenter; this.ForwardButton.Location = new System.Drawing.Point(75, 0); this.ForwardButton.Name = "ForwardButton"; this.ForwardButton.Size = new System.Drawing.Size(75, 47); this.ForwardButton.TabIndex = 1; this.ForwardButton.Text = "Forward"; + this.ForwardButton.TextAlign = System.Drawing.ContentAlignment.BottomCenter; this.ForwardButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; this.ForwardButton.UseVisualStyleBackColor = true; - this.ForwardButton.Click += new System.EventHandler(this.ForwardButton_Click); // // BackButton // this.BackButton.Dock = System.Windows.Forms.DockStyle.Left; this.BackButton.FlatAppearance.BorderSize = 0; this.BackButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.BackButton.Image = global::TimeHACK.Properties.Resources.ie4_back; + this.BackButton.ImageAlign = System.Drawing.ContentAlignment.BottomCenter; this.BackButton.Location = new System.Drawing.Point(0, 0); this.BackButton.Name = "BackButton"; this.BackButton.Size = new System.Drawing.Size(75, 47); - this.BackButton.TabIndex = 0; + this.BackButton.TabIndex = 1; this.BackButton.Text = "Back"; + this.BackButton.TextAlign = System.Drawing.ContentAlignment.BottomCenter; this.BackButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; this.BackButton.UseVisualStyleBackColor = true; - this.BackButton.Click += new System.EventHandler(this.BackButton_Click); // - // PictureBox1 + // Panel1 // - this.PictureBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.PictureBox1.Location = new System.Drawing.Point(915, 23); - this.PictureBox1.Name = "PictureBox1"; - this.PictureBox1.Size = new System.Drawing.Size(38, 21); - this.PictureBox1.TabIndex = 10; - this.PictureBox1.TabStop = false; + this.Panel1.BackColor = System.Drawing.Color.Silver; + this.Panel1.Controls.Add(this.pictureBox8); + this.Panel1.Controls.Add(this.pictureBox6); + this.Panel1.Controls.Add(this.pictureBox5); + this.Panel1.Controls.Add(this.pictureBox2); + this.Panel1.Controls.Add(this.pictureBox1); + this.Panel1.Controls.Add(this.Button30); + this.Panel1.Controls.Add(this.Button29); + this.Panel1.Controls.Add(this.Button27); + this.Panel1.Controls.Add(this.Button7); + this.Panel1.Controls.Add(this.Button6); + this.Panel1.Controls.Add(this.HomeButton); + this.Panel1.Controls.Add(this.Button4); + this.Panel1.Controls.Add(this.Button3); + this.Panel1.Controls.Add(this.ForwardButton); + this.Panel1.Controls.Add(this.BackButton); + 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, 47); + this.Panel1.TabIndex = 14; + // + // pictureBox8 + // + this.pictureBox8.BackgroundImage = global::TimeHACK.Properties.Resources.ie4_hsplitter; + this.pictureBox8.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox8.Location = new System.Drawing.Point(0, 46); + this.pictureBox8.Name = "pictureBox8"; + this.pictureBox8.Size = new System.Drawing.Size(959, 2); + this.pictureBox8.TabIndex = 15; + this.pictureBox8.TabStop = false; + // + // pictureBox6 + // + this.pictureBox6.BackgroundImage = global::TimeHACK.Properties.Resources.ie4_hsplitter; + this.pictureBox6.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox6.Location = new System.Drawing.Point(0, 0); + this.pictureBox6.Name = "pictureBox6"; + this.pictureBox6.Size = new System.Drawing.Size(959, 2); + this.pictureBox6.TabIndex = 14; + this.pictureBox6.TabStop = false; + // + // pictureBox5 + // + this.pictureBox5.BackgroundImage = global::TimeHACK.Properties.Resources.ie4_vsplitter3; + this.pictureBox5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox5.Location = new System.Drawing.Point(2, 5); + this.pictureBox5.Name = "pictureBox5"; + this.pictureBox5.Size = new System.Drawing.Size(3, 38); + this.pictureBox5.TabIndex = 13; + this.pictureBox5.TabStop = false; + // + // pictureBox2 + // + this.pictureBox2.BackgroundImage = global::TimeHACK.Properties.Resources.ie4_vsplitter; + this.pictureBox2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox2.Location = new System.Drawing.Point(337, -1); + this.pictureBox2.Name = "pictureBox2"; + this.pictureBox2.Size = new System.Drawing.Size(2, 47); + this.pictureBox2.TabIndex = 12; + this.pictureBox2.TabStop = false; + // + // pictureBox1 + // + this.pictureBox1.BackgroundImage = global::TimeHACK.Properties.Resources.ie4_vsplitter; + this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox1.Location = new System.Drawing.Point(526, -1); + this.pictureBox1.Name = "pictureBox1"; + this.pictureBox1.Size = new System.Drawing.Size(2, 47); + this.pictureBox1.TabIndex = 11; + this.pictureBox1.TabStop = false; // // MenuStrip3 // @@ -2195,7 +476,7 @@ 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 = 11; + this.MenuStrip3.TabIndex = 15; this.MenuStrip3.Text = "MenuStrip1"; // // ToolStripMenuItem1 @@ -2214,7 +495,7 @@ this.ToolStripMenuItem20, this.ToolStripMenuItem21}); this.ToolStripMenuItem1.Name = "ToolStripMenuItem1"; - this.ToolStripMenuItem1.Size = new System.Drawing.Size(40, 20); + this.ToolStripMenuItem1.Size = new System.Drawing.Size(37, 20); this.ToolStripMenuItem1.Text = "File"; // // ToolStripMenuItem2 @@ -2227,84 +508,84 @@ this.ToolStripMenuItem6, this.ToolStripMenuItem7}); this.ToolStripMenuItem2.Name = "ToolStripMenuItem2"; - this.ToolStripMenuItem2.Size = new System.Drawing.Size(239, 22); + this.ToolStripMenuItem2.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem2.Text = "New"; // // ToolStripMenuItem3 // this.ToolStripMenuItem3.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem3.Name = "ToolStripMenuItem3"; - this.ToolStripMenuItem3.Size = new System.Drawing.Size(181, 22); + this.ToolStripMenuItem3.Size = new System.Drawing.Size(175, 22); this.ToolStripMenuItem3.Text = "Window Ctrl+N"; // // ToolStripMenuItem4 // this.ToolStripMenuItem4.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem4.Name = "ToolStripMenuItem4"; - this.ToolStripMenuItem4.Size = new System.Drawing.Size(181, 22); + this.ToolStripMenuItem4.Size = new System.Drawing.Size(175, 22); this.ToolStripMenuItem4.Text = "Message"; // // ToolStripMenuItem5 // this.ToolStripMenuItem5.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem5.Name = "ToolStripMenuItem5"; - this.ToolStripMenuItem5.Size = new System.Drawing.Size(181, 22); + this.ToolStripMenuItem5.Size = new System.Drawing.Size(175, 22); this.ToolStripMenuItem5.Text = "Post"; // // ToolStripMenuItem6 // this.ToolStripMenuItem6.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem6.Name = "ToolStripMenuItem6"; - this.ToolStripMenuItem6.Size = new System.Drawing.Size(181, 22); + this.ToolStripMenuItem6.Size = new System.Drawing.Size(175, 22); this.ToolStripMenuItem6.Text = "Contact"; // // ToolStripMenuItem7 // this.ToolStripMenuItem7.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem7.Name = "ToolStripMenuItem7"; - this.ToolStripMenuItem7.Size = new System.Drawing.Size(181, 22); + this.ToolStripMenuItem7.Size = new System.Drawing.Size(175, 22); this.ToolStripMenuItem7.Text = "Internet Call"; // // ToolStripMenuItem8 // this.ToolStripMenuItem8.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem8.Name = "ToolStripMenuItem8"; - this.ToolStripMenuItem8.Size = new System.Drawing.Size(239, 22); + this.ToolStripMenuItem8.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem8.Text = "Open... Ctrl+O"; // // ToolStripMenuItem9 // this.ToolStripMenuItem9.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem9.Name = "ToolStripMenuItem9"; - this.ToolStripMenuItem9.Size = new System.Drawing.Size(239, 22); + this.ToolStripMenuItem9.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem9.Text = "Edit with Windows Notepad"; // // ToolStripMenuItem10 // this.ToolStripMenuItem10.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem10.Name = "ToolStripMenuItem10"; - this.ToolStripMenuItem10.Size = new System.Drawing.Size(239, 22); + this.ToolStripMenuItem10.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem10.Text = "Save Ctrl+S"; // // ToolStripMenuItem11 // this.ToolStripMenuItem11.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem11.Name = "ToolStripMenuItem11"; - this.ToolStripMenuItem11.Size = new System.Drawing.Size(239, 22); + this.ToolStripMenuItem11.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem11.Text = "Save As..."; // // ToolStripMenuItem12 // this.ToolStripMenuItem12.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem12.Name = "ToolStripMenuItem12"; - this.ToolStripMenuItem12.Size = new System.Drawing.Size(239, 22); + this.ToolStripMenuItem12.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem12.Text = "Print Setup..."; // // ToolStripMenuItem13 // this.ToolStripMenuItem13.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem13.Name = "ToolStripMenuItem13"; - this.ToolStripMenuItem13.Size = new System.Drawing.Size(239, 22); + this.ToolStripMenuItem13.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem13.Text = "Print..."; // // ToolStripMenuItem14 @@ -2315,58 +596,57 @@ this.ToolStripMenuItem16, this.ToolStripMenuItem17}); this.ToolStripMenuItem14.Name = "ToolStripMenuItem14"; - this.ToolStripMenuItem14.Size = new System.Drawing.Size(239, 22); + this.ToolStripMenuItem14.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem14.Text = "Send"; // // ToolStripMenuItem15 // this.ToolStripMenuItem15.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem15.Name = "ToolStripMenuItem15"; - this.ToolStripMenuItem15.Size = new System.Drawing.Size(198, 22); + this.ToolStripMenuItem15.Size = new System.Drawing.Size(179, 22); this.ToolStripMenuItem15.Text = "Page by E-mail..."; // // ToolStripMenuItem16 // this.ToolStripMenuItem16.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem16.Name = "ToolStripMenuItem16"; - this.ToolStripMenuItem16.Size = new System.Drawing.Size(198, 22); + this.ToolStripMenuItem16.Size = new System.Drawing.Size(179, 22); this.ToolStripMenuItem16.Text = "Link by E-mail..."; // // ToolStripMenuItem17 // this.ToolStripMenuItem17.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem17.Name = "ToolStripMenuItem17"; - this.ToolStripMenuItem17.Size = new System.Drawing.Size(198, 22); + this.ToolStripMenuItem17.Size = new System.Drawing.Size(179, 22); this.ToolStripMenuItem17.Text = "Shortcut to Desktop"; // // ToolStripMenuItem18 // this.ToolStripMenuItem18.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem18.Name = "ToolStripMenuItem18"; - this.ToolStripMenuItem18.Size = new System.Drawing.Size(239, 22); + this.ToolStripMenuItem18.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem18.Text = "Import and Export..."; // // ToolStripMenuItem19 // this.ToolStripMenuItem19.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem19.Name = "ToolStripMenuItem19"; - this.ToolStripMenuItem19.Size = new System.Drawing.Size(239, 22); + this.ToolStripMenuItem19.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem19.Text = "Properties"; // // ToolStripMenuItem20 // this.ToolStripMenuItem20.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem20.Name = "ToolStripMenuItem20"; - this.ToolStripMenuItem20.Size = new System.Drawing.Size(239, 22); + this.ToolStripMenuItem20.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem20.Text = "Work Offline"; // // ToolStripMenuItem21 // this.ToolStripMenuItem21.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem21.Name = "ToolStripMenuItem21"; - this.ToolStripMenuItem21.Size = new System.Drawing.Size(239, 22); + this.ToolStripMenuItem21.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem21.Text = "Close"; - this.ToolStripMenuItem21.Click += new System.EventHandler(this.ToolStripMenuItem21_Click); // // ToolStripMenuItem22 // @@ -2377,42 +657,42 @@ this.ToolStripMenuItem26, this.ToolStripMenuItem27}); this.ToolStripMenuItem22.Name = "ToolStripMenuItem22"; - this.ToolStripMenuItem22.Size = new System.Drawing.Size(43, 20); + this.ToolStripMenuItem22.Size = new System.Drawing.Size(39, 20); this.ToolStripMenuItem22.Text = "Edit"; // // ToolStripMenuItem23 // this.ToolStripMenuItem23.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem23.Name = "ToolStripMenuItem23"; - this.ToolStripMenuItem23.Size = new System.Drawing.Size(237, 22); + this.ToolStripMenuItem23.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem23.Text = "Cut Ctrl+X"; // // ToolStripMenuItem24 // this.ToolStripMenuItem24.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem24.Name = "ToolStripMenuItem24"; - this.ToolStripMenuItem24.Size = new System.Drawing.Size(237, 22); + this.ToolStripMenuItem24.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem24.Text = "Copy Ctrl+C"; // // ToolStripMenuItem25 // this.ToolStripMenuItem25.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem25.Name = "ToolStripMenuItem25"; - this.ToolStripMenuItem25.Size = new System.Drawing.Size(237, 22); + this.ToolStripMenuItem25.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem25.Text = "Paste Ctrl+V"; // // ToolStripMenuItem26 // this.ToolStripMenuItem26.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem26.Name = "ToolStripMenuItem26"; - this.ToolStripMenuItem26.Size = new System.Drawing.Size(237, 22); + this.ToolStripMenuItem26.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem26.Text = "Select All Ctrl+A"; // // ToolStripMenuItem27 // this.ToolStripMenuItem27.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem27.Name = "ToolStripMenuItem27"; - this.ToolStripMenuItem27.Size = new System.Drawing.Size(237, 22); + this.ToolStripMenuItem27.Size = new System.Drawing.Size(221, 22); this.ToolStripMenuItem27.Text = "Find (on This Page)... Ctrl+F"; // // ToolStripMenuItem28 @@ -2429,7 +709,7 @@ this.ToolStripMenuItem71, this.ToolStripMenuItem72}); this.ToolStripMenuItem28.Name = "ToolStripMenuItem28"; - this.ToolStripMenuItem28.Size = new System.Drawing.Size(47, 20); + this.ToolStripMenuItem28.Size = new System.Drawing.Size(44, 20); this.ToolStripMenuItem28.Text = "View"; // // ToolStripMenuItem29 @@ -2442,49 +722,49 @@ this.ToolStripMenuItem33, this.ToolStripMenuItem34}); this.ToolStripMenuItem29.Name = "ToolStripMenuItem29"; - this.ToolStripMenuItem29.Size = new System.Drawing.Size(180, 22); + this.ToolStripMenuItem29.Size = new System.Drawing.Size(166, 22); this.ToolStripMenuItem29.Text = "Toolbars"; // // ToolStripMenuItem30 // this.ToolStripMenuItem30.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem30.Name = "ToolStripMenuItem30"; - this.ToolStripMenuItem30.Size = new System.Drawing.Size(183, 22); + this.ToolStripMenuItem30.Size = new System.Drawing.Size(165, 22); this.ToolStripMenuItem30.Text = "Standard Buttons"; // // ToolStripMenuItem31 // this.ToolStripMenuItem31.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem31.Name = "ToolStripMenuItem31"; - this.ToolStripMenuItem31.Size = new System.Drawing.Size(183, 22); + this.ToolStripMenuItem31.Size = new System.Drawing.Size(165, 22); this.ToolStripMenuItem31.Text = "Address Bar"; // // ToolStripMenuItem32 // this.ToolStripMenuItem32.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem32.Name = "ToolStripMenuItem32"; - this.ToolStripMenuItem32.Size = new System.Drawing.Size(183, 22); + this.ToolStripMenuItem32.Size = new System.Drawing.Size(165, 22); this.ToolStripMenuItem32.Text = "Links"; // // ToolStripMenuItem33 // this.ToolStripMenuItem33.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem33.Name = "ToolStripMenuItem33"; - this.ToolStripMenuItem33.Size = new System.Drawing.Size(183, 22); + this.ToolStripMenuItem33.Size = new System.Drawing.Size(165, 22); this.ToolStripMenuItem33.Text = "Radio"; // // ToolStripMenuItem34 // this.ToolStripMenuItem34.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem34.Name = "ToolStripMenuItem34"; - this.ToolStripMenuItem34.Size = new System.Drawing.Size(183, 22); + this.ToolStripMenuItem34.Size = new System.Drawing.Size(165, 22); this.ToolStripMenuItem34.Text = "Customize..."; // // ToolStripMenuItem35 // this.ToolStripMenuItem35.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem35.Name = "ToolStripMenuItem35"; - this.ToolStripMenuItem35.Size = new System.Drawing.Size(180, 22); + this.ToolStripMenuItem35.Size = new System.Drawing.Size(166, 22); this.ToolStripMenuItem35.Text = "Status Bar"; // // ToolStripMenuItem36 @@ -2496,35 +776,35 @@ this.ToolStripMenuItem39, this.ToolStripMenuItem40}); this.ToolStripMenuItem36.Name = "ToolStripMenuItem36"; - this.ToolStripMenuItem36.Size = new System.Drawing.Size(180, 22); + this.ToolStripMenuItem36.Size = new System.Drawing.Size(166, 22); this.ToolStripMenuItem36.Text = "Explorer Bar"; // // ToolStripMenuItem37 // this.ToolStripMenuItem37.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem37.Name = "ToolStripMenuItem37"; - this.ToolStripMenuItem37.Size = new System.Drawing.Size(193, 22); + this.ToolStripMenuItem37.Size = new System.Drawing.Size(184, 22); this.ToolStripMenuItem37.Text = "Search Ctrl+E"; // // ToolStripMenuItem38 // this.ToolStripMenuItem38.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem38.Name = "ToolStripMenuItem38"; - this.ToolStripMenuItem38.Size = new System.Drawing.Size(193, 22); + this.ToolStripMenuItem38.Size = new System.Drawing.Size(184, 22); this.ToolStripMenuItem38.Text = "Favorites Ctrl+I"; // // ToolStripMenuItem39 // this.ToolStripMenuItem39.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem39.Name = "ToolStripMenuItem39"; - this.ToolStripMenuItem39.Size = new System.Drawing.Size(193, 22); + this.ToolStripMenuItem39.Size = new System.Drawing.Size(184, 22); this.ToolStripMenuItem39.Text = "History Ctrl+H"; // // ToolStripMenuItem40 // this.ToolStripMenuItem40.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem40.Name = "ToolStripMenuItem40"; - this.ToolStripMenuItem40.Size = new System.Drawing.Size(193, 22); + this.ToolStripMenuItem40.Size = new System.Drawing.Size(184, 22); this.ToolStripMenuItem40.Text = "Tip of the Day"; // // ToolStripMenuItem41 @@ -2533,28 +813,28 @@ this.ToolStripMenuItem41.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ToolStripMenuItem42}); this.ToolStripMenuItem41.Name = "ToolStripMenuItem41"; - this.ToolStripMenuItem41.Size = new System.Drawing.Size(180, 22); + this.ToolStripMenuItem41.Size = new System.Drawing.Size(166, 22); this.ToolStripMenuItem41.Text = "Go To"; // // ToolStripMenuItem42 // this.ToolStripMenuItem42.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem42.Name = "ToolStripMenuItem42"; - this.ToolStripMenuItem42.Size = new System.Drawing.Size(143, 22); + this.ToolStripMenuItem42.Size = new System.Drawing.Size(136, 22); this.ToolStripMenuItem42.Text = "Home Page"; // // ToolStripMenuItem43 // this.ToolStripMenuItem43.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem43.Name = "ToolStripMenuItem43"; - this.ToolStripMenuItem43.Size = new System.Drawing.Size(180, 22); + this.ToolStripMenuItem43.Size = new System.Drawing.Size(166, 22); this.ToolStripMenuItem43.Text = "Stop Esc"; // // ToolStripMenuItem44 // this.ToolStripMenuItem44.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem44.Name = "ToolStripMenuItem44"; - this.ToolStripMenuItem44.Size = new System.Drawing.Size(180, 22); + this.ToolStripMenuItem44.Size = new System.Drawing.Size(166, 22); this.ToolStripMenuItem44.Text = "Refresh F5"; // // ToolStripMenuItem45 @@ -2567,42 +847,42 @@ this.ToolStripMenuItem49, this.ToolStripMenuItem50}); this.ToolStripMenuItem45.Name = "ToolStripMenuItem45"; - this.ToolStripMenuItem45.Size = new System.Drawing.Size(180, 22); + this.ToolStripMenuItem45.Size = new System.Drawing.Size(166, 22); this.ToolStripMenuItem45.Text = "Text Size"; // // ToolStripMenuItem46 // this.ToolStripMenuItem46.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem46.Name = "ToolStripMenuItem46"; - this.ToolStripMenuItem46.Size = new System.Drawing.Size(126, 22); + this.ToolStripMenuItem46.Size = new System.Drawing.Size(119, 22); this.ToolStripMenuItem46.Text = "Largest"; // // ToolStripMenuItem47 // this.ToolStripMenuItem47.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem47.Name = "ToolStripMenuItem47"; - this.ToolStripMenuItem47.Size = new System.Drawing.Size(126, 22); + this.ToolStripMenuItem47.Size = new System.Drawing.Size(119, 22); this.ToolStripMenuItem47.Text = "Larger"; // // ToolStripMenuItem48 // this.ToolStripMenuItem48.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem48.Name = "ToolStripMenuItem48"; - this.ToolStripMenuItem48.Size = new System.Drawing.Size(126, 22); + this.ToolStripMenuItem48.Size = new System.Drawing.Size(119, 22); this.ToolStripMenuItem48.Text = "Medium"; // // ToolStripMenuItem49 // this.ToolStripMenuItem49.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem49.Name = "ToolStripMenuItem49"; - this.ToolStripMenuItem49.Size = new System.Drawing.Size(126, 22); + this.ToolStripMenuItem49.Size = new System.Drawing.Size(119, 22); this.ToolStripMenuItem49.Text = "Smaller"; // // ToolStripMenuItem50 // this.ToolStripMenuItem50.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem50.Name = "ToolStripMenuItem50"; - this.ToolStripMenuItem50.Size = new System.Drawing.Size(126, 22); + this.ToolStripMenuItem50.Size = new System.Drawing.Size(119, 22); this.ToolStripMenuItem50.Text = "Smallest"; // // ToolStripMenuItem51 @@ -2613,21 +893,21 @@ this.ToolStripMenuItem53, this.ToolStripMenuItem54}); this.ToolStripMenuItem51.Name = "ToolStripMenuItem51"; - this.ToolStripMenuItem51.Size = new System.Drawing.Size(180, 22); + this.ToolStripMenuItem51.Size = new System.Drawing.Size(166, 22); this.ToolStripMenuItem51.Text = "Encoding"; // // ToolStripMenuItem52 // this.ToolStripMenuItem52.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem52.Name = "ToolStripMenuItem52"; - this.ToolStripMenuItem52.Size = new System.Drawing.Size(249, 22); + this.ToolStripMenuItem52.Size = new System.Drawing.Size(230, 22); this.ToolStripMenuItem52.Text = "Auto-Select"; // // ToolStripMenuItem53 // this.ToolStripMenuItem53.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem53.Name = "ToolStripMenuItem53"; - this.ToolStripMenuItem53.Size = new System.Drawing.Size(249, 22); + this.ToolStripMenuItem53.Size = new System.Drawing.Size(230, 22); this.ToolStripMenuItem53.Text = "Western European (Windows)"; // // ToolStripMenuItem54 @@ -2651,133 +931,133 @@ this.ToolStripMenuItem69, this.ToolStripMenuItem70}); this.ToolStripMenuItem54.Name = "ToolStripMenuItem54"; - this.ToolStripMenuItem54.Size = new System.Drawing.Size(249, 22); + this.ToolStripMenuItem54.Size = new System.Drawing.Size(230, 22); this.ToolStripMenuItem54.Text = "More"; // // ToolStripMenuItem55 // this.ToolStripMenuItem55.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem55.Name = "ToolStripMenuItem55"; - this.ToolStripMenuItem55.Size = new System.Drawing.Size(216, 22); + this.ToolStripMenuItem55.Size = new System.Drawing.Size(199, 22); this.ToolStripMenuItem55.Text = "Arabic"; // // ToolStripMenuItem56 // this.ToolStripMenuItem56.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem56.Name = "ToolStripMenuItem56"; - this.ToolStripMenuItem56.Size = new System.Drawing.Size(216, 22); + this.ToolStripMenuItem56.Size = new System.Drawing.Size(199, 22); this.ToolStripMenuItem56.Text = "Baltic"; // // ToolStripMenuItem57 // this.ToolStripMenuItem57.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem57.Name = "ToolStripMenuItem57"; - this.ToolStripMenuItem57.Size = new System.Drawing.Size(216, 22); + this.ToolStripMenuItem57.Size = new System.Drawing.Size(199, 22); this.ToolStripMenuItem57.Text = "Central European"; // // ToolStripMenuItem58 // this.ToolStripMenuItem58.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem58.Name = "ToolStripMenuItem58"; - this.ToolStripMenuItem58.Size = new System.Drawing.Size(216, 22); + this.ToolStripMenuItem58.Size = new System.Drawing.Size(199, 22); this.ToolStripMenuItem58.Text = "Chinese Simplified"; // // ToolStripMenuItem59 // this.ToolStripMenuItem59.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem59.Name = "ToolStripMenuItem59"; - this.ToolStripMenuItem59.Size = new System.Drawing.Size(216, 22); + this.ToolStripMenuItem59.Size = new System.Drawing.Size(199, 22); this.ToolStripMenuItem59.Text = "Chinese Traditional"; // // ToolStripMenuItem60 // this.ToolStripMenuItem60.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem60.Name = "ToolStripMenuItem60"; - this.ToolStripMenuItem60.Size = new System.Drawing.Size(216, 22); + this.ToolStripMenuItem60.Size = new System.Drawing.Size(199, 22); this.ToolStripMenuItem60.Text = "Cyrillic"; // // ToolStripMenuItem61 // this.ToolStripMenuItem61.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem61.Name = "ToolStripMenuItem61"; - this.ToolStripMenuItem61.Size = new System.Drawing.Size(216, 22); + this.ToolStripMenuItem61.Size = new System.Drawing.Size(199, 22); this.ToolStripMenuItem61.Text = "Greek"; // // ToolStripMenuItem62 // this.ToolStripMenuItem62.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem62.Name = "ToolStripMenuItem62"; - this.ToolStripMenuItem62.Size = new System.Drawing.Size(216, 22); + this.ToolStripMenuItem62.Size = new System.Drawing.Size(199, 22); this.ToolStripMenuItem62.Text = "Hebrew"; // // ToolStripMenuItem63 // this.ToolStripMenuItem63.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem63.Name = "ToolStripMenuItem63"; - this.ToolStripMenuItem63.Size = new System.Drawing.Size(216, 22); + this.ToolStripMenuItem63.Size = new System.Drawing.Size(199, 22); this.ToolStripMenuItem63.Text = "Japanese"; // // ToolStripMenuItem64 // this.ToolStripMenuItem64.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem64.Name = "ToolStripMenuItem64"; - this.ToolStripMenuItem64.Size = new System.Drawing.Size(216, 22); + this.ToolStripMenuItem64.Size = new System.Drawing.Size(199, 22); this.ToolStripMenuItem64.Text = "Korean"; // // ToolStripMenuItem65 // this.ToolStripMenuItem65.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem65.Name = "ToolStripMenuItem65"; - this.ToolStripMenuItem65.Size = new System.Drawing.Size(216, 22); + this.ToolStripMenuItem65.Size = new System.Drawing.Size(199, 22); this.ToolStripMenuItem65.Text = "Thai"; // // ToolStripMenuItem66 // this.ToolStripMenuItem66.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem66.Name = "ToolStripMenuItem66"; - this.ToolStripMenuItem66.Size = new System.Drawing.Size(216, 22); + this.ToolStripMenuItem66.Size = new System.Drawing.Size(199, 22); this.ToolStripMenuItem66.Text = "Turkish"; // // ToolStripMenuItem67 // this.ToolStripMenuItem67.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem67.Name = "ToolStripMenuItem67"; - this.ToolStripMenuItem67.Size = new System.Drawing.Size(216, 22); + this.ToolStripMenuItem67.Size = new System.Drawing.Size(199, 22); this.ToolStripMenuItem67.Text = "Unicode (UTF-8)"; // // ToolStripMenuItem68 // this.ToolStripMenuItem68.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem68.Name = "ToolStripMenuItem68"; - this.ToolStripMenuItem68.Size = new System.Drawing.Size(216, 22); + this.ToolStripMenuItem68.Size = new System.Drawing.Size(199, 22); this.ToolStripMenuItem68.Text = "User Defined"; // // ToolStripMenuItem69 // this.ToolStripMenuItem69.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem69.Name = "ToolStripMenuItem69"; - this.ToolStripMenuItem69.Size = new System.Drawing.Size(216, 22); + this.ToolStripMenuItem69.Size = new System.Drawing.Size(199, 22); this.ToolStripMenuItem69.Text = "Vietnamese"; // // ToolStripMenuItem70 // this.ToolStripMenuItem70.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem70.Name = "ToolStripMenuItem70"; - this.ToolStripMenuItem70.Size = new System.Drawing.Size(216, 22); + this.ToolStripMenuItem70.Size = new System.Drawing.Size(199, 22); this.ToolStripMenuItem70.Text = "Western European (ISO)"; // // ToolStripMenuItem71 // this.ToolStripMenuItem71.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem71.Name = "ToolStripMenuItem71"; - this.ToolStripMenuItem71.Size = new System.Drawing.Size(180, 22); + this.ToolStripMenuItem71.Size = new System.Drawing.Size(166, 22); this.ToolStripMenuItem71.Text = "Source"; // // ToolStripMenuItem72 // this.ToolStripMenuItem72.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem72.Name = "ToolStripMenuItem72"; - this.ToolStripMenuItem72.Size = new System.Drawing.Size(180, 22); + this.ToolStripMenuItem72.Size = new System.Drawing.Size(166, 22); this.ToolStripMenuItem72.Text = "Full Screen F11"; // // ToolStripMenuItem78 @@ -2788,7 +1068,7 @@ this.ToolStripMenuItem86, this.ToolStripMenuItem87}); this.ToolStripMenuItem78.Name = "ToolStripMenuItem78"; - this.ToolStripMenuItem78.Size = new System.Drawing.Size(36, 20); + this.ToolStripMenuItem78.Size = new System.Drawing.Size(34, 20); this.ToolStripMenuItem78.Text = "Go"; // // ToolStripMenuItem79 @@ -2801,63 +1081,63 @@ this.ToolStripMenuItem83, this.ToolStripMenuItem84}); this.ToolStripMenuItem79.Name = "ToolStripMenuItem79"; - this.ToolStripMenuItem79.Size = new System.Drawing.Size(191, 22); + this.ToolStripMenuItem79.Size = new System.Drawing.Size(175, 22); this.ToolStripMenuItem79.Text = "Mail and News"; // // ToolStripMenuItem80 // this.ToolStripMenuItem80.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem80.Name = "ToolStripMenuItem80"; - this.ToolStripMenuItem80.Size = new System.Drawing.Size(165, 22); + this.ToolStripMenuItem80.Size = new System.Drawing.Size(156, 22); this.ToolStripMenuItem80.Text = "Read Mail"; // // ToolStripMenuItem81 // this.ToolStripMenuItem81.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem81.Name = "ToolStripMenuItem81"; - this.ToolStripMenuItem81.Size = new System.Drawing.Size(165, 22); + this.ToolStripMenuItem81.Size = new System.Drawing.Size(156, 22); this.ToolStripMenuItem81.Text = "New Message..."; // // ToolStripMenuItem82 // this.ToolStripMenuItem82.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem82.Name = "ToolStripMenuItem82"; - this.ToolStripMenuItem82.Size = new System.Drawing.Size(165, 22); + this.ToolStripMenuItem82.Size = new System.Drawing.Size(156, 22); this.ToolStripMenuItem82.Text = "Send a Link..."; // // ToolStripMenuItem83 // this.ToolStripMenuItem83.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem83.Name = "ToolStripMenuItem83"; - this.ToolStripMenuItem83.Size = new System.Drawing.Size(165, 22); + this.ToolStripMenuItem83.Size = new System.Drawing.Size(156, 22); this.ToolStripMenuItem83.Text = "Send Page..."; // // ToolStripMenuItem84 // this.ToolStripMenuItem84.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem84.Name = "ToolStripMenuItem84"; - this.ToolStripMenuItem84.Size = new System.Drawing.Size(165, 22); + this.ToolStripMenuItem84.Size = new System.Drawing.Size(156, 22); this.ToolStripMenuItem84.Text = "Read News"; // // ToolStripMenuItem85 // this.ToolStripMenuItem85.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem85.Name = "ToolStripMenuItem85"; - this.ToolStripMenuItem85.Size = new System.Drawing.Size(191, 22); + this.ToolStripMenuItem85.Size = new System.Drawing.Size(175, 22); this.ToolStripMenuItem85.Text = "Windows Update"; // // ToolStripMenuItem86 // this.ToolStripMenuItem86.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem86.Name = "ToolStripMenuItem86"; - this.ToolStripMenuItem86.Size = new System.Drawing.Size(191, 22); + this.ToolStripMenuItem86.Size = new System.Drawing.Size(175, 22); this.ToolStripMenuItem86.Text = "Show Related Links"; // // ToolStripMenuItem87 // this.ToolStripMenuItem87.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem87.Name = "ToolStripMenuItem87"; - this.ToolStripMenuItem87.Size = new System.Drawing.Size(191, 22); + this.ToolStripMenuItem87.Size = new System.Drawing.Size(175, 22); this.ToolStripMenuItem87.Text = "Internet Options..."; // // ToolStripMenuItem73 @@ -2867,21 +1147,21 @@ this.ToolStripMenuItem75, this.ToolStripMenuItem76}); this.ToolStripMenuItem73.Name = "ToolStripMenuItem73"; - this.ToolStripMenuItem73.Size = new System.Drawing.Size(76, 20); + this.ToolStripMenuItem73.Size = new System.Drawing.Size(66, 20); this.ToolStripMenuItem73.Text = "Favorites"; // // ToolStripMenuItem74 // this.ToolStripMenuItem74.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem74.Name = "ToolStripMenuItem74"; - this.ToolStripMenuItem74.Size = new System.Drawing.Size(197, 22); + this.ToolStripMenuItem74.Size = new System.Drawing.Size(180, 22); this.ToolStripMenuItem74.Text = "Add to Favorites..."; // // ToolStripMenuItem75 // this.ToolStripMenuItem75.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem75.Name = "ToolStripMenuItem75"; - this.ToolStripMenuItem75.Size = new System.Drawing.Size(197, 22); + this.ToolStripMenuItem75.Size = new System.Drawing.Size(180, 22); this.ToolStripMenuItem75.Text = "Organize Favorites..."; // // ToolStripMenuItem76 @@ -2890,14 +1170,14 @@ this.ToolStripMenuItem76.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.ToolStripMenuItem77}); this.ToolStripMenuItem76.Name = "ToolStripMenuItem76"; - this.ToolStripMenuItem76.Size = new System.Drawing.Size(197, 22); + this.ToolStripMenuItem76.Size = new System.Drawing.Size(180, 22); this.ToolStripMenuItem76.Text = "Links"; // // ToolStripMenuItem77 // this.ToolStripMenuItem77.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem77.Name = "ToolStripMenuItem77"; - this.ToolStripMenuItem77.Size = new System.Drawing.Size(111, 22); + this.ToolStripMenuItem77.Size = new System.Drawing.Size(109, 22); this.ToolStripMenuItem77.Text = "(none)"; // // ToolStripMenuItem88 @@ -2911,298 +1191,157 @@ this.ToolStripMenuItem94, this.ToolStripMenuItem95}); this.ToolStripMenuItem88.Name = "ToolStripMenuItem88"; - this.ToolStripMenuItem88.Size = new System.Drawing.Size(46, 20); + this.ToolStripMenuItem88.Size = new System.Drawing.Size(44, 20); this.ToolStripMenuItem88.Text = "Help"; // // ToolStripMenuItem89 // this.ToolStripMenuItem89.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem89.Name = "ToolStripMenuItem89"; - this.ToolStripMenuItem89.Size = new System.Drawing.Size(217, 22); + this.ToolStripMenuItem89.Size = new System.Drawing.Size(196, 22); this.ToolStripMenuItem89.Text = "Contects and Index"; // // ToolStripMenuItem90 // this.ToolStripMenuItem90.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem90.Name = "ToolStripMenuItem90"; - this.ToolStripMenuItem90.Size = new System.Drawing.Size(217, 22); + this.ToolStripMenuItem90.Size = new System.Drawing.Size(196, 22); this.ToolStripMenuItem90.Text = "Tip of the Day"; // // ToolStripMenuItem91 // this.ToolStripMenuItem91.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem91.Name = "ToolStripMenuItem91"; - this.ToolStripMenuItem91.Size = new System.Drawing.Size(217, 22); + this.ToolStripMenuItem91.Size = new System.Drawing.Size(196, 22); this.ToolStripMenuItem91.Text = "For Netscape Users"; // // ToolStripMenuItem92 // this.ToolStripMenuItem92.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem92.Name = "ToolStripMenuItem92"; - this.ToolStripMenuItem92.Size = new System.Drawing.Size(217, 22); + this.ToolStripMenuItem92.Size = new System.Drawing.Size(196, 22); this.ToolStripMenuItem92.Text = "Tour"; // // ToolStripMenuItem93 // this.ToolStripMenuItem93.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem93.Name = "ToolStripMenuItem93"; - this.ToolStripMenuItem93.Size = new System.Drawing.Size(217, 22); + this.ToolStripMenuItem93.Size = new System.Drawing.Size(196, 22); this.ToolStripMenuItem93.Text = "Online Support"; // // ToolStripMenuItem94 // this.ToolStripMenuItem94.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem94.Name = "ToolStripMenuItem94"; - this.ToolStripMenuItem94.Size = new System.Drawing.Size(217, 22); + this.ToolStripMenuItem94.Size = new System.Drawing.Size(196, 22); this.ToolStripMenuItem94.Text = "About Internet Explorer"; // // ToolStripMenuItem95 // this.ToolStripMenuItem95.BackColor = System.Drawing.Color.Silver; this.ToolStripMenuItem95.Name = "ToolStripMenuItem95"; - this.ToolStripMenuItem95.Size = new System.Drawing.Size(217, 22); + this.ToolStripMenuItem95.Size = new System.Drawing.Size(196, 22); this.ToolStripMenuItem95.Text = "Send Feedback"; // - // WinClassicIE4 + // _browsingArea + // + this._browsingArea.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this._browsingArea.Dock = System.Windows.Forms.DockStyle.Fill; + this._browsingArea.Location = new System.Drawing.Point(0, 102); + this._browsingArea.Name = "_browsingArea"; + this._browsingArea.Size = new System.Drawing.Size(959, 492); + this._browsingArea.TabIndex = 17; + // + // pictureBox4 + // + this.pictureBox4.BackgroundImage = global::TimeHACK.Properties.Resources.ie4_vsplitter2; + this.pictureBox4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox4.Location = new System.Drawing.Point(2, 4); + this.pictureBox4.Name = "pictureBox4"; + this.pictureBox4.Size = new System.Drawing.Size(3, 19); + this.pictureBox4.TabIndex = 18; + this.pictureBox4.TabStop = false; + // + // pictureBox7 + // + this.pictureBox7.BackgroundImage = global::TimeHACK.Properties.Resources.ie4_hsplitter; + this.pictureBox7.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox7.Location = new System.Drawing.Point(0, 0); + this.pictureBox7.Name = "pictureBox7"; + this.pictureBox7.Size = new System.Drawing.Size(959, 2); + this.pictureBox7.TabIndex = 15; + this.pictureBox7.TabStop = false; + // + // pictureBox9 + // + this.pictureBox9.BackgroundImage = global::TimeHACK.Properties.Resources.ie4_hsplitter; + this.pictureBox9.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox9.Location = new System.Drawing.Point(0, 26); + this.pictureBox9.Name = "pictureBox9"; + this.pictureBox9.Size = new System.Drawing.Size(959, 2); + this.pictureBox9.TabIndex = 16; + this.pictureBox9.TabStop = false; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Location = new System.Drawing.Point(924, 7); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(32, 13); + this.label2.TabIndex = 17; + this.label2.Text = "Links"; + // + // pictureBox10 + // + this.pictureBox10.BackgroundImage = global::TimeHACK.Properties.Resources.ie4_vsplitter2; + this.pictureBox10.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.pictureBox10.Location = new System.Drawing.Point(921, 4); + this.pictureBox10.Name = "pictureBox10"; + this.pictureBox10.Size = new System.Drawing.Size(3, 20); + this.pictureBox10.TabIndex = 19; + this.pictureBox10.TabStop = false; + // + // TempIE4 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.Controls.Add(this.program); - this.Name = "WinClassicIE4"; + this.Controls.Add(this.pictureBox7); + this.Controls.Add(this.pictureBox4); + this.Controls.Add(this._browsingArea); + this.Controls.Add(this.Panel14); + this.Controls.Add(this.Panel1); + this.Controls.Add(this.MenuStrip3); + this.Name = "TempIE4"; this.Size = new System.Drawing.Size(959, 594); - this.Load += new System.EventHandler(this.WinClassicIE4_Load); - this.program.ResumeLayout(false); - this.program.PerformLayout(); - 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.Load += new System.EventHandler(this.TempIE4_Load); this.Panel14.ResumeLayout(false); this.Panel14.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit(); this.Panel1.ResumeLayout(false); - ((System.ComponentModel.ISupportInitialize)(this.PictureBox1)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox8)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox6)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox5)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); this.MenuStrip3.ResumeLayout(false); this.MenuStrip3.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox7)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).EndInit(); this.ResumeLayout(false); + this.PerformLayout(); } #endregion - internal System.Windows.Forms.Panel program; - internal System.Windows.Forms.Panel browsingarea; - 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 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 WCDownloadButton; - 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 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 googlebetalink; - internal System.Windows.Forms.LinkLabel googleprototypelink; - internal System.Windows.Forms.Label Label6; internal System.Windows.Forms.Panel Panel14; internal System.Windows.Forms.Button GoButton; - internal System.Windows.Forms.ComboBox addressbar; + 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; @@ -3211,7 +1350,7 @@ internal System.Windows.Forms.Button Button3; internal System.Windows.Forms.Button ForwardButton; internal System.Windows.Forms.Button BackButton; - internal System.Windows.Forms.PictureBox PictureBox1; + internal System.Windows.Forms.Panel Panel1; internal System.Windows.Forms.MenuStrip MenuStrip3; internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem1; internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem2; @@ -3308,7 +1447,17 @@ internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem93; internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem94; internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem95; - internal System.Windows.Forms.WebBrowser webBrowser1; - internal System.ComponentModel.ComponentResourceManager resources; + private System.Windows.Forms.Panel _browsingArea; + private System.Windows.Forms.PictureBox pictureBox1; + private System.Windows.Forms.PictureBox pictureBox2; + private System.Windows.Forms.PictureBox pictureBox3; + private System.Windows.Forms.PictureBox pictureBox4; + private System.Windows.Forms.PictureBox pictureBox5; + private System.Windows.Forms.PictureBox pictureBox6; + private System.Windows.Forms.PictureBox pictureBox7; + private System.Windows.Forms.PictureBox pictureBox8; + private System.Windows.Forms.PictureBox pictureBox9; + private System.Windows.Forms.PictureBox pictureBox10; + private System.Windows.Forms.Label label2; } -}
\ No newline at end of file +} diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.cs index 85c1d46..e880926 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.cs @@ -1,236 +1,76 @@ using System; using System.Collections.Generic; -using System.Diagnostics; +using System.ComponentModel; using System.Drawing; -using System.Runtime.InteropServices; +using System.Data; +using System.Linq; +using System.Text; +using System.Threading.Tasks; using System.Windows.Forms; -using TimeHACK.Engine; -using TimeHACK.Engine.Template; +using TimeHACK.OS.Win95.Win95Apps.IE4Sites; + namespace TimeHACK.OS.Win95.Win95Apps { public partial class WinClassicIE4 : UserControl { - public List<string> browsinghistory = new List<string>(); - public int historylocation = 0; - - public HtmlDocument currentsite; - private Timer loadplz = new Timer(); + public static Panel browsingArea = new Panel(); + public static ComboBox addressbar = new ComboBox(); public WinClassicIE4() { InitializeComponent(); + browsingArea = _browsingArea; + addressbar = _addressbar; } - private void WinClassicIE4_Load(object sender, EventArgs e) - { - browsinghistory.Capacity = 99; - BringToFront(); - hidePrograms(); - browsinghistory.Add("www.microsoft.com/internetexplorer4/welcome"); - for (int i = 0; i < 99; i++) browsinghistory.Add(null); - webBrowser1.DocumentText = resources.GetString("ie4start_HTML"); - webBrowser1.Show(); - loadplz.Tick += new EventHandler(loadplz_Tick); - foreach (ToolStripMenuItem item in MenuStrip3.Items) item.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((0))); - foreach (Control ctrl in Panel1.Controls) ctrl.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((0))); - } - - private void hidePrograms() - { - googlemain.Hide(); - googlealpha.Hide(); - padamsmain.Hide(); - hotmailmain.Hide(); - padamsbackgrounds.Hide(); - skindows95advertisment.Hide(); - secretwebsite.Hide(); - padamshidden.Hide(); - email1.Hide(); - email2.Hide(); - email3.Hide(); - hotmailpadams.Hide(); - } - - private void google_LinkClicked(object sender, HtmlElementEventArgs e) + public static async void GoToPage(string url) { - goToSite("www.google.com", false); - } - - private void padams_LinkClicked(object sender, HtmlElementEventArgs e) - { - goToSite("www.12padams.com", false); - } + UserControl uc = new UserControl(); - private void googleprototypelink_LinkClicked(object sender, HtmlElementEventArgs e) - { - goToSite("www.google.stanford.edu", false); - } - - private void googlebetalink_LinkClicked(object sender, HtmlElementEventArgs e) - { - goToSite("www.alpha.google.com", false); - } - - private void Label20_Click(object sender, EventArgs e) - { - hidePrograms(); - padamshidden.Dock = DockStyle.Fill; - padamshidden.Show(); - } - - private void Button12_Click(object sender, EventArgs e) - { - - } - - private void Button9_Click(object sender, EventArgs e) - { - goToSite("www.???.com", false); - } - - - private void ToolStripMenuItem21_Click(object sender, EventArgs e) - { - ((Form)this.TopLevelControl).Close(); - } - - private void goToSite(string url, bool back) - { - webBrowser1.DocumentText = ""; switch (url) { + case "www.microsoft.com/windows/ie/default.htm": + uc = new IE4Start(); + break; case "www.google.com": - hidePrograms(); - webBrowser1.DocumentText = resources.GetString("google_HTML"); + uc = new GoogleHome(); break; case "www.google.stanford.edu": - hidePrograms(); - webBrowser1.DocumentText = resources.GetString("prototype_HTML"); - break; - case "www.alpha.google.com": - hidePrograms(); - googlealpha.Dock = DockStyle.Fill; - googlealpha.Show(); - break; - case "www.12padams.com": - hidePrograms(); - Story.Hack1.StartObjective(); - webBrowser1.DocumentText = resources.GetString("padams_HTML"); - break; - case "www.microsoft.com/internetexplorer4/welcome": - hidePrograms(); - webBrowser1.DocumentText = resources.GetString("ie4start_HTML"); - break; - case "www.???.com": - hidePrograms(); - secretwebsite.Dock = DockStyle.Fill; - secretwebsite.Show(); - break; - case "www.12padams.com/???": - hidePrograms(); - padamshidden.Dock = DockStyle.Fill; - padamshidden.Show(); + uc = new GooglePrototype(); break; default: - return; - } - - if (!back) - { - if (historylocation >= 98) historylocation = 79; - for (int i = historylocation + 1; i < browsinghistory.Count; i++) - { - browsinghistory[i] = null; - } - int j = 0; - for (int i = 1; i < browsinghistory.Count; i++) - { - if (browsinghistory[i] != null && browsinghistory[i] != "") j++; - } - historylocation = j; - browsinghistory[historylocation + 1] = url; - historylocation++; + uc = new IE4NoPage(); + break; } addressbar.Text = url; - currentsite = webBrowser1.Document; - } + uc.Dock = DockStyle.Fill; - private void BackButton_Click(object sender, EventArgs e) - { - if (!(historylocation <= 0)) - { - goToSite(browsinghistory[historylocation - 1], true); - historylocation--; - } - } + await Task.Delay(new Random().Next(500, 1500)); - private void ForwardButton_Click(object sender, EventArgs e) - { - if(browsinghistory[historylocation+1] != null) goToSite(browsinghistory[historylocation + 1], false); + browsingArea.Controls.Clear(); + browsingArea.Controls.Add(uc); } - private void HomeButton_Click(object sender, EventArgs e) + private void TempIE4_Load(object sender, EventArgs e) { - goToSite("www.microsoft.com/internetexplorer4/welcome", false); + GoToPage("www.microsoft.com/windows/ie/default.htm"); + GoButton.Paint += (s, args) => Engine.Paintbrush.PaintClassicBorders(s, args, 2); } - private void WCDownloadButton_Click(object sender, HtmlElementEventArgs e) - { - WinClassicDownloader opendownload = new WinClassicDownloader(); - WindowManager wm = new WindowManager(); - wm.StartWin95(opendownload, "Downloader", null, false, true); - opendownload.appName.Text = "Downloading: Web Chat"; - } - private void GoButton_Click(object sender, EventArgs e) { - goToSite(addressbar.Text, false); - } - - private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e) - { - loadplz.Start(); + GoToPage(addressbar.Text); } - private void loadplz_Tick(object sender, EventArgs e) + private void _addressbar_KeyDown(object sender, KeyEventArgs e) { - try + if (e.KeyCode == Keys.Enter) { - Debug.Print(webBrowser1.Document.Title); - switch (webBrowser1.Document.Title) - { - case "IE4START": - webBrowser1.Document.GetElementById("google").Click += new HtmlElementEventHandler(google_LinkClicked); - webBrowser1.Document.GetElementById("padams").Click += new HtmlElementEventHandler(padams_LinkClicked); - break; - case "12PADAMS": - webBrowser1.Document.GetElementById("wc_b").Click += new HtmlElementEventHandler(WCDownloadButton_Click); - webBrowser1.Document.GetElementById("ftp_b").Click += new HtmlElementEventHandler(FTPDownloadButton_Click); - if (!TitleScreen.frm95.HiddenPadamsFound) webBrowser1.Document.GetElementById("distort").Style += "visibility:hidden;"; - break; - case "GOOGLE": - webBrowser1.Document.GetElementById("prototype").Click += new HtmlElementEventHandler(googleprototypelink_LinkClicked); - webBrowser1.Document.GetElementById("alpha").Click += new HtmlElementEventHandler(googlebetalink_LinkClicked); - break; - } - loadplz.Stop(); - } - catch - { - + GoButton_Click(this, new EventArgs()); + e.SuppressKeyPress = true; + browsingArea.Focus(); } } - - private void FTPDownloadButton_Click(object sender, HtmlElementEventArgs e) - { - WinClassicDownloader opendownload = new WinClassicDownloader(); - WindowManager wm = new WindowManager(); - wm.StartWin95(opendownload, "Downloader", null, false, true); - opendownload.appName.Text = "Downloading: FTP Client"; - } - - //TODO: Add more websites - //TODO: Relabel Buttons And Things } } diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.resx b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.resx index f508cca..5039d37 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.resx +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.resx @@ -117,300 +117,7 @@ <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 pleasant 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> - <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> - <data name="MenuStrip3.TrayLocation" type="System.Drawing.Point, System.Drawing"> + <metadata name="MenuStrip3.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> <value>17, 17</value> - </data> - <assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" /> - <data name="ie4start" type="System.Resources.ResXFileRef, System.Windows.Forms"> - <value>..\..\..\resources\ie4\ie4start.html;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value> - </data> - <data name="ie4start_HTML" xml:space="preserve"> - <value><html> - <head> - <title>IE4START</title> - <style> - body { - font-family: "Microsoft Sans Serif"; - text-align: center; - } - h1 { - margin-top: 19px; - font-size: 14.25pt; - font-style: bold; - } - p { - font-size: 11.25pt; - } - h2 { - font-size: 12pt; - font-style: bold; - margin-top: 50px; - } - p.end { - font-size: 9.75pt; - } - a { - color: blue; - text-decoration: underline; - cursor: pointer; - } - </style> - </head> - <body> - <h1>Welcome to Internet Explorer 4</h1> - <p>Welcome To Internet Explorer 4.<br> -Internet Explorer 4 makes browsing the web and exploring websites a pleasant experience.<br> -Just type an address in the location bar above and then press go.<br> -Instantly you will be taken to the webpage of your choosing.<br> -Where do you want to go today?</p> - <h2>Here are some sites you may want to visit.</h2> - <a id="google">www.google.com</a><br> - <a id="padams">www.12padams.com</a> - <p class="end">Where do you want to go today?</p> - </body> -</html></value> - </data> - <data name="padams" type="System.Resources.ResXFileRef, System.Windows.Forms"> - <value>..\..\..\resources\ie4\padams.html;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252</value> - </data> - <data name="padams_HTML" xml:space="preserve"> - <value><html> - <head> - <title>12PADAMS</title> - <style> - body { - font-family: "Microsoft Sans Serif"; - text-align: center; - } - h1 { - font-size: 9.75pt; - margin-top: 20px; - } - p { - font-size: 9.25pt; - margin-top: 0; - margin-bottom: 25px; - } - td div { - display: inline-block; - border: 1px solid black; - width: 215px; - height: 305px; - margin: 0 3px 0 3px; - text-align: center; - } - h1#copyright { - font-size: 9pt; - } - p.app { - margin-top: 30px; - } - p.app button { - float: right; - background-color: silver; - border-color: white black black white; - margin-right: 2px; - } - a { - font-size: 9.25pt; - color: blue; - } - </style> - </head> - <body> - <h1>Welcome to the Official 12padams website!!!</h1> - <p>The best customizations for your windows 95 computer</p> - <table align="center"> - <tr> - <td><div class="software"> - <h1>Games/Software</h1> - <p class="app" id="gtn">Guess the Number V1 <button id="gtn_b">Download</button></p> - <p class="app" id="wc">Web Chat 1998 <button id="wc_b">Download</button></p> - <p class="app" id="ftp">FTP Client <button id="ftp_b">Download</button></p> - <p class="app" id="distort">Time Distorter 0.1 <button id="distort_b">Download</button></p> - </div></td> - <td><div class="customize"> - <h1>Customizations</h1> - <p class="app" id="bg">Backgrounds <button id="bg_b">View Backgrounds</button></p> - <p class="app" id="skn">Skindows 95 <button id="skn_b">Info</button></p> - </div></td> - <td><div class="viruses"> - <h1>Example Viruses</h1> - <p class="app" id="sr">Start Runner 95 <button id="sr_b">Download</button></p> - <p class="app" id="eb">Error Blaster 95 <button id="eb_b">Download</button></p> - </div></td> - <td><div class="sites"> - <h1>Changelog</h1> - <p class="app">1996: 12padams.com created</p> - <p class="app">1997: Software added to the site</p> - <p class="app">1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝d̻̻̪̙͖̬͈͟͝e͠҉̨̧҉̯̙̹̝̟̺̰͖̹̞̻̝̖̪͉͍͇̬#҉̵̻̜͇̻̹͈̀͟ ̨̡̘͓͔̜̭̫͖͔̰̦̘̀#̛͓̬̭̦̹̙̭͕̕#̧͢͠͏̖̙͚͉͇̣̜̖ͅ#̜̝͚͓̳̘̭̣̲̟̤̖͇̬̠̯̠̀͠ ̢͚̲̞̯͎͙̪̗̜̹͙͓͉͢ͅ#̡͙̻̫̝̪͙͚̺̝͓̘̬̬͙͔̀̕͠#̴҉͖̲̺̱͖͈̭̭ͅ#̸̸̷̼̫̪̖̻̻͈̭̬͓̘͓̦̟̻̪͇̞̕#̸̢̨̻̗̣̠̥̖̜̜̖̺͍̝̗͓̦̳̫#̛͡҉̭̝̙̟̘̩̬͖͎̘̞̭̖͔̪̼̠͢ͅ#̰̜̭̹̻̖̬̺͘͡#̛̬̣̳͔͔̘̟͜͢͟͡#̷̨̼̺̤̥̞́͢͡ ̢̞̬͙͍̬̪̪̰̰̰̙̮͙͚͕̩̟͇̕͜ͅ#̶͙̣̣̦͈͈̫̕͡#̸̡̥̹̮͇̱̱͍͜͜͢#̵̢̧̦͙̮̮͔͖̞̮͚͞#̧̗̤̱̪̜͓̠͖̞̰͍͢#̧̱̳̻̖̝͇͜͞#̛́҉͍̩̞̬͔̬̪̻̯̩#̷̴̨̙͚̹̘̜̗͔̺͖̳̕͜#̶̬͖͙̠̜̲̱̲͙̻̙̩̹̳̪̠̖́̕͟͞ͅ</p> - </div></td> - </tr> - </table> - <h1 id="copyright">Copyright 1998 12padams</h1> - </body> -</html></value> - </data> - <data name="google_HTML" xml:space="preserve"> - <value><html> - <head> - <meta charset="utf-8" /> - <title>GOOGLE</title> - <style> - a { - color: blue; - text-decoration: underline; - cursor: pointer; - } - </style> - </head> - <body> - <h1>Welcome to Google</h1> - <a id="prototype">Google Search Engine Prototype</a> - <br /> - <a id="alpha">Might-work-some-of-the-time-prototype that is much more up to date.</a> - </body> -</html></value> - </data> - <data name="prototype_HTML" xml:space="preserve"> - <value><html> - <head> - <meta charset="utf-8" /> - <title>PROTOTYPE</title> - <style> - a { - color: blue; - text-decoration: underline; - cursor: pointer; - } - </style> - </head> - <body bgcolor="#FFFFFF"> - <center> - <img src="file:///C:/TimeHackData/Data/google.jpg" width="351" height="113"><br> - <table border="0" cellspacing="0" cellpadding="5" width="70%"> - <tr> - <td bgcolor="#EEEEEE"> - <center> - Search the web using Google!<br> - <input type="text" name="query" value="" size="40"><br> - <select name="num"> - <option value="10" selected>10 results - <option value="30">30 results - <option value="100">100 results - </select> - <button id="search">Google Search</button> - <button id="lucky">I'm feeling lucky</button> <br> - <i>Index contains ~25 million pages (soon to be much bigger)</i> - </center> - </td> - </tr> - <tr> - <td> - <center> - <h2><a>About Google!</a></h2> - <a> - Stanford - Search - </a> <a>Linux Search</a> - </center> - </td> - </tr> - <tr align="LEFT"> - <td valign="CENTER" bgcolor="#EEEEEE" width="100%"> - <center>Get Google! updates monthly!</center> - </td> - </tr> - - <tr align="LEFT"> - <td bgcolor="#EEEEEE"> - <center> - <input type="text" name="emailaddr" value="your e-mail" size="18"> - <input type="submit" name="SubmitAction" value="Subscribe"><font size="-1">&nbsp;&nbsp;<a>Archive</a></font> - </center> - </td> - </tr> - </table> - </center> - - <center><font size="-1">Copyright &copy;1997-8 Stanford University</font></center> - - </body> -</html></value> - </data> + </metadata> </root>
\ No newline at end of file diff --git a/TimeHACK.Main/OS/Win98/Win98.cs b/TimeHACK.Main/OS/Win98/Win98.cs index 117f447..422d688 100644 --- a/TimeHACK.Main/OS/Win98/Win98.cs +++ b/TimeHACK.Main/OS/Win98/Win98.cs @@ -476,13 +476,6 @@ namespace TimeHACK.OS.Win98 startmenu.Hide(); } - private void iE4TestToolStripMenuItem_Click(object sender, EventArgs e) - { - WinClassic app = wm.StartWin95(new TempIE4(), "IE4", null, true, true); - app.BringToFront(); - startmenu.Hide(); - } - private void CalculatorToolStripMenuItem_Click(object sender, EventArgs e) { WinClassic app = wm.StartWin95(new WinClassicCalculator(), "Calculator", Properties.Resources.WinClassicCalc, false, false); diff --git a/TimeHACK.Main/Properties/Resources.Designer.cs b/TimeHACK.Main/Properties/Resources.Designer.cs index 74a012e..d69258f 100644 --- a/TimeHACK.Main/Properties/Resources.Designer.cs +++ b/TimeHACK.Main/Properties/Resources.Designer.cs @@ -1294,6 +1294,16 @@ namespace TimeHACK.Properties { /// <summary> /// Looks up a localized resource of type System.Drawing.Bitmap. /// </summary> + internal static System.Drawing.Bitmap WinClassicNotepadBig { + get { + object obj = ResourceManager.GetObject("WinClassicNotepadBig", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> internal static System.Drawing.Bitmap WinClassicOpenFolderSmall { get { object obj = ResourceManager.GetObject("WinClassicOpenFolderSmall", resourceCulture); @@ -1354,6 +1364,16 @@ namespace TimeHACK.Properties { /// <summary> /// Looks up a localized resource of type System.Drawing.Bitmap. /// </summary> + internal static System.Drawing.Bitmap WinClassicRegedit { + get { + object obj = ResourceManager.GetObject("WinClassicRegedit", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// <summary> + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// </summary> internal static System.Drawing.Bitmap WinClassicRun { get { object obj = ResourceManager.GetObject("WinClassicRun", resourceCulture); diff --git a/TimeHACK.Main/Properties/Resources.resx b/TimeHACK.Main/Properties/Resources.resx index f6182d6..d40c04e 100644 --- a/TimeHACK.Main/Properties/Resources.resx +++ b/TimeHACK.Main/Properties/Resources.resx @@ -699,4 +699,10 @@ <data name="WinClassicCalcBig" type="System.Resources.ResXFileRef, System.Windows.Forms"> <value>..\Resources\WinClassic\WinClassicCalcBig.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> </data> + <data name="WinClassicNotepadBig" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\WinClassic\WinClassicNotepadBig.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> + <data name="WinClassicRegedit" type="System.Resources.ResXFileRef, System.Windows.Forms"> + <value>..\Resources\WinClassic\WinClassicRegedit.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value> + </data> </root>
\ No newline at end of file diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicNotepadBig.png b/TimeHACK.Main/Resources/WinClassic/WinClassicNotepadBig.png Binary files differnew file mode 100644 index 0000000..394fce2 --- /dev/null +++ b/TimeHACK.Main/Resources/WinClassic/WinClassicNotepadBig.png diff --git a/TimeHACK.Main/Resources/WinClassic/WinClassicRegedit.png b/TimeHACK.Main/Resources/WinClassic/WinClassicRegedit.png Binary files differnew file mode 100644 index 0000000..045e4ec --- /dev/null +++ b/TimeHACK.Main/Resources/WinClassic/WinClassicRegedit.png diff --git a/TimeHACK.Main/TimeHACK.Main.csproj b/TimeHACK.Main/TimeHACK.Main.csproj index fe23577..585d87f 100644 --- a/TimeHACK.Main/TimeHACK.Main.csproj +++ b/TimeHACK.Main/TimeHACK.Main.csproj @@ -172,11 +172,11 @@ <Compile Include="OS\Win95\Win95Apps\MineSweeper\Square.cs" /> <Compile Include="OS\Win95\Win95Apps\Story\Hack1.cs" /> <Compile Include="OS\Win95\Win95Apps\Story\Hack2.cs" /> - <Compile Include="OS\Win95\Win95Apps\TempIE4.cs"> + <Compile Include="OS\Win95\Win95Apps\WinClassicIE4.cs"> <SubType>UserControl</SubType> </Compile> - <Compile Include="OS\Win95\Win95Apps\TempIE4.Designer.cs"> - <DependentUpon>TempIE4.cs</DependentUpon> + <Compile Include="OS\Win95\Win95Apps\WinClassicIE4.Designer.cs"> + <DependentUpon>WinClassicIE4.cs</DependentUpon> </Compile> <Compile Include="OS\Win95\Win95Apps\Win95Installer.cs"> <SubType>UserControl</SubType> @@ -298,12 +298,6 @@ <Compile Include="GlobalPrograms\WinClassicDownloader.Designer.cs"> <DependentUpon>WinClassicDownloader.cs</DependentUpon> </Compile> - <Compile Include="OS\Win95\Win95Apps\WinClassicIE4.cs"> - <SubType>UserControl</SubType> - </Compile> - <Compile Include="OS\Win95\Win95Apps\WinClassicIE4.Designer.cs"> - <DependentUpon>WinClassicIE4.cs</DependentUpon> - </Compile> <Compile Include="OS\Win95\Win95Apps\WinClassicNotepad.cs"> <SubType>UserControl</SubType> </Compile> @@ -372,8 +366,8 @@ <EmbeddedResource Include="OS\Win95\Win95Apps\MineSweeper\MineBestTimes.resx"> <DependentUpon>MineBestTimes.cs</DependentUpon> </EmbeddedResource> - <EmbeddedResource Include="OS\Win95\Win95Apps\TempIE4.resx"> - <DependentUpon>TempIE4.cs</DependentUpon> + <EmbeddedResource Include="OS\Win95\Win95Apps\WinClassicIE4.resx"> + <DependentUpon>WinClassicIE4.cs</DependentUpon> </EmbeddedResource> <EmbeddedResource Include="OS\Win95\Win95Apps\Win95Installer.resx"> <DependentUpon>Win95Installer.cs</DependentUpon> @@ -444,9 +438,6 @@ <EmbeddedResource Include="GlobalPrograms\WinClassicDownloader.resx"> <DependentUpon>WinClassicDownloader.cs</DependentUpon> </EmbeddedResource> - <EmbeddedResource Include="OS\Win95\Win95Apps\WinClassicIE4.resx"> - <DependentUpon>WinClassicIE4.cs</DependentUpon> - </EmbeddedResource> <EmbeddedResource Include="OS\Win95\Win95Apps\WinClassicNotepad.resx"> <DependentUpon>WinClassicNotepad.cs</DependentUpon> </EmbeddedResource> @@ -631,11 +622,13 @@ <None Include="Resources\WinClassic\WinClassicNotepad.png" /> <None Include="Resources\WinClassic\WinClassicNew.png" /> <None Include="Resources\WinClassic\WinClassicOpenFolderSmall.png" /> + <None Include="Resources\WinClassic\WinClassicNotepadBig.png" /> <Content Include="Resources\WinClassic\WinClassicOutlook.png" /> <None Include="Resources\WinClassic\WinClassicPaste.png" /> <Content Include="Resources\WinClassic\WinClassicProgramItem.png" /> <Content Include="Resources\WinClassic\WinClassicPrograms.png" /> <Content Include="Resources\WinClassic\WinClassicRecycle.png" /> + <None Include="Resources\WinClassic\WinClassicRegedit.png" /> <Content Include="Resources\WinClassic\WinClassicRun.png" /> <Content Include="Resources\WinClassic\WinClassicSettings.png" /> <None Include="Resources\WinClassic\WinClassicSetup.png" /> diff --git a/TimeHACK.Main/TitleScreen.cs b/TimeHACK.Main/TitleScreen.cs index 6ee2ef1..90cd0af 100644 --- a/TimeHACK.Main/TitleScreen.cs +++ b/TimeHACK.Main/TitleScreen.cs @@ -56,10 +56,7 @@ namespace TimeHACK public void StartGame() { //TODO: You may want to handle story stuff to decide what OS to boot here. - if (Convert.ToInt32(VM_Width.Text) == 1337 && Convert.ToInt32(VM_Height.Text) == 1337) - { - leet(); - } + if (Convert.ToInt32(VM_Width.Text) == 1337 && Convert.ToInt32(VM_Height.Text) == 1337) leet(); else { // Time to decide which OS to start up! @@ -107,16 +104,6 @@ namespace TimeHACK } } - void closeButton(object sender, MouseEventArgs e) - { - Close(); - } - - private void closebutton_Click(object sender, EventArgs e) - { - Close(); - } - private void VM_WidthHeight_KeyPress(object sender, KeyPressEventArgs e) { if (!char.IsControl(e.KeyChar) && !char.IsDigit(e.KeyChar) && |
