diff options
Diffstat (limited to 'TimeHACK.Main/WinClassicForms')
11 files changed, 268 insertions, 587 deletions
diff --git a/TimeHACK.Main/WinClassicForms/WinClassicDownloader.Designer.cs b/TimeHACK.Main/WinClassicForms/WinClassicDownloader.Designer.cs index 20d218f..cd0b55c 100644 --- a/TimeHACK.Main/WinClassicForms/WinClassicDownloader.Designer.cs +++ b/TimeHACK.Main/WinClassicForms/WinClassicDownloader.Designer.cs @@ -35,6 +35,7 @@ this.locationLbl = new System.Windows.Forms.Label(); this.transferLbl = new System.Windows.Forms.Label(); this.dlTimer = new System.Windows.Forms.Timer(this.components); + this.dlSpeed = new System.Windows.Forms.Timer(this.components); this.SuspendLayout(); // // progBar @@ -88,6 +89,11 @@ this.dlTimer.Interval = 1000; this.dlTimer.Tick += new System.EventHandler(this.dlTimer_Tick); // + // dlSpeed + // + this.dlSpeed.Interval = 750; + this.dlSpeed.Tick += new System.EventHandler(this.dlSpeed_Tick); + // // WinClassicDownloader // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); @@ -113,5 +119,6 @@ internal System.Windows.Forms.Label locationLbl; internal System.Windows.Forms.Label transferLbl; private System.Windows.Forms.Timer dlTimer; + private System.Windows.Forms.Timer dlSpeed; } } diff --git a/TimeHACK.Main/WinClassicForms/WinClassicDownloader.cs b/TimeHACK.Main/WinClassicForms/WinClassicDownloader.cs index b5aa521..0e0c6fd 100644 --- a/TimeHACK.Main/WinClassicForms/WinClassicDownloader.cs +++ b/TimeHACK.Main/WinClassicForms/WinClassicDownloader.cs @@ -9,9 +9,20 @@ namespace TimeHACK.WinClassicForms public WinClassicDownloader() { InitializeComponent(); + + } + + private string DownloadSpeed(string str) + { + Random rnd = new Random(); + int dl1 = rnd.Next(7, 9); + int dl2 = rnd.Next(1, 9); + int dl3 = rnd.Next(1, 9); + string speed = dl1.ToString() + "." + dl2.ToString() + dl3.ToString(); + return speed; } + int amountToDL = 100; - int downloadSpeed = 8; int amountDLed = 0; Windows95 Windows95 = new Windows95(); @@ -19,13 +30,13 @@ namespace TimeHACK.WinClassicForms private void WinClassicDownloader_Load(object sender, EventArgs e) { dlTimer.Start(); - transferLbl.Text = ("Transfer speed: " + downloadSpeed + " KB/s"); + dlSpeed.Start(); } private void dlTimer_Tick(object sender, EventArgs e) { - amountDLed = amountDLed + downloadSpeed; - if(downloadSpeed > amountToDL - amountDLed){ + amountDLed = amountDLed + 8; + if(8 > amountToDL - amountDLed){ progBar.Value = 100; amountLbl.Text = ("Downloaded " + amountDLed + " KB out of " + amountToDL + " KB"); @@ -51,7 +62,7 @@ namespace TimeHACK.WinClassicForms } if (appName.Text == "Downloading: hwcv.exe") { - Windows95.desktopicons.Items.Add("hwcv.exe", imageIndex: 11); + Windows95.desktopicons.Items.Add("hwcv.exe", imageIndex: 14); } if (appName.Text == "Downloading: Time Distorter") { @@ -67,5 +78,10 @@ namespace TimeHACK.WinClassicForms } amountLbl.Text = ("Downloaded " + amountDLed + " KB out of " + amountToDL); } + + private void dlSpeed_Tick(object sender, EventArgs e) + { + transferLbl.Text = ("Transfer speed: " + DownloadSpeed("") + " KB/s"); + } } } diff --git a/TimeHACK.Main/WinClassicForms/WinClassicDownloader.resx b/TimeHACK.Main/WinClassicForms/WinClassicDownloader.resx index e5280c3..daf1933 100644 --- a/TimeHACK.Main/WinClassicForms/WinClassicDownloader.resx +++ b/TimeHACK.Main/WinClassicForms/WinClassicDownloader.resx @@ -120,4 +120,7 @@ <metadata name="dlTimer.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> <value>17, 17</value> </metadata> + <metadata name="dlSpeed.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> + <value>110, 17</value> + </metadata> </root>
\ No newline at end of file diff --git a/TimeHACK.Main/WinClassicForms/WinClassicIE4.Designer.cs b/TimeHACK.Main/WinClassicForms/WinClassicIE4.Designer.cs index 288ed7b..1445e04 100644 --- a/TimeHACK.Main/WinClassicForms/WinClassicIE4.Designer.cs +++ b/TimeHACK.Main/WinClassicForms/WinClassicIE4.Designer.cs @@ -1,4 +1,4 @@ -namespace TimeHACK +namespace TimeHACK.WinClassicForms { partial class WinClassicIE4 { @@ -176,7 +176,6 @@ this.Label40 = new System.Windows.Forms.Label(); this.Label39 = new System.Windows.Forms.Label(); this.googlemain = new System.Windows.Forms.Panel(); - this.linkLabel19 = new System.Windows.Forms.LinkLabel(); this.googlebetalink = new System.Windows.Forms.LinkLabel(); this.googleprototypelink = new System.Windows.Forms.LinkLabel(); this.Label6 = new System.Windows.Forms.Label(); @@ -632,6 +631,7 @@ this.Button25.TabIndex = 6; this.Button25.Text = "Download"; this.Button25.UseVisualStyleBackColor = false; + this.Button25.Click += new System.EventHandler(this.Button25_Click); // // Label43 // @@ -720,7 +720,7 @@ this.Panel13.Controls.Add(this.win95background); this.Panel13.Location = new System.Drawing.Point(46, 74); this.Panel13.Name = "Panel13"; - this.Panel13.Size = new System.Drawing.Size(6956, 118); + this.Panel13.Size = new System.Drawing.Size(7358, 118); this.Panel13.TabIndex = 2; // // Previewimage @@ -731,7 +731,7 @@ this.Previewimage.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.Previewimage.Location = new System.Drawing.Point(246, 6); this.Previewimage.Name = "Previewimage"; - this.Previewimage.Size = new System.Drawing.Size(5539, 118); + 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; @@ -886,7 +886,7 @@ this.Label31.ForeColor = System.Drawing.Color.White; this.Label31.Location = new System.Drawing.Point(513, 259); this.Label31.Name = "Label31"; - this.Label31.Size = new System.Drawing.Size(111, 15); + this.Label31.Size = new System.Drawing.Size(113, 15); this.Label31.TabIndex = 19; this.Label31.Text = "Privacy Statement"; // @@ -897,7 +897,7 @@ this.Label30.ForeColor = System.Drawing.Color.White; this.Label30.Location = new System.Drawing.Point(513, 234); this.Label30.Name = "Label30"; - this.Label30.Size = new System.Drawing.Size(77, 15); + this.Label30.Size = new System.Drawing.Size(79, 15); this.Label30.TabIndex = 18; this.Label30.Text = "Email Safety"; // @@ -908,7 +908,7 @@ this.Label29.ForeColor = System.Drawing.Color.White; this.Label29.Location = new System.Drawing.Point(513, 207); this.Label29.Name = "Label29"; - this.Label29.Size = new System.Drawing.Size(86, 15); + this.Label29.Size = new System.Drawing.Size(88, 15); this.Label29.TabIndex = 17; this.Label29.Text = "About Hotmail"; // @@ -955,7 +955,7 @@ this.Label27.ForeColor = System.Drawing.Color.White; this.Label27.Location = new System.Drawing.Point(258, 140); this.Label27.Name = "Label27"; - this.Label27.Size = new System.Drawing.Size(139, 15); + this.Label27.Size = new System.Drawing.Size(142, 15); this.Label27.TabIndex = 12; this.Label27.Text = "Forgot Your Password?"; // @@ -1048,7 +1048,7 @@ this.Label25.ForeColor = System.Drawing.Color.White; this.Label25.Location = new System.Drawing.Point(232, 59); this.Label25.Name = "Label25"; - this.Label25.Size = new System.Drawing.Size(74, 15); + this.Label25.Size = new System.Drawing.Size(75, 15); this.Label25.TabIndex = 3; this.Label25.Text = "Login Name"; // @@ -1121,48 +1121,52 @@ // Label58 // this.Label58.Anchor = System.Windows.Forms.AnchorStyles.Top; - this.Label58.AutoSize = true; + 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(-142, 45); + this.Label58.Location = new System.Drawing.Point(0, 45); this.Label58.Name = "Label58"; - this.Label58.Size = new System.Drawing.Size(199, 16); + 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 = true; - this.LinkLabel16.Location = new System.Drawing.Point(-87, 317); + this.LinkLabel16.AutoSize = false; + this.LinkLabel16.Location = new System.Drawing.Point(0, 317); this.LinkLabel16.Name = "LinkLabel16"; - this.LinkLabel16.Size = new System.Drawing.Size(106, 13); + 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; this.LinkLabel16.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.LinkLabel16_LinkClicked); // // LinkLabel15 // this.LinkLabel15.Anchor = System.Windows.Forms.AnchorStyles.Top; - this.LinkLabel15.AutoSize = true; - this.LinkLabel15.Location = new System.Drawing.Point(-80, 298); + this.LinkLabel15.AutoSize = false; + this.LinkLabel15.Location = new System.Drawing.Point(0, 298); this.LinkLabel15.Name = "LinkLabel15"; - this.LinkLabel15.Size = new System.Drawing.Size(89, 13); + 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; this.LinkLabel15.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.LinkLabel15_LinkClicked); // // Label3 // this.Label3.Anchor = System.Windows.Forms.AnchorStyles.Top; - this.Label3.AutoSize = true; + 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(-202, 258); + this.Label3.Location = new System.Drawing.Point(0, 258); this.Label3.Name = "Label3"; - this.Label3.Size = new System.Drawing.Size(342, 20); + 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 // @@ -1170,11 +1174,11 @@ 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(-238, 98); + 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(428, 130); + 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; @@ -1182,13 +1186,14 @@ // Label2 // this.Label2.Anchor = System.Windows.Forms.AnchorStyles.Top; - this.Label2.AutoSize = true; + 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(-189, 19); + this.Label2.Location = new System.Drawing.Point(0, 19); this.Label2.Name = "Label2"; - this.Label2.Size = new System.Drawing.Size(308, 24); + 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 // @@ -1869,7 +1874,7 @@ this.Label42.Anchor = System.Windows.Forms.AnchorStyles.Top; this.Label42.AutoSize = true; this.Label42.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.Label42.Location = new System.Drawing.Point(1057, 9); + 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; @@ -1880,7 +1885,7 @@ this.Label41.Anchor = System.Windows.Forms.AnchorStyles.Top; this.Label41.AutoSize = true; this.Label41.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.Label41.Location = new System.Drawing.Point(1157, 33); + 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; @@ -1895,14 +1900,14 @@ this.TextBox8.Multiline = true; this.TextBox8.Name = "TextBox8"; this.TextBox8.ReadOnly = true; - this.TextBox8.Size = new System.Drawing.Size(172, 5925); + 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(1027, 60); + 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; @@ -1935,7 +1940,6 @@ // googlemain // this.googlemain.AutoScroll = true; - this.googlemain.Controls.Add(this.linkLabel19); this.googlemain.Controls.Add(this.googlebetalink); this.googlemain.Controls.Add(this.googleprototypelink); this.googlemain.Controls.Add(this.Label6); @@ -1944,18 +1948,6 @@ this.googlemain.Size = new System.Drawing.Size(38, 38); this.googlemain.TabIndex = 1; // - // linkLabel19 - // - this.linkLabel19.AutoSize = true; - this.linkLabel19.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.linkLabel19.Location = new System.Drawing.Point(17, 101); - this.linkLabel19.Name = "linkLabel19"; - this.linkLabel19.Size = new System.Drawing.Size(180, 16); - this.linkLabel19.TabIndex = 3; - this.linkLabel19.TabStop = true; - this.linkLabel19.Text = "Browse the World Wide Web"; - this.linkLabel19.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel19_LinkClicked); - // // googlebetalink // this.googlebetalink.AutoSize = true; @@ -2350,6 +2342,7 @@ this.Button5.Text = "Home"; this.Button5.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; this.Button5.UseVisualStyleBackColor = true; + this.Button5.Click += new System.EventHandler(this.Button5_Click); // // Button4 // @@ -2389,6 +2382,7 @@ this.Button2.Text = "Forward"; this.Button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; this.Button2.UseVisualStyleBackColor = true; + this.Button2.Click += new System.EventHandler(this.Button2_Click); // // Button1 // @@ -2402,6 +2396,7 @@ this.Button1.Text = "Back"; this.Button1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText; this.Button1.UseVisualStyleBackColor = true; + this.Button1.Click += new System.EventHandler(this.Button1_Click); // // PictureBox1 // @@ -2444,7 +2439,7 @@ this.ToolStripMenuItem20, this.ToolStripMenuItem21}); this.ToolStripMenuItem1.Name = "ToolStripMenuItem1"; - this.ToolStripMenuItem1.Size = new System.Drawing.Size(37, 20); + this.ToolStripMenuItem1.Size = new System.Drawing.Size(40, 20); this.ToolStripMenuItem1.Text = "File"; // // ToolStripMenuItem2 @@ -2457,84 +2452,84 @@ this.ToolStripMenuItem6, this.ToolStripMenuItem7}); this.ToolStripMenuItem2.Name = "ToolStripMenuItem2"; - this.ToolStripMenuItem2.Size = new System.Drawing.Size(221, 22); + this.ToolStripMenuItem2.Size = new System.Drawing.Size(239, 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.Size = new System.Drawing.Size(181, 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.Size = new System.Drawing.Size(181, 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.Size = new System.Drawing.Size(181, 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.Size = new System.Drawing.Size(181, 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.Size = new System.Drawing.Size(181, 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.Size = new System.Drawing.Size(239, 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.Size = new System.Drawing.Size(239, 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.Size = new System.Drawing.Size(239, 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.Size = new System.Drawing.Size(239, 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.Size = new System.Drawing.Size(239, 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.Size = new System.Drawing.Size(239, 22); this.ToolStripMenuItem13.Text = "Print..."; // // ToolStripMenuItem14 @@ -2545,57 +2540,58 @@ this.ToolStripMenuItem16, this.ToolStripMenuItem17}); this.ToolStripMenuItem14.Name = "ToolStripMenuItem14"; - this.ToolStripMenuItem14.Size = new System.Drawing.Size(221, 22); + this.ToolStripMenuItem14.Size = new System.Drawing.Size(239, 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.Size = new System.Drawing.Size(198, 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.Size = new System.Drawing.Size(198, 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.Size = new System.Drawing.Size(198, 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.Size = new System.Drawing.Size(239, 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.Size = new System.Drawing.Size(239, 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.Size = new System.Drawing.Size(239, 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.Size = new System.Drawing.Size(239, 22); this.ToolStripMenuItem21.Text = "Close"; + this.ToolStripMenuItem21.Click += new System.EventHandler(this.ToolStripMenuItem21_Click); // // ToolStripMenuItem22 // @@ -2606,42 +2602,42 @@ this.ToolStripMenuItem26, this.ToolStripMenuItem27}); this.ToolStripMenuItem22.Name = "ToolStripMenuItem22"; - this.ToolStripMenuItem22.Size = new System.Drawing.Size(39, 20); + this.ToolStripMenuItem22.Size = new System.Drawing.Size(43, 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.Size = new System.Drawing.Size(237, 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.Size = new System.Drawing.Size(237, 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.Size = new System.Drawing.Size(237, 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.Size = new System.Drawing.Size(237, 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.Size = new System.Drawing.Size(237, 22); this.ToolStripMenuItem27.Text = "Find (on This Page)... Ctrl+F"; // // ToolStripMenuItem28 @@ -2658,7 +2654,7 @@ this.ToolStripMenuItem71, this.ToolStripMenuItem72}); this.ToolStripMenuItem28.Name = "ToolStripMenuItem28"; - this.ToolStripMenuItem28.Size = new System.Drawing.Size(44, 20); + this.ToolStripMenuItem28.Size = new System.Drawing.Size(47, 20); this.ToolStripMenuItem28.Text = "View"; // // ToolStripMenuItem29 @@ -2671,49 +2667,49 @@ this.ToolStripMenuItem33, this.ToolStripMenuItem34}); this.ToolStripMenuItem29.Name = "ToolStripMenuItem29"; - this.ToolStripMenuItem29.Size = new System.Drawing.Size(166, 22); + this.ToolStripMenuItem29.Size = new System.Drawing.Size(180, 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.Size = new System.Drawing.Size(183, 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.Size = new System.Drawing.Size(183, 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.Size = new System.Drawing.Size(183, 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.Size = new System.Drawing.Size(183, 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.Size = new System.Drawing.Size(183, 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.Size = new System.Drawing.Size(180, 22); this.ToolStripMenuItem35.Text = "Status Bar"; // // ToolStripMenuItem36 @@ -2725,35 +2721,35 @@ this.ToolStripMenuItem39, this.ToolStripMenuItem40}); this.ToolStripMenuItem36.Name = "ToolStripMenuItem36"; - this.ToolStripMenuItem36.Size = new System.Drawing.Size(166, 22); + this.ToolStripMenuItem36.Size = new System.Drawing.Size(180, 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.Size = new System.Drawing.Size(193, 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.Size = new System.Drawing.Size(193, 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.Size = new System.Drawing.Size(193, 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.Size = new System.Drawing.Size(193, 22); this.ToolStripMenuItem40.Text = "Tip of the Day"; // // ToolStripMenuItem41 @@ -2762,28 +2758,28 @@ 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.Size = new System.Drawing.Size(180, 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.Size = new System.Drawing.Size(143, 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.Size = new System.Drawing.Size(180, 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.Size = new System.Drawing.Size(180, 22); this.ToolStripMenuItem44.Text = "Refresh F5"; // // ToolStripMenuItem45 @@ -2796,42 +2792,42 @@ this.ToolStripMenuItem49, this.ToolStripMenuItem50}); this.ToolStripMenuItem45.Name = "ToolStripMenuItem45"; - this.ToolStripMenuItem45.Size = new System.Drawing.Size(166, 22); + this.ToolStripMenuItem45.Size = new System.Drawing.Size(180, 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.Size = new System.Drawing.Size(126, 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.Size = new System.Drawing.Size(126, 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.Size = new System.Drawing.Size(126, 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.Size = new System.Drawing.Size(126, 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.Size = new System.Drawing.Size(126, 22); this.ToolStripMenuItem50.Text = "Smallest"; // // ToolStripMenuItem51 @@ -2842,21 +2838,21 @@ this.ToolStripMenuItem53, this.ToolStripMenuItem54}); this.ToolStripMenuItem51.Name = "ToolStripMenuItem51"; - this.ToolStripMenuItem51.Size = new System.Drawing.Size(166, 22); + this.ToolStripMenuItem51.Size = new System.Drawing.Size(180, 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.Size = new System.Drawing.Size(249, 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.Size = new System.Drawing.Size(249, 22); this.ToolStripMenuItem53.Text = "Western European (Windows)"; // // ToolStripMenuItem54 @@ -2880,133 +2876,133 @@ this.ToolStripMenuItem69, this.ToolStripMenuItem70}); this.ToolStripMenuItem54.Name = "ToolStripMenuItem54"; - this.ToolStripMenuItem54.Size = new System.Drawing.Size(230, 22); + this.ToolStripMenuItem54.Size = new System.Drawing.Size(249, 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.Size = new System.Drawing.Size(216, 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.Size = new System.Drawing.Size(216, 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.Size = new System.Drawing.Size(216, 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.Size = new System.Drawing.Size(216, 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.Size = new System.Drawing.Size(216, 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.Size = new System.Drawing.Size(216, 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.Size = new System.Drawing.Size(216, 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.Size = new System.Drawing.Size(216, 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.Size = new System.Drawing.Size(216, 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.Size = new System.Drawing.Size(216, 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.Size = new System.Drawing.Size(216, 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.Size = new System.Drawing.Size(216, 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.Size = new System.Drawing.Size(216, 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.Size = new System.Drawing.Size(216, 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.Size = new System.Drawing.Size(216, 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.Size = new System.Drawing.Size(216, 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.Size = new System.Drawing.Size(180, 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.Size = new System.Drawing.Size(180, 22); this.ToolStripMenuItem72.Text = "Full Screen F11"; // // ToolStripMenuItem78 @@ -3017,7 +3013,7 @@ this.ToolStripMenuItem86, this.ToolStripMenuItem87}); this.ToolStripMenuItem78.Name = "ToolStripMenuItem78"; - this.ToolStripMenuItem78.Size = new System.Drawing.Size(34, 20); + this.ToolStripMenuItem78.Size = new System.Drawing.Size(36, 20); this.ToolStripMenuItem78.Text = "Go"; // // ToolStripMenuItem79 @@ -3030,63 +3026,63 @@ this.ToolStripMenuItem83, this.ToolStripMenuItem84}); this.ToolStripMenuItem79.Name = "ToolStripMenuItem79"; - this.ToolStripMenuItem79.Size = new System.Drawing.Size(175, 22); + this.ToolStripMenuItem79.Size = new System.Drawing.Size(191, 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.Size = new System.Drawing.Size(165, 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.Size = new System.Drawing.Size(165, 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.Size = new System.Drawing.Size(165, 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.Size = new System.Drawing.Size(165, 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.Size = new System.Drawing.Size(165, 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.Size = new System.Drawing.Size(191, 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.Size = new System.Drawing.Size(191, 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.Size = new System.Drawing.Size(191, 22); this.ToolStripMenuItem87.Text = "Internet Options..."; // // ToolStripMenuItem73 @@ -3096,21 +3092,21 @@ this.ToolStripMenuItem75, this.ToolStripMenuItem76}); this.ToolStripMenuItem73.Name = "ToolStripMenuItem73"; - this.ToolStripMenuItem73.Size = new System.Drawing.Size(66, 20); + this.ToolStripMenuItem73.Size = new System.Drawing.Size(76, 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.Size = new System.Drawing.Size(197, 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.Size = new System.Drawing.Size(197, 22); this.ToolStripMenuItem75.Text = "Organize Favorites..."; // // ToolStripMenuItem76 @@ -3119,14 +3115,14 @@ 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.Size = new System.Drawing.Size(197, 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.Size = new System.Drawing.Size(111, 22); this.ToolStripMenuItem77.Text = "(none)"; // // ToolStripMenuItem88 @@ -3140,66 +3136,65 @@ this.ToolStripMenuItem94, this.ToolStripMenuItem95}); this.ToolStripMenuItem88.Name = "ToolStripMenuItem88"; - this.ToolStripMenuItem88.Size = new System.Drawing.Size(44, 20); + this.ToolStripMenuItem88.Size = new System.Drawing.Size(46, 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.Size = new System.Drawing.Size(217, 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.Size = new System.Drawing.Size(217, 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.Size = new System.Drawing.Size(217, 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.Size = new System.Drawing.Size(217, 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.Size = new System.Drawing.Size(217, 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.Size = new System.Drawing.Size(217, 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.Size = new System.Drawing.Size(217, 22); this.ToolStripMenuItem95.Text = "Send Feedback"; // // WinClassicIE4 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(959, 594); this.Controls.Add(this.program); this.Name = "WinClassicIE4"; - this.Text = "WinClassicIE4"; + this.Size = new System.Drawing.Size(959, 594); this.Load += new System.EventHandler(this.WinClassicIE4_Load); this.program.ResumeLayout(false); this.program.PerformLayout(); @@ -3564,6 +3559,5 @@ internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem94; internal System.Windows.Forms.ToolStripMenuItem ToolStripMenuItem95; private System.Windows.Forms.WebBrowser webBrowser1; - internal System.Windows.Forms.LinkLabel linkLabel19; } }
\ No newline at end of file diff --git a/TimeHACK.Main/WinClassicForms/WinClassicIE4.cs b/TimeHACK.Main/WinClassicForms/WinClassicIE4.cs index e819238..1f10c34 100644 --- a/TimeHACK.Main/WinClassicForms/WinClassicIE4.cs +++ b/TimeHACK.Main/WinClassicForms/WinClassicIE4.cs @@ -1,19 +1,28 @@ using System; +using System.Collections.Generic; +using System.Drawing; using System.Runtime.InteropServices; using System.Windows.Forms; +using TimeHACK.Engine; -namespace TimeHACK +namespace TimeHACK.WinClassicForms { public partial class WinClassicIE4 : UserControl { + public List<string> browsinghistory = new List<string>(); + public int historylocation = 0; + public WinClassicIE4() { InitializeComponent(); } 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); welcomeinternetscreen.Show(); welcomeinternetscreen.Dock = DockStyle.Fill; } @@ -39,39 +48,22 @@ namespace TimeHACK private void LinkLabel15_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { - hidePrograms(); - googlemain.Dock = DockStyle.Fill; - googlemain.Show(); - addressbar.Text = "www.google.com"; + goToSite("www.google.com", false); } private void LinkLabel16_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { - hidePrograms(); - padamsmain.Dock = DockStyle.Fill; - padamsmain.Show(); - addressbar.Text = "www.12padams.com"; - } - - private void closebutton_Click(object sender, EventArgs e) - { - ((Form)this.TopLevelControl).Close(); + goToSite("www.12padams.com", false); } private void googleprototypelink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { - hidePrograms(); - googleprototype.Dock = DockStyle.Fill; - googleprototype.Show(); - addressbar.Text = "www.google.stanford.edu"; + goToSite("www.google.stanford.edu", false); } private void googlebetalink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) { - hidePrograms(); - googlealpha.Dock = DockStyle.Fill; - googlealpha.Show(); - addressbar.Text = "www.alpha.google.com"; + goToSite("www.alpha.google.com", false); } private void Label20_Click(object sender, EventArgs e) @@ -81,21 +73,95 @@ namespace TimeHACK padamshidden.Show(); } - private void linkLabel19_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + private void Button12_Click(object sender, EventArgs e) + { + + } + + private void Button9_Click(object sender, EventArgs e) + { + + } + + private void ToolStripMenuItem21_Click(object sender, EventArgs e) + { + ((Form)this.TopLevelControl).Close(); + } + + private void goToSite(string url, bool back) { hidePrograms(); - webBrowser1.Dock = DockStyle.Fill; - webBrowser1.Show(); + + 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++; + } + + addressbar.Text = url; + + switch (url) + { + case "www.google.com": + googlemain.Dock = DockStyle.Fill; + googlemain.Show(); + break; + case "www.google.stanford.edu": + googleprototype.Dock = DockStyle.Fill; + googleprototype.Show(); + break; + case "www.alpha.google.com": + googlealpha.Dock = DockStyle.Fill; + googlealpha.Show(); + break; + case "www.12padams.com": + padamsmain.Dock = DockStyle.Fill; + padamsmain.Show(); + break; + case "www.microsoft.com/internetexplorer4/welcome": + welcomeinternetscreen.Dock = DockStyle.Fill; + welcomeinternetscreen.Show(); + break; + } + } - private void Button12_Click(object sender, EventArgs e) + private void Button1_Click(object sender, EventArgs e) { + if (!(historylocation <= 0)) + { + goToSite(browsinghistory[historylocation - 1], true); + historylocation--; + } + } + private void Button2_Click(object sender, EventArgs e) + { + if(browsinghistory[historylocation+1] != null) goToSite(browsinghistory[historylocation + 1], false); } - private void Button9_Click(object sender, EventArgs e) + private void Button5_Click(object sender, EventArgs e) { + goToSite("www.microsoft.com/internetexplorer4/welcome", false); + } + private void Button25_Click(object sender, EventArgs e) + { + WinClassicDownloader opendownload = new WinClassicDownloader(); + WindowManager wm = new WindowManager(); + wm.startWinClassic(opendownload, "Downloader", null, false, true, new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((byte)(0)))); + opendownload.appName.Text = "Downloading: Web Chat"; } } } diff --git a/TimeHACK.Main/WinClassicForms/WinClassicIE4.resx b/TimeHACK.Main/WinClassicForms/WinClassicIE4.resx index 12119dc..2021fda 100644 --- a/TimeHACK.Main/WinClassicForms/WinClassicIE4.resx +++ b/TimeHACK.Main/WinClassicForms/WinClassicIE4.resx @@ -119,7 +119,7 @@ </resheader> <data name="TextBox1.Text" xml:space="preserve"> <value>Welcome To Internet Explorer 4. -Internet explorer 4 makes browsing the web and exploring websites a pleasent experience. +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> diff --git a/TimeHACK.Main/WinClassicForms/WinClassicInstaller.Designer.cs b/TimeHACK.Main/WinClassicForms/WinClassicInstaller.Designer.cs index 0afe1c8..7f0fa09 100644 --- a/TimeHACK.Main/WinClassicForms/WinClassicInstaller.Designer.cs +++ b/TimeHACK.Main/WinClassicForms/WinClassicInstaller.Designer.cs @@ -1,4 +1,4 @@ -namespace TimeHACK.Engine +namespace TimeHACK.WinClassicForms { partial class WinClassicInstaller { diff --git a/TimeHACK.Main/WinClassicForms/WinClassicInstaller.cs b/TimeHACK.Main/WinClassicForms/WinClassicInstaller.cs index 11e5ba9..744ca63 100644 --- a/TimeHACK.Main/WinClassicForms/WinClassicInstaller.cs +++ b/TimeHACK.Main/WinClassicForms/WinClassicInstaller.cs @@ -8,7 +8,7 @@ using System.Text; using System.Threading.Tasks; using System.Windows.Forms; -namespace TimeHACK.Engine +namespace TimeHACK.WinClassicForms { public partial class WinClassicInstaller : UserControl { @@ -45,6 +45,11 @@ namespace TimeHACK.Engine { if (Button3.Text == "Finish") { + if (programtoinstall == "Web Chat 1998") + { + ((Windows95)this.ParentForm.ParentForm).WebChatToolStripMenuItem.Visible = true; + ((Form)this.TopLevelControl).Close(); + } if (programtoinstall == "Guess The Number 2") { ((Form)this.TopLevelControl).Close(); @@ -62,8 +67,8 @@ namespace TimeHACK.Engine } if (programtoinstall == "Skindows 95") { + ((Windows95)this.ParentForm.ParentForm).SkindowsToolStripMenuItem.Visible = true; ((Form)this.TopLevelControl).Close(); - //Windows2000.SkindowsToolStripMenuItem.Visible = true; } if (programtoinstall == "Web Chat 2000") { diff --git a/TimeHACK.Main/WinClassicForms/WinClassicTemplate.Designer.cs b/TimeHACK.Main/WinClassicForms/WinClassicTemplate.Designer.cs deleted file mode 100644 index 252c147..0000000 --- a/TimeHACK.Main/WinClassicForms/WinClassicTemplate.Designer.cs +++ /dev/null @@ -1,235 +0,0 @@ -namespace TimeHACK -{ - partial class WinClassicTemplate - { - /// <summary> - /// Required designer variable. - /// </summary> - private System.ComponentModel.IContainer components = null; - - /// <summary> - /// Clean up any resources being used. - /// </summary> - /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Windows Form Designer generated code - - /// <summary> - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// </summary> - private void InitializeComponent() - { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WinClassicTemplate)); - this.program = new System.Windows.Forms.Panel(); - this.programtopbar = new System.Windows.Forms.Panel(); - this.maximizebutton = new System.Windows.Forms.PictureBox(); - this.minimizebutton = new System.Windows.Forms.PictureBox(); - this.programname = new System.Windows.Forms.Label(); - this.closebutton = new System.Windows.Forms.PictureBox(); - this.toprightcorner = new System.Windows.Forms.Panel(); - this.bottomrightcorner = new System.Windows.Forms.Panel(); - this.bottomleftcorner = new System.Windows.Forms.Panel(); - this.topleftcorner = new System.Windows.Forms.Panel(); - this.left = new System.Windows.Forms.Panel(); - this.bottom = new System.Windows.Forms.Panel(); - this.right = new System.Windows.Forms.Panel(); - this.top = new System.Windows.Forms.Panel(); - this.program.SuspendLayout(); - this.programtopbar.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.maximizebutton)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.minimizebutton)).BeginInit(); - ((System.ComponentModel.ISupportInitialize)(this.closebutton)).BeginInit(); - this.SuspendLayout(); - // - // program - // - this.program.BackColor = System.Drawing.Color.Silver; - this.program.Controls.Add(this.programtopbar); - this.program.Controls.Add(this.toprightcorner); - this.program.Controls.Add(this.bottomrightcorner); - this.program.Controls.Add(this.bottomleftcorner); - this.program.Controls.Add(this.topleftcorner); - this.program.Controls.Add(this.left); - this.program.Controls.Add(this.bottom); - this.program.Controls.Add(this.right); - this.program.Controls.Add(this.top); - 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(320, 240); - this.program.TabIndex = 7; - // - // programtopbar - // - this.programtopbar.BackColor = System.Drawing.Color.DarkBlue; - this.programtopbar.Controls.Add(this.maximizebutton); - this.programtopbar.Controls.Add(this.minimizebutton); - this.programtopbar.Controls.Add(this.programname); - this.programtopbar.Controls.Add(this.closebutton); - this.programtopbar.Dock = System.Windows.Forms.DockStyle.Top; - this.programtopbar.Location = new System.Drawing.Point(4, 4); - this.programtopbar.Name = "programtopbar"; - this.programtopbar.Size = new System.Drawing.Size(312, 18); - this.programtopbar.TabIndex = 0; - // - // maximizebutton - // - this.maximizebutton.Anchor = System.Windows.Forms.AnchorStyles.Right; - this.maximizebutton.BackgroundImage = global::TimeHACK.Properties.Resources.WinClassicMax; - this.maximizebutton.Location = new System.Drawing.Point(277, 2); - this.maximizebutton.Name = "maximizebutton"; - this.maximizebutton.Size = new System.Drawing.Size(16, 14); - this.maximizebutton.TabIndex = 6; - this.maximizebutton.TabStop = false; - // - // minimizebutton - // - this.minimizebutton.Anchor = System.Windows.Forms.AnchorStyles.Right; - this.minimizebutton.BackgroundImage = global::TimeHACK.Properties.Resources.WinClassicMin; - this.minimizebutton.Location = new System.Drawing.Point(261, 2); - this.minimizebutton.Name = "minimizebutton"; - this.minimizebutton.Size = new System.Drawing.Size(16, 14); - this.minimizebutton.TabIndex = 5; - this.minimizebutton.TabStop = false; - // - // programname - // - this.programname.AutoSize = true; - this.programname.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.programname.ForeColor = System.Drawing.Color.White; - this.programname.Location = new System.Drawing.Point(3, 2); - this.programname.Name = "programname"; - this.programname.Size = new System.Drawing.Size(59, 13); - this.programname.TabIndex = 3; - this.programname.Text = "Template"; - // - // closebutton - // - this.closebutton.Anchor = System.Windows.Forms.AnchorStyles.Right; - this.closebutton.BackgroundImage = global::TimeHACK.Properties.Resources.WinClassicClose; - this.closebutton.Location = new System.Drawing.Point(295, 2); - this.closebutton.Name = "closebutton"; - this.closebutton.Size = new System.Drawing.Size(16, 14); - this.closebutton.TabIndex = 4; - this.closebutton.TabStop = false; - // - // toprightcorner - // - this.toprightcorner.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); - this.toprightcorner.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("toprightcorner.BackgroundImage"))); - this.toprightcorner.Location = new System.Drawing.Point(316, 0); - this.toprightcorner.Name = "toprightcorner"; - this.toprightcorner.Size = new System.Drawing.Size(4, 4); - this.toprightcorner.TabIndex = 6; - // - // bottomrightcorner - // - this.bottomrightcorner.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.bottomrightcorner.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("bottomrightcorner.BackgroundImage"))); - this.bottomrightcorner.Cursor = System.Windows.Forms.Cursors.SizeNWSE; - this.bottomrightcorner.Location = new System.Drawing.Point(316, 236); - this.bottomrightcorner.Name = "bottomrightcorner"; - this.bottomrightcorner.Size = new System.Drawing.Size(4, 4); - this.bottomrightcorner.TabIndex = 4; - // - // bottomleftcorner - // - this.bottomleftcorner.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); - this.bottomleftcorner.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("bottomleftcorner.BackgroundImage"))); - this.bottomleftcorner.Location = new System.Drawing.Point(0, 236); - this.bottomleftcorner.Name = "bottomleftcorner"; - this.bottomleftcorner.Size = new System.Drawing.Size(4, 4); - this.bottomleftcorner.TabIndex = 2; - // - // topleftcorner - // - this.topleftcorner.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("topleftcorner.BackgroundImage"))); - this.topleftcorner.Location = new System.Drawing.Point(0, 0); - this.topleftcorner.Name = "topleftcorner"; - this.topleftcorner.Size = new System.Drawing.Size(4, 4); - this.topleftcorner.TabIndex = 1; - // - // left - // - this.left.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("left.BackgroundImage"))); - this.left.Dock = System.Windows.Forms.DockStyle.Left; - this.left.Location = new System.Drawing.Point(0, 4); - this.left.Name = "left"; - this.left.Size = new System.Drawing.Size(4, 232); - this.left.TabIndex = 3; - // - // bottom - // - this.bottom.BackgroundImage = global::TimeHACK.Properties.Resources.BottomSide; - this.bottom.Cursor = System.Windows.Forms.Cursors.SizeNS; - this.bottom.Dock = System.Windows.Forms.DockStyle.Bottom; - this.bottom.Location = new System.Drawing.Point(0, 236); - this.bottom.Name = "bottom"; - this.bottom.Size = new System.Drawing.Size(316, 4); - this.bottom.TabIndex = 5; - // - // right - // - this.right.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("right.BackgroundImage"))); - this.right.Cursor = System.Windows.Forms.Cursors.SizeWE; - this.right.Dock = System.Windows.Forms.DockStyle.Right; - this.right.Location = new System.Drawing.Point(316, 4); - this.right.Name = "right"; - this.right.Size = new System.Drawing.Size(4, 236); - this.right.TabIndex = 7; - // - // top - // - this.top.BackgroundImage = global::TimeHACK.Properties.Resources.TopSide; - this.top.Dock = System.Windows.Forms.DockStyle.Top; - this.top.Location = new System.Drawing.Point(0, 0); - this.top.Name = "top"; - this.top.Size = new System.Drawing.Size(320, 4); - this.top.TabIndex = 8; - // - // WinClassicTemplate - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.ClientSize = new System.Drawing.Size(320, 240); - this.Controls.Add(this.program); - this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; - this.Name = "WinClassicTemplate"; - this.Text = "WinClassicTemplate"; - this.program.ResumeLayout(false); - this.programtopbar.ResumeLayout(false); - this.programtopbar.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.maximizebutton)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.minimizebutton)).EndInit(); - ((System.ComponentModel.ISupportInitialize)(this.closebutton)).EndInit(); - this.ResumeLayout(false); - - } - - #endregion - - internal System.Windows.Forms.Panel program; - internal System.Windows.Forms.Panel programtopbar; - internal System.Windows.Forms.PictureBox maximizebutton; - internal System.Windows.Forms.PictureBox minimizebutton; - internal System.Windows.Forms.Label programname; - internal System.Windows.Forms.PictureBox closebutton; - internal System.Windows.Forms.Panel toprightcorner; - internal System.Windows.Forms.Panel bottomrightcorner; - internal System.Windows.Forms.Panel bottomleftcorner; - internal System.Windows.Forms.Panel topleftcorner; - internal System.Windows.Forms.Panel left; - internal System.Windows.Forms.Panel bottom; - internal System.Windows.Forms.Panel right; - internal System.Windows.Forms.Panel top; - } -}
\ No newline at end of file diff --git a/TimeHACK.Main/WinClassicForms/WinClassicTemplate.cs b/TimeHACK.Main/WinClassicForms/WinClassicTemplate.cs deleted file mode 100644 index 9152521..0000000 --- a/TimeHACK.Main/WinClassicForms/WinClassicTemplate.cs +++ /dev/null @@ -1,12 +0,0 @@ -using System.Windows.Forms; - -namespace TimeHACK -{ - public partial class WinClassicTemplate : Form - { - public WinClassicTemplate() - { - InitializeComponent(); - } - } -} diff --git a/TimeHACK.Main/WinClassicForms/WinClassicTemplate.resx b/TimeHACK.Main/WinClassicForms/WinClassicTemplate.resx deleted file mode 100644 index cd30725..0000000 --- a/TimeHACK.Main/WinClassicForms/WinClassicTemplate.resx +++ /dev/null @@ -1,163 +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> - <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" /> - <data name="toprightcorner.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAIAAAAmkwkpAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAdSURBVBhXYzh8 - /DQEMQDBfzBo6+oDcSDCGBwGBgAJoRsoKGRD1QAAAABJRU5ErkJggg== -</value> - </data> - <data name="bottomrightcorner.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAIAAAAmkwkpAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAdSURBVBhXYzh8 - /DQQtXX1MQABCgdIQRCIgwAMDABm/hFrLt/K7gAAAABJRU5ErkJggg== -</value> - </data> - <data name="bottomleftcorner.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAIAAAAmkwkpAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAdSURBVBhXYzh8 - /PT///+BJBBhcNq6+iCIAQEYGACcHRsocGQwIQAAAABJRU5ErkJggg== -</value> - </data> - <data name="topleftcorner.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAIAAAAmkwkpAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAaSURBVBhXYzh8 - /DQcgTj/YQDKQZEBcY6fBgAaSCiZEc9BxAAAAABJRU5ErkJggg== -</value> - </data> - <data name="left.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAAAQAAAABCAIAAAB2XpiaAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAUSURBVBhXYzh8 - /PT///+B5OHjpwFB1wn9nx9JYgAAAABJRU5ErkJggg== -</value> - </data> - <data name="right.BackgroundImage" type="System.Drawing.Bitmap, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> - <value> - iVBORw0KGgoAAAANSUhEUgAAAAQAAAABCAIAAAB2XpiaAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO - wwAADsMBx2+oZAAAABl0RVh0U29mdHdhcmUAcGFpbnQubmV0IDQuMC4xMzQDW3oAAAAUSURBVBhXYzh8 - /DQQtXX1MTAwAAA0WgZJrWm8iAAAAABJRU5ErkJggg== -</value> - </data> -</root>
\ No newline at end of file |
