From f32c07b6dc8ad2f0c3b7f2b9d819aefb8b310a3d Mon Sep 17 00:00:00 2001 From: lempamo Date: Mon, 18 Sep 2017 17:34:22 -0400 Subject: IE4 is back, but not complete --- .../WinClassicCalculator.Designer.cs | 2 +- Histacom2/Histacom2.csproj | 54 +- .../Win95Apps/IE3Sites/12padams1998.Designer.cs | 451 ++++++ .../OS/Win95/Win95Apps/IE3Sites/12padams1998.cs | 149 ++ .../OS/Win95/Win95Apps/IE3Sites/12padams1998.resx | 123 ++ .../Win95Apps/IE3Sites/GoogleHome.Designer.cs | 90 ++ .../OS/Win95/Win95Apps/IE3Sites/GoogleHome.cs | 25 + .../OS/Win95/Win95Apps/IE3Sites/GoogleHome.resx | 120 ++ .../Win95Apps/IE3Sites/GooglePrototype.Designer.cs | 277 ++++ .../OS/Win95/Win95Apps/IE3Sites/GooglePrototype.cs | 27 + .../Win95/Win95Apps/IE3Sites/GooglePrototype.resx | 120 ++ .../Win95/Win95Apps/IE3Sites/IE3Start.Designer.cs | 95 ++ Histacom2/OS/Win95/Win95Apps/IE3Sites/IE3Start.cs | 30 + .../OS/Win95/Win95Apps/IE3Sites/IE3Start.resx | 120 ++ .../Win95/Win95Apps/IE3Sites/IENoPage.Designer.cs | 61 + Histacom2/OS/Win95/Win95Apps/IE3Sites/IENoPage.cs | 20 + .../OS/Win95/Win95Apps/IE3Sites/IENoPage.resx | 123 ++ .../Win95Apps/IE4Sites/12padams1998.Designer.cs | 451 ------ .../OS/Win95/Win95Apps/IE4Sites/12padams1998.cs | 149 -- .../OS/Win95/Win95Apps/IE4Sites/12padams1998.resx | 123 -- .../Win95Apps/IE4Sites/GoogleHome.Designer.cs | 90 -- .../OS/Win95/Win95Apps/IE4Sites/GoogleHome.cs | 25 - .../OS/Win95/Win95Apps/IE4Sites/GoogleHome.resx | 120 -- .../Win95Apps/IE4Sites/GooglePrototype.Designer.cs | 277 ---- .../OS/Win95/Win95Apps/IE4Sites/GooglePrototype.cs | 27 - .../Win95/Win95Apps/IE4Sites/GooglePrototype.resx | 120 -- .../Win95/Win95Apps/IE4Sites/IE4NoPage.Designer.cs | 61 - Histacom2/OS/Win95/Win95Apps/IE4Sites/IE4NoPage.cs | 20 - .../OS/Win95/Win95Apps/IE4Sites/IE4NoPage.resx | 123 -- .../Win95/Win95Apps/IE4Sites/IE4Start.Designer.cs | 95 -- Histacom2/OS/Win95/Win95Apps/IE4Sites/IE4Start.cs | 30 - .../OS/Win95/Win95Apps/IE4Sites/IE4Start.resx | 120 -- Histacom2/OS/Win95/Win95Apps/WinClassicIE3.cs | 6 +- Histacom2/OS/Win98/Win98.cs | 6 +- .../Win98/Win98Apps/IE4Sites/IENoPage.Designer.cs | 61 + Histacom2/OS/Win98/Win98Apps/IE4Sites/IENoPage.cs | 20 + .../OS/Win98/Win98Apps/IE4Sites/IENoPage.resx | 123 ++ .../OS/Win98/Win98Apps/WinClassicIE4.Designer.cs | 1468 ++++++++++++++++++++ Histacom2/OS/Win98/Win98Apps/WinClassicIE4.cs | 76 + 39 files changed, 3622 insertions(+), 1856 deletions(-) create mode 100644 Histacom2/OS/Win95/Win95Apps/IE3Sites/12padams1998.Designer.cs create mode 100644 Histacom2/OS/Win95/Win95Apps/IE3Sites/12padams1998.cs create mode 100644 Histacom2/OS/Win95/Win95Apps/IE3Sites/12padams1998.resx create mode 100644 Histacom2/OS/Win95/Win95Apps/IE3Sites/GoogleHome.Designer.cs create mode 100644 Histacom2/OS/Win95/Win95Apps/IE3Sites/GoogleHome.cs create mode 100644 Histacom2/OS/Win95/Win95Apps/IE3Sites/GoogleHome.resx create mode 100644 Histacom2/OS/Win95/Win95Apps/IE3Sites/GooglePrototype.Designer.cs create mode 100644 Histacom2/OS/Win95/Win95Apps/IE3Sites/GooglePrototype.cs create mode 100644 Histacom2/OS/Win95/Win95Apps/IE3Sites/GooglePrototype.resx create mode 100644 Histacom2/OS/Win95/Win95Apps/IE3Sites/IE3Start.Designer.cs create mode 100644 Histacom2/OS/Win95/Win95Apps/IE3Sites/IE3Start.cs create mode 100644 Histacom2/OS/Win95/Win95Apps/IE3Sites/IE3Start.resx create mode 100644 Histacom2/OS/Win95/Win95Apps/IE3Sites/IENoPage.Designer.cs create mode 100644 Histacom2/OS/Win95/Win95Apps/IE3Sites/IENoPage.cs create mode 100644 Histacom2/OS/Win95/Win95Apps/IE3Sites/IENoPage.resx delete mode 100644 Histacom2/OS/Win95/Win95Apps/IE4Sites/12padams1998.Designer.cs delete mode 100644 Histacom2/OS/Win95/Win95Apps/IE4Sites/12padams1998.cs delete mode 100644 Histacom2/OS/Win95/Win95Apps/IE4Sites/12padams1998.resx delete mode 100644 Histacom2/OS/Win95/Win95Apps/IE4Sites/GoogleHome.Designer.cs delete mode 100644 Histacom2/OS/Win95/Win95Apps/IE4Sites/GoogleHome.cs delete mode 100644 Histacom2/OS/Win95/Win95Apps/IE4Sites/GoogleHome.resx delete mode 100644 Histacom2/OS/Win95/Win95Apps/IE4Sites/GooglePrototype.Designer.cs delete mode 100644 Histacom2/OS/Win95/Win95Apps/IE4Sites/GooglePrototype.cs delete mode 100644 Histacom2/OS/Win95/Win95Apps/IE4Sites/GooglePrototype.resx delete mode 100644 Histacom2/OS/Win95/Win95Apps/IE4Sites/IE4NoPage.Designer.cs delete mode 100644 Histacom2/OS/Win95/Win95Apps/IE4Sites/IE4NoPage.cs delete mode 100644 Histacom2/OS/Win95/Win95Apps/IE4Sites/IE4NoPage.resx delete mode 100644 Histacom2/OS/Win95/Win95Apps/IE4Sites/IE4Start.Designer.cs delete mode 100644 Histacom2/OS/Win95/Win95Apps/IE4Sites/IE4Start.cs delete mode 100644 Histacom2/OS/Win95/Win95Apps/IE4Sites/IE4Start.resx create mode 100644 Histacom2/OS/Win98/Win98Apps/IE4Sites/IENoPage.Designer.cs create mode 100644 Histacom2/OS/Win98/Win98Apps/IE4Sites/IENoPage.cs create mode 100644 Histacom2/OS/Win98/Win98Apps/IE4Sites/IENoPage.resx create mode 100644 Histacom2/OS/Win98/Win98Apps/WinClassicIE4.Designer.cs create mode 100644 Histacom2/OS/Win98/Win98Apps/WinClassicIE4.cs diff --git a/Histacom2/GlobalPrograms/WinClassicCalculator.Designer.cs b/Histacom2/GlobalPrograms/WinClassicCalculator.Designer.cs index 80c3e93..f612876 100644 --- a/Histacom2/GlobalPrograms/WinClassicCalculator.Designer.cs +++ b/Histacom2/GlobalPrograms/WinClassicCalculator.Designer.cs @@ -340,7 +340,7 @@ this.Button24.AdaptFontWithTheme = false; this.Button24.AdaptForeColorWithTheme = false; this.Button24.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); - this.Button24.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.Button24.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Button24.ForeColor = System.Drawing.Color.MidnightBlue; this.Button24.Location = new System.Drawing.Point(223, 139); this.Button24.Name = "Button24"; diff --git a/Histacom2/Histacom2.csproj b/Histacom2/Histacom2.csproj index 34f8cd0..c5ff46a 100644 --- a/Histacom2/Histacom2.csproj +++ b/Histacom2/Histacom2.csproj @@ -144,35 +144,35 @@ GuessTheNumber.cs - + UserControl - + 12padams1998.cs - + UserControl - + GoogleHome.cs - + UserControl - + GooglePrototype.cs - + UserControl - - IE4NoPage.cs + + IENoPage.cs - + UserControl - - IE4Start.cs + + IE3Start.cs UserControl @@ -256,6 +256,18 @@ Win98.cs + + UserControl + + + IENoPage.cs + + + UserControl + + + WinClassicIE4.cs + UserControl @@ -371,21 +383,21 @@ GuessTheNumber.cs - + 12padams1998.cs - + GoogleHome.cs - + GooglePrototype.cs - - IE4NoPage.cs + + IENoPage.cs Designer - - IE4Start.cs + + IE3Start.cs CustomMinefield.cs @@ -428,6 +440,10 @@ Win98.cs Designer + + IENoPage.cs + Designer + WinClassicWindowsExplorer.cs Designer diff --git a/Histacom2/OS/Win95/Win95Apps/IE3Sites/12padams1998.Designer.cs b/Histacom2/OS/Win95/Win95Apps/IE3Sites/12padams1998.Designer.cs new file mode 100644 index 0000000..c23dc6d --- /dev/null +++ b/Histacom2/OS/Win95/Win95Apps/IE3Sites/12padams1998.Designer.cs @@ -0,0 +1,451 @@ +namespace Histacom2.OS.Win95.Win95Apps.IE3Sites +{ + partial class _12padams1998 + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Component Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(_12padams1998)); + this.label1 = new System.Windows.Forms.Label(); + this.label2 = new System.Windows.Forms.Label(); + this.panel1 = new System.Windows.Forms.Panel(); + this.button3 = new System.Windows.Forms.Button(); + this.button2 = new System.Windows.Forms.Button(); + this.button1 = new System.Windows.Forms.Button(); + this.label9 = new System.Windows.Forms.Label(); + this.label8 = new System.Windows.Forms.Label(); + this.label7 = new System.Windows.Forms.Label(); + this.label4 = new System.Windows.Forms.Label(); + this.panel2 = new System.Windows.Forms.Panel(); + this.button5 = new System.Windows.Forms.Button(); + this.label11 = new System.Windows.Forms.Label(); + this.button4 = new System.Windows.Forms.Button(); + this.label10 = new System.Windows.Forms.Label(); + this.label5 = new System.Windows.Forms.Label(); + this.panel3 = new System.Windows.Forms.Panel(); + this.button7 = new System.Windows.Forms.Button(); + this.label13 = new System.Windows.Forms.Label(); + this.button6 = new System.Windows.Forms.Button(); + this.label12 = new System.Windows.Forms.Label(); + this.label6 = new System.Windows.Forms.Label(); + this.panel4 = new System.Windows.Forms.Panel(); + this.label16 = new System.Windows.Forms.Label(); + this.label15 = new System.Windows.Forms.Label(); + this.label14 = new System.Windows.Forms.Label(); + this.label3 = new System.Windows.Forms.Label(); + this.label17 = new System.Windows.Forms.Label(); + this.panel1.SuspendLayout(); + this.panel2.SuspendLayout(); + this.panel3.SuspendLayout(); + this.panel4.SuspendLayout(); + this.SuspendLayout(); + // + // label1 + // + this.label1.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.label1.AutoSize = true; + this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label1.Location = new System.Drawing.Point(324, 20); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(312, 16); + this.label1.TabIndex = 0; + this.label1.Text = "Welcome to the Official 12padams website!!!"; + this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // label2 + // + this.label2.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.label2.AutoSize = true; + this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F); + this.label2.Location = new System.Drawing.Point(347, 40); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(265, 13); + this.label2.TabIndex = 1; + this.label2.Text = "The best customizations for your windows 95 computer"; + // + // panel1 + // + this.panel1.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.panel1.Controls.Add(this.button3); + this.panel1.Controls.Add(this.button2); + this.panel1.Controls.Add(this.button1); + this.panel1.Controls.Add(this.label9); + this.panel1.Controls.Add(this.label8); + this.panel1.Controls.Add(this.label7); + this.panel1.Controls.Add(this.label4); + this.panel1.Location = new System.Drawing.Point(23, 89); + this.panel1.Name = "panel1"; + this.panel1.Size = new System.Drawing.Size(200, 305); + this.panel1.TabIndex = 2; + // + // button3 + // + this.button3.BackColor = System.Drawing.Color.Silver; + this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.button3.Location = new System.Drawing.Point(124, 149); + this.button3.Name = "button3"; + this.button3.Size = new System.Drawing.Size(71, 23); + this.button3.TabIndex = 11; + this.button3.Text = "Download"; + this.button3.UseVisualStyleBackColor = false; + this.button3.Click += new System.EventHandler(this.button3_Click); + // + // button2 + // + this.button2.BackColor = System.Drawing.Color.Silver; + this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.button2.Location = new System.Drawing.Point(124, 95); + this.button2.Name = "button2"; + this.button2.Size = new System.Drawing.Size(71, 23); + this.button2.TabIndex = 10; + this.button2.Text = "Download"; + this.button2.UseVisualStyleBackColor = false; + this.button2.Click += new System.EventHandler(this.button2_Click); + // + // button1 + // + this.button1.BackColor = System.Drawing.Color.Silver; + this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.button1.Location = new System.Drawing.Point(124, 47); + this.button1.Name = "button1"; + this.button1.Size = new System.Drawing.Size(71, 23); + this.button1.TabIndex = 9; + this.button1.Text = "Download"; + this.button1.UseVisualStyleBackColor = false; + this.button1.Click += new System.EventHandler(this.button1_Click); + // + // label9 + // + this.label9.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.label9.AutoSize = true; + this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F); + this.label9.Location = new System.Drawing.Point(3, 154); + this.label9.Name = "label9"; + this.label9.Size = new System.Drawing.Size(56, 13); + this.label9.TabIndex = 8; + this.label9.Text = "FTP Client"; + // + // label8 + // + this.label8.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.label8.AutoSize = true; + this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F); + this.label8.Location = new System.Drawing.Point(3, 100); + this.label8.Name = "label8"; + this.label8.Size = new System.Drawing.Size(82, 13); + this.label8.TabIndex = 7; + this.label8.Text = "Web Chat 1998"; + // + // label7 + // + this.label7.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.label7.AutoSize = true; + this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F); + this.label7.Location = new System.Drawing.Point(3, 52); + this.label7.Name = "label7"; + this.label7.Size = new System.Drawing.Size(115, 13); + this.label7.TabIndex = 6; + this.label7.Text = "Guess The Number V1"; + // + // label4 + // + 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(39, 12); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(122, 16); + this.label4.TabIndex = 5; + this.label4.Text = "Games/Software"; + this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // panel2 + // + this.panel2.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.panel2.Controls.Add(this.button5); + this.panel2.Controls.Add(this.label11); + this.panel2.Controls.Add(this.button4); + this.panel2.Controls.Add(this.label10); + this.panel2.Controls.Add(this.label5); + this.panel2.Location = new System.Drawing.Point(253, 89); + this.panel2.Name = "panel2"; + this.panel2.Size = new System.Drawing.Size(200, 305); + this.panel2.TabIndex = 3; + // + // button5 + // + this.button5.BackColor = System.Drawing.Color.Silver; + this.button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.button5.Location = new System.Drawing.Point(152, 95); + this.button5.Name = "button5"; + this.button5.Size = new System.Drawing.Size(43, 23); + this.button5.TabIndex = 12; + this.button5.Text = "Info"; + this.button5.UseVisualStyleBackColor = false; + // + // label11 + // + this.label11.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.label11.AutoSize = true; + this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F); + this.label11.Location = new System.Drawing.Point(3, 100); + this.label11.Name = "label11"; + this.label11.Size = new System.Drawing.Size(68, 13); + this.label11.TabIndex = 11; + this.label11.Text = "Skindows 95"; + // + // button4 + // + this.button4.BackColor = System.Drawing.Color.Silver; + this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.button4.Location = new System.Drawing.Point(79, 47); + this.button4.Name = "button4"; + this.button4.Size = new System.Drawing.Size(116, 23); + this.button4.TabIndex = 10; + this.button4.Text = "View Backgrounds"; + this.button4.UseVisualStyleBackColor = false; + // + // label10 + // + this.label10.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.label10.AutoSize = true; + this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F); + this.label10.Location = new System.Drawing.Point(3, 52); + this.label10.Name = "label10"; + this.label10.Size = new System.Drawing.Size(70, 13); + this.label10.TabIndex = 7; + this.label10.Text = "Backgrounds"; + // + // label5 + // + this.label5.AutoSize = true; + this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label5.Location = new System.Drawing.Point(44, 12); + this.label5.Name = "label5"; + this.label5.Size = new System.Drawing.Size(112, 16); + this.label5.TabIndex = 6; + this.label5.Text = "Customizations"; + this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // panel3 + // + this.panel3.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.panel3.Controls.Add(this.button7); + this.panel3.Controls.Add(this.label13); + this.panel3.Controls.Add(this.button6); + this.panel3.Controls.Add(this.label12); + this.panel3.Controls.Add(this.label6); + this.panel3.Location = new System.Drawing.Point(489, 89); + this.panel3.Name = "panel3"; + this.panel3.Size = new System.Drawing.Size(200, 305); + this.panel3.TabIndex = 3; + // + // button7 + // + this.button7.BackColor = System.Drawing.Color.Silver; + this.button7.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.button7.Location = new System.Drawing.Point(124, 95); + this.button7.Name = "button7"; + this.button7.Size = new System.Drawing.Size(71, 23); + this.button7.TabIndex = 12; + this.button7.Text = "Download"; + this.button7.UseVisualStyleBackColor = false; + // + // label13 + // + this.label13.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.label13.AutoSize = true; + this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F); + this.label13.Location = new System.Drawing.Point(3, 100); + this.label13.Name = "label13"; + this.label13.Size = new System.Drawing.Size(79, 13); + this.label13.TabIndex = 11; + this.label13.Text = "Error Blaster 95"; + // + // button6 + // + this.button6.BackColor = System.Drawing.Color.Silver; + this.button6.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.button6.Location = new System.Drawing.Point(124, 47); + this.button6.Name = "button6"; + this.button6.Size = new System.Drawing.Size(71, 23); + this.button6.TabIndex = 10; + this.button6.Text = "Download"; + this.button6.UseVisualStyleBackColor = false; + // + // label12 + // + this.label12.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.label12.AutoSize = true; + this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F); + this.label12.Location = new System.Drawing.Point(3, 52); + this.label12.Name = "label12"; + this.label12.Size = new System.Drawing.Size(82, 13); + this.label12.TabIndex = 7; + this.label12.Text = "Start Runner 95"; + // + // label6 + // + this.label6.AutoSize = true; + this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label6.Location = new System.Drawing.Point(38, 12); + this.label6.Name = "label6"; + this.label6.Size = new System.Drawing.Size(124, 16); + this.label6.TabIndex = 5; + this.label6.Text = "Example Viruses"; + this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // panel4 + // + this.panel4.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.panel4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.panel4.Controls.Add(this.label16); + this.panel4.Controls.Add(this.label15); + this.panel4.Controls.Add(this.label14); + this.panel4.Controls.Add(this.label3); + this.panel4.Location = new System.Drawing.Point(729, 89); + this.panel4.Name = "panel4"; + this.panel4.Size = new System.Drawing.Size(200, 305); + this.panel4.TabIndex = 3; + // + // label16 + // + this.label16.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F); + this.label16.Location = new System.Drawing.Point(3, 131); + this.label16.Name = "label16"; + this.label16.Size = new System.Drawing.Size(192, 69); + this.label16.TabIndex = 10; + this.label16.Text = resources.GetString("label16.Text"); + this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // label15 + // + this.label15.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.label15.AutoSize = true; + this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F); + this.label15.Location = new System.Drawing.Point(20, 100); + this.label15.Name = "label15"; + this.label15.Size = new System.Drawing.Size(161, 13); + this.label15.TabIndex = 9; + this.label15.Text = "1997: Software added to the site"; + // + // label14 + // + this.label14.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.label14.AutoSize = true; + this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F); + this.label14.Location = new System.Drawing.Point(25, 52); + this.label14.Name = "label14"; + this.label14.Size = new System.Drawing.Size(148, 13); + this.label14.TabIndex = 8; + this.label14.Text = "1996: 12padams.com created"; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label3.Location = new System.Drawing.Point(57, 12); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(83, 16); + this.label3.TabIndex = 4; + this.label3.Text = "Changelog"; + this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // label17 + // + this.label17.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); + 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(386, 430); + this.label17.Name = "label17"; + this.label17.Size = new System.Drawing.Size(186, 16); + this.label17.TabIndex = 4; + this.label17.Text = "Copyright 1998 12padams"; + this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.label17.Click += new System.EventHandler(this.label17_Click); + // + // _12padams1998 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.White; + this.Controls.Add(this.label17); + this.Controls.Add(this.panel4); + this.Controls.Add(this.panel3); + this.Controls.Add(this.panel2); + this.Controls.Add(this.panel1); + this.Controls.Add(this.label2); + this.Controls.Add(this.label1); + this.Name = "_12padams1998"; + this.Size = new System.Drawing.Size(959, 483); + this.panel1.ResumeLayout(false); + this.panel1.PerformLayout(); + this.panel2.ResumeLayout(false); + this.panel2.PerformLayout(); + this.panel3.ResumeLayout(false); + this.panel3.PerformLayout(); + this.panel4.ResumeLayout(false); + this.panel4.PerformLayout(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Label label1; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.Panel panel1; + private System.Windows.Forms.Panel panel2; + private System.Windows.Forms.Panel panel3; + private System.Windows.Forms.Panel panel4; + private System.Windows.Forms.Label label4; + private System.Windows.Forms.Label label5; + private System.Windows.Forms.Label label6; + private System.Windows.Forms.Label label3; + private System.Windows.Forms.Label label9; + private System.Windows.Forms.Label label8; + private System.Windows.Forms.Label label7; + private System.Windows.Forms.Button button1; + private System.Windows.Forms.Button button3; + private System.Windows.Forms.Button button2; + private System.Windows.Forms.Button button4; + private System.Windows.Forms.Label label10; + private System.Windows.Forms.Label label11; + private System.Windows.Forms.Button button5; + private System.Windows.Forms.Label label13; + private System.Windows.Forms.Button button6; + private System.Windows.Forms.Label label12; + private System.Windows.Forms.Button button7; + private System.Windows.Forms.Label label15; + private System.Windows.Forms.Label label14; + private System.Windows.Forms.Label label16; + private System.Windows.Forms.Label label17; + } +} diff --git a/Histacom2/OS/Win95/Win95Apps/IE3Sites/12padams1998.cs b/Histacom2/OS/Win95/Win95Apps/IE3Sites/12padams1998.cs new file mode 100644 index 0000000..6adfbb8 --- /dev/null +++ b/Histacom2/OS/Win95/Win95Apps/IE3Sites/12padams1998.cs @@ -0,0 +1,149 @@ +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 Histacom2.Engine; +using System.Threading; + +namespace Histacom2.OS.Win95.Win95Apps.IE3Sites +{ + public partial class _12padams1998 : UserControl + { + public _12padams1998() + { + InitializeComponent(); + button1.Paint += (s, args) => Paintbrush.PaintClassicBorders(s, args, 2); + button2.Paint += (s, args) => Paintbrush.PaintClassicBorders(s, args, 2); + button3.Paint += (s, args) => Paintbrush.PaintClassicBorders(s, args, 2); + button4.Paint += (s, args) => Paintbrush.PaintClassicBorders(s, args, 2); + button5.Paint += (s, args) => Paintbrush.PaintClassicBorders(s, args, 2); + button6.Paint += (s, args) => Paintbrush.PaintClassicBorders(s, args, 2); + button7.Paint += (s, args) => Paintbrush.PaintClassicBorders(s, args, 2); + } + + private void button3_Click(object sender, EventArgs e) + { + WinClassicDownloader opendownload = new WinClassicDownloader(); + WindowManager wm = new WindowManager(); + wm.Init(opendownload, "Downloader", null, false, true); + opendownload.appName.Text = "Downloading: FTP Client"; + opendownload.amountToDL = 56; + } + + private void button2_Click(object sender, EventArgs e) + { + WinClassicDownloader opendownload = new WinClassicDownloader(); + WindowManager wm = new WindowManager(); + wm.Init(opendownload, "Downloader", null, false, true); + opendownload.appName.Text = "Downloading: Web Chat 1998"; + opendownload.amountToDL = 35; + } + + private void label17_Click(object sender, EventArgs e) + { + label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝d̻̻̪̙͖̬͈͟͝e͠҉̨̧҉̯̙̹̝̟̺̰͖̹̞̻̝̖̪͉͍͇̬#҉̵̻̜͇̻̹͈̀͟ ̨̡̘͓͔̜̭̫͖͔̰̦̘̀#̛͓̬̭̦̹̙̭͕̕#̧͢͠͏̖̙͚͉͇̣̜̖ͅ#̜̝͚͓̳̘̭̣̲̟̤̖͇̬̠̯̠̀͠ ̢͚̲̞̯͎͙̪̗̜̹͙͓͉͢ͅ#̡͙̻̫̝̪͙͚̺̝͓̘̬̬͙͔̀̕͠#̴҉͖̲̺̱͖͈̭̭ͅ#̸̸̷̼̫̪̖̻̻͈̭̬͓̘͓̦̟̻̪͇̞̕#̸̢̨̻̗̣̠̥̖̜̜̖̺͍̝̗͓̦̳̫#̛͡҉̭̝̙̟̘̩̬͖͎̘̞̭̖͔̪̼̠͢ͅ#̰̜̭̹̻̖̬̺͘͡#̛̬̣̳͔͔̘̟͜͢͟͡#̷̨̼̺̤̥̞́͢͡ ̢̞̬͙͍̬̪̪̰̰̰̙̮͙͚͕̩̟͇̕͜ͅ#̶͙̣̣̦͈͈̫̕͡#̸̡̥̹̮͇̱̱͍͜͜͢#̵̢̧̦͙̮̮͔͖̞̮͚͞#̧̗̤̱̪̜͓̠͖̞̰͍͢#̧̱̳̻̖̝͇͜͞#̛́҉͍̩̞̬͔̬̪̻̯̩"; + Thread.Sleep(100); + Refresh(); + label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝d̻̻̪̙͖̬͈͟͝e͠҉̨̧҉̯̙̹̝̟̺̰͖̹̞̻̝̖̪͉͍͇̬#҉̵̻̜͇̻̹͈̀͟ ̨̡̘͓͔̜̭̫͖͔̰̦̘̀#̛͓̬̭̦̹̙̭͕̕#̧͢͠͏̖̙͚͉͇̣̜̖ͅ#̜̝͚͓̳̘̭̣̲̟̤̖͇̬̠̯̠̀͠ ̢͚̲̞̯͎͙̪̗̜̹͙͓͉͢ͅ#̡͙̻̫̝̪͙͚̺̝͓̘̬̬͙͔̀̕͠#̴҉͖̲̺̱͖͈̭̭ͅ#̸̸̷̼̫̪̖̻̻͈̭̬͓̘͓̦̟̻̪͇̞̕#̸̢̨̻̗̣̠̥̖̜̜̖̺͍̝̗͓̦̳̫#̛͡҉̭̝̙̟̘̩̬͖͎̘̞̭̖͔̪̼̠͢ͅ#̰̜̭̹̻̖̬̺͘͡#̛̬̣̳͔͔̘̟͜͢͟͡#̷̨̼̺̤̥̞́͢͡ ̢̞̬͙͍̬̪̪̰̰̰̙̮͙͚͕̩̟͇̕͜ͅ#̶͙̣̣̦͈͈̫̕͡#̸̡̥̹̮͇̱̱͍͜͜͢#̵̢̧̦͙̮̮͔͖̞̮͚͞#̧̗̤̱̪̜͓̠͖̞̰͍͢#̧̱̳̻̖̝͇͜͞"; + Thread.Sleep(100); + Refresh(); + label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝d̻̻̪̙͖̬͈͟͝e͠҉̨̧҉̯̙̹̝̟̺̰͖̹̞̻̝̖̪͉͍͇̬#҉̵̻̜͇̻̹͈̀͟ ̨̡̘͓͔̜̭̫͖͔̰̦̘̀#̛͓̬̭̦̹̙̭͕̕#̧͢͠͏̖̙͚͉͇̣̜̖ͅ#̜̝͚͓̳̘̭̣̲̟̤̖͇̬̠̯̠̀͠ ̢͚̲̞̯͎͙̪̗̜̹͙͓͉͢ͅ#̡͙̻̫̝̪͙͚̺̝͓̘̬̬͙͔̀̕͠#̴҉͖̲̺̱͖͈̭̭ͅ#̸̸̷̼̫̪̖̻̻͈̭̬͓̘͓̦̟̻̪͇̞̕#̸̢̨̻̗̣̠̥̖̜̜̖̺͍̝̗͓̦̳̫#̛͡҉̭̝̙̟̘̩̬͖͎̘̞̭̖͔̪̼̠͢ͅ#̰̜̭̹̻̖̬̺͘͡#̛̬̣̳͔͔̘̟͜͢͟͡#̷̨̼̺̤̥̞́͢͡ ̢̞̬͙͍̬̪̪̰̰̰̙̮͙͚͕̩̟͇̕͜ͅ#̶͙̣̣̦͈͈̫̕͡#̸̡̥̹̮͇̱̱͍͜͜͢#̵̢̧̦͙̮̮͔͖̞̮͚͞"; + Thread.Sleep(100); + Refresh(); + label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝d̻̻̪̙͖̬͈͟͝e͠҉̨̧҉̯̙̹̝̟̺̰͖̹̞̻̝̖̪͉͍͇̬#҉̵̻̜͇̻̹͈̀͟ ̨̡̘͓͔̜̭̫͖͔̰̦̘̀#̛͓̬̭̦̹̙̭͕̕#̧͢͠͏̖̙͚͉͇̣̜̖ͅ#̜̝͚͓̳̘̭̣̲̟̤̖͇̬̠̯̠̀͠ ̢͚̲̞̯͎͙̪̗̜̹͙͓͉͢ͅ#̡͙̻̫̝̪͙͚̺̝͓̘̬̬͙͔̀̕͠#̴҉͖̲̺̱͖͈̭̭ͅ#̸̸̷̼̫̪̖̻̻͈̭̬͓̘͓̦̟̻̪͇̞̕#̸̢̨̻̗̣̠̥̖̜̜̖̺͍̝̗͓̦̳̫#̛͡҉̭̝̙̟̘̩̬͖͎̘̞̭̖͔̪̼̠͢ͅ#̰̜̭̹̻̖̬̺͘͡#̛̬̣̳͔͔̘̟͜͢͟͡#̷̨̼̺̤̥̞́͢͡ ̢̞̬͙͍̬̪̪̰̰̰̙̮͙͚͕̩̟͇̕͜ͅ#̶͙̣̣̦͈͈̫̕͡"; + Thread.Sleep(100); + Refresh(); + label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝d̻̻̪̙͖̬͈͟͝e͠҉̨̧҉̯̙̹̝̟̺̰͖̹̞̻̝̖̪͉͍͇̬#҉̵̻̜͇̻̹͈̀͟ ̨̡̘͓͔̜̭̫͖͔̰̦̘̀#̛͓̬̭̦̹̙̭͕̕#̧͢͠͏̖̙͚͉͇̣̜̖ͅ#̜̝͚͓̳̘̭̣̲̟̤̖͇̬̠̯̠̀͠ ̢͚̲̞̯͎͙̪̗̜̹͙͓͉͢ͅ#̡͙̻̫̝̪͙͚̺̝͓̘̬̬͙͔̀̕͠#̴҉͖̲̺̱͖͈̭̭ͅ#̸̸̷̼̫̪̖̻̻͈̭̬͓̘͓̦̟̻̪͇̞̕#̸̢̨̻̗̣̠̥̖̜̜̖̺͍̝̗͓̦̳̫#̛͡҉̭̝̙̟̘̩̬͖͎̘̞̭̖͔̪̼̠͢ͅ#̰̜̭̹̻̖̬̺͘͡#̛̬̣̳͔͔̘̟͜͢͟͡#̷̨̼̺̤̥̞́͢͡"; + Thread.Sleep(100); + Refresh(); + label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝d̻̻̪̙͖̬͈͟͝e͠҉̨̧҉̯̙̹̝̟̺̰͖̹̞̻̝̖̪͉͍͇̬#҉̵̻̜͇̻̹͈̀͟ ̨̡̘͓͔̜̭̫͖͔̰̦̘̀#̛͓̬̭̦̹̙̭͕̕#̧͢͠͏̖̙͚͉͇̣̜̖ͅ#̜̝͚͓̳̘̭̣̲̟̤̖͇̬̠̯̠̀͠ ̢͚̲̞̯͎͙̪̗̜̹͙͓͉͢ͅ#̡͙̻̫̝̪͙͚̺̝͓̘̬̬͙͔̀̕͠#̴҉͖̲̺̱͖͈̭̭ͅ#̸̸̷̼̫̪̖̻̻͈̭̬͓̘͓̦̟̻̪͇̞̕#̸̢̨̻̗̣̠̥̖̜̜̖̺͍̝̗͓̦̳̫#̛͡҉̭̝̙̟̘̩̬͖͎̘̞̭̖͔̪̼̠͢ͅ#̰̜̭̹̻̖̬̺͘͡"; + Thread.Sleep(100); + Refresh(); + label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝d̻̻̪̙͖̬͈͟͝e͠҉̨̧҉̯̙̹̝̟̺̰͖̹̞̻̝̖̪͉͍͇̬#҉̵̻̜͇̻̹͈̀͟ ̨̡̘͓͔̜̭̫͖͔̰̦̘̀#̛͓̬̭̦̹̙̭͕̕#̧͢͠͏̖̙͚͉͇̣̜̖ͅ#̜̝͚͓̳̘̭̣̲̟̤̖͇̬̠̯̠̀͠ ̢͚̲̞̯͎͙̪̗̜̹͙͓͉͢ͅ#̡͙̻̫̝̪͙͚̺̝͓̘̬̬͙͔̀̕͠#̴҉͖̲̺̱͖͈̭̭ͅ#̸̸̷̼̫̪̖̻̻͈̭̬͓̘͓̦̟̻̪͇̞̕#̸̢̨̻̗̣̠̥̖̜̜̖̺͍̝̗͓̦̳̫"; + Thread.Sleep(100); + Refresh(); + label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝d̻̻̪̙͖̬͈͟͝e͠҉̨̧҉̯̙̹̝̟̺̰͖̹̞̻̝̖̪͉͍͇̬#҉̵̻̜͇̻̹͈̀͟ ̨̡̘͓͔̜̭̫͖͔̰̦̘̀#̛͓̬̭̦̹̙̭͕̕#̧͢͠͏̖̙͚͉͇̣̜̖ͅ#̜̝͚͓̳̘̭̣̲̟̤̖͇̬̠̯̠̀͠ ̢͚̲̞̯͎͙̪̗̜̹͙͓͉͢ͅ#̡͙̻̫̝̪͙͚̺̝͓̘̬̬͙͔̀̕͠#̴҉͖̲̺̱͖͈̭̭ͅ"; + Thread.Sleep(100); + Refresh(); + label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝d̻̻̪̙͖̬͈͟͝e͠҉̨̧҉̯̙̹̝̟̺̰͖̹̞̻̝̖̪͉͍͇̬#҉̵̻̜͇̻̹͈̀͟ ̨̡̘͓͔̜̭̫͖͔̰̦̘̀#̛͓̬̭̦̹̙̭͕̕#̧͢͠͏̖̙͚͉͇̣̜̖ͅ#̜̝͚͓̳̘̭̣̲̟̤̖͇̬̠̯̠̀͠ ̢͚̲̞̯͎͙̪̗̜̹͙͓͉͢ͅ#̡͙̻̫̝̪͙͚̺̝͓̘̬̬͙͔̀̕͠"; + Thread.Sleep(100); + Refresh(); + label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝d̻̻̪̙͖̬͈͟͝e͠҉̨̧҉̯̙̹̝̟̺̰͖̹̞̻̝̖̪͉͍͇̬#҉̵̻̜͇̻̹͈̀͟ ̨̡̘͓͔̜̭̫͖͔̰̦̘̀#̛͓̬̭̦̹̙̭͕̕#̧͢͠͏̖̙͚͉͇̣̜̖ͅ#̜̝͚͓̳̘̭̣̲̟̤̖͇̬̠̯̠̀͠"; + Thread.Sleep(100); + Refresh(); + label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝d̻̻̪̙͖̬͈͟͝e͠҉̨̧҉̯̙̹̝̟̺̰͖̹̞̻̝̖̪͉͍͇̬#҉̵̻̜͇̻̹͈̀͟ ̨̡̘͓͔̜̭̫͖͔̰̦̘̀#̛͓̬̭̦̹̙̭͕̕"; + Thread.Sleep(100); + Refresh(); + label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝d̻̻̪̙͖̬͈͟͝e͠҉̨̧҉̯̙̹̝̟̺̰͖̹̞̻̝̖̪͉͍͇̬#҉̵̻̜͇̻̹͈̀͟"; + Thread.Sleep(100); + Refresh(); + label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝d̻̻̪̙͖̬͈͟͝e͠҉̨̧҉̯̙̹̝̟̺̰͖̹̞̻̝̖̪͉͍͇̬"; + Thread.Sleep(100); + Refresh(); + label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝d̻̻̪̙͖̬͈͟͝e͠"; + Thread.Sleep(100); + Refresh(); + label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝"; + Thread.Sleep(100); + Refresh(); + label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅ"; + Thread.Sleep(100); + Refresh(); + label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ"; + Thread.Sleep(100); + Refresh(); + label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞"; + Thread.Sleep(100); + Refresh(); + label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦"; + Thread.Sleep(100); + Refresh(); + label16.Text = ""; + Thread.Sleep(100); + Refresh(); + label16.Text = "P"; + Thread.Sleep(100); + Refresh(); + label16.Text = "Pa"; + Thread.Sleep(100); + Refresh(); + label16.Text = "Pas"; + Thread.Sleep(100); + Refresh(); + label16.Text = "Pass"; + Thread.Sleep(100); + Refresh(); + label16.Text = "Passw"; + Thread.Sleep(100); + Refresh(); + label16.Text = "Passwo"; + Thread.Sleep(100); + Refresh(); + label16.Text = "Passwor"; + Thread.Sleep(100); + Refresh(); + label16.Text = "Password"; + Thread.Sleep(100); + Refresh(); + label16.Text = "Password:"; + Thread.Sleep(100); + Refresh(); + label16.Text = "Password: projectDeath98"; + Refresh(); + } + + private void button1_Click(object sender, EventArgs e) + { + WinClassicDownloader opendownload = new WinClassicDownloader(); + WindowManager wm = new WindowManager(); + wm.Init(opendownload, "Downloader", null, false, true); + opendownload.appName.Text = "Downloading: Guess The Number V1"; + opendownload.amountToDL = 16; + } + } +} diff --git a/Histacom2/OS/Win95/Win95Apps/IE3Sites/12padams1998.resx b/Histacom2/OS/Win95/Win95Apps/IE3Sites/12padams1998.resx new file mode 100644 index 0000000..6a9a4c8 --- /dev/null +++ b/Histacom2/OS/Win95/Win95Apps/IE3Sites/12padams1998.resx @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝d̻̻̪̙͖̬͈͟͝e͠҉̨̧҉̯̙̹̝̟̺̰͖̹̞̻̝̖̪͉͍͇̬#҉̵̻̜͇̻̹͈̀͟ ̨̡̘͓͔̜̭̫͖͔̰̦̘̀#̛͓̬̭̦̹̙̭͕̕#̧͢͠͏̖̙͚͉͇̣̜̖ͅ#̜̝͚͓̳̘̭̣̲̟̤̖͇̬̠̯̠̀͠ ̢͚̲̞̯͎͙̪̗̜̹͙͓͉͢ͅ#̡͙̻̫̝̪͙͚̺̝͓̘̬̬͙͔̀̕͠#̴҉͖̲̺̱͖͈̭̭ͅ#̸̸̷̼̫̪̖̻̻͈̭̬͓̘͓̦̟̻̪͇̞̕#̸̢̨̻̗̣̠̥̖̜̜̖̺͍̝̗͓̦̳̫#̛͡҉̭̝̙̟̘̩̬͖͎̘̞̭̖͔̪̼̠͢ͅ#̰̜̭̹̻̖̬̺͘͡#̛̬̣̳͔͔̘̟͜͢͟͡#̷̨̼̺̤̥̞́͢͡ ̢̞̬͙͍̬̪̪̰̰̰̙̮͙͚͕̩̟͇̕͜ͅ#̶͙̣̣̦͈͈̫̕͡#̸̡̥̹̮͇̱̱͍͜͜͢#̵̢̧̦͙̮̮͔͖̞̮͚͞#̧̗̤̱̪̜͓̠͖̞̰͍͢#̧̱̳̻̖̝͇͜͞#̛́҉͍̩̞̬͔̬̪̻̯̩#̷̴̨̙͚̹̘̜̗͔̺͖̳̕͜#̶̬͖͙̠̜̲̱̲͙̻̙̩̹̳̪̠̖́̕͟͞ͅ + + \ No newline at end of file diff --git a/Histacom2/OS/Win95/Win95Apps/IE3Sites/GoogleHome.Designer.cs b/Histacom2/OS/Win95/Win95Apps/IE3Sites/GoogleHome.Designer.cs new file mode 100644 index 0000000..71665dc --- /dev/null +++ b/Histacom2/OS/Win95/Win95Apps/IE3Sites/GoogleHome.Designer.cs @@ -0,0 +1,90 @@ +namespace Histacom2.OS.Win95.Win95Apps.IE3Sites +{ + partial class GoogleHome + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Component Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.label1 = new System.Windows.Forms.Label(); + this.linkLabel1 = new System.Windows.Forms.LinkLabel(); + this.linkLabel2 = new System.Windows.Forms.LinkLabel(); + this.SuspendLayout(); + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Font = new System.Drawing.Font("Times New Roman", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204))); + this.label1.Location = new System.Drawing.Point(4, 4); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(277, 36); + this.label1.TabIndex = 0; + this.label1.Text = "Welcome to Google"; + // + // linkLabel1 + // + this.linkLabel1.AutoSize = true; + this.linkLabel1.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); + this.linkLabel1.Location = new System.Drawing.Point(7, 60); + this.linkLabel1.Name = "linkLabel1"; + this.linkLabel1.Size = new System.Drawing.Size(199, 17); + this.linkLabel1.TabIndex = 1; + this.linkLabel1.TabStop = true; + this.linkLabel1.Text = "Google Search Engine Prototype"; + this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked); + // + // linkLabel2 + // + this.linkLabel2.AutoSize = true; + this.linkLabel2.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); + this.linkLabel2.Location = new System.Drawing.Point(7, 83); + this.linkLabel2.Name = "linkLabel2"; + this.linkLabel2.Size = new System.Drawing.Size(418, 17); + this.linkLabel2.TabIndex = 2; + this.linkLabel2.TabStop = true; + this.linkLabel2.Text = "Might-work-some-of-the-time-prototype that is much more up to date."; + // + // GoogleHome + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.White; + this.Controls.Add(this.linkLabel2); + this.Controls.Add(this.linkLabel1); + this.Controls.Add(this.label1); + this.Name = "GoogleHome"; + this.Size = new System.Drawing.Size(959, 483); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.Label label1; + private System.Windows.Forms.LinkLabel linkLabel1; + private System.Windows.Forms.LinkLabel linkLabel2; + } +} diff --git a/Histacom2/OS/Win95/Win95Apps/IE3Sites/GoogleHome.cs b/Histacom2/OS/Win95/Win95Apps/IE3Sites/GoogleHome.cs new file mode 100644 index 0000000..cc0a382 --- /dev/null +++ b/Histacom2/OS/Win95/Win95Apps/IE3Sites/GoogleHome.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Data; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Histacom2.OS.Win95.Win95Apps.IE3Sites +{ + public partial class GoogleHome : UserControl + { + public GoogleHome() + { + InitializeComponent(); + } + + private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) + { + WinClassicIE3.GoToPage("www.google.stanford.edu"); + } + } +} diff --git a/Histacom2/OS/Win95/Win95Apps/IE3Sites/GoogleHome.resx b/Histacom2/OS/Win95/Win95Apps/IE3Sites/GoogleHome.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/Histacom2/OS/Win95/Win95Apps/IE3Sites/GoogleHome.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Histacom2/OS/Win95/Win95Apps/IE3Sites/GooglePrototype.Designer.cs b/Histacom2/OS/Win95/Win95Apps/IE3Sites/GooglePrototype.Designer.cs new file mode 100644 index 0000000..d60bd77 --- /dev/null +++ b/Histacom2/OS/Win95/Win95Apps/IE3Sites/GooglePrototype.Designer.cs @@ -0,0 +1,277 @@ +namespace Histacom2.OS.Win95.Win95Apps.IE3Sites +{ + partial class GooglePrototype + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Component Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.pictureBox1 = new System.Windows.Forms.PictureBox(); + this.panel1 = new System.Windows.Forms.Panel(); + this.label3 = new System.Windows.Forms.Label(); + this.panel2 = new System.Windows.Forms.Panel(); + this.comboBox1 = new System.Windows.Forms.ComboBox(); + this.button2 = new System.Windows.Forms.Button(); + this.button1 = new System.Windows.Forms.Button(); + this.textBox1 = new System.Windows.Forms.TextBox(); + this.label2 = new System.Windows.Forms.Label(); + this.label1 = new System.Windows.Forms.Label(); + this.linkLabel1 = new System.Windows.Forms.LinkLabel(); + this.linkLabel2 = new System.Windows.Forms.LinkLabel(); + this.label4 = new System.Windows.Forms.Label(); + this.button3 = new System.Windows.Forms.Button(); + this.textBox2 = new System.Windows.Forms.TextBox(); + this.linkLabel3 = new System.Windows.Forms.LinkLabel(); + this.linkLabel4 = new System.Windows.Forms.LinkLabel(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); + this.panel1.SuspendLayout(); + this.panel2.SuspendLayout(); + this.SuspendLayout(); + // + // pictureBox1 + // + this.pictureBox1.BackgroundImage = global::Histacom2.Properties.Resources.google; + this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; + this.pictureBox1.Location = new System.Drawing.Point(274, 3); + this.pictureBox1.Name = "pictureBox1"; + this.pictureBox1.Size = new System.Drawing.Size(380, 131); + this.pictureBox1.TabIndex = 0; + this.pictureBox1.TabStop = false; + // + // panel1 + // + this.panel1.BackColor = System.Drawing.SystemColors.Control; + this.panel1.Controls.Add(this.linkLabel3); + this.panel1.Controls.Add(this.label3); + this.panel1.Controls.Add(this.button3); + this.panel1.Controls.Add(this.textBox2); + this.panel1.Location = new System.Drawing.Point(196, 302); + this.panel1.Name = "panel1"; + this.panel1.Size = new System.Drawing.Size(535, 55); + this.panel1.TabIndex = 1; + // + // label3 + // + this.label3.AutoSize = true; + this.label3.Location = new System.Drawing.Point(193, 6); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(147, 13); + this.label3.TabIndex = 0; + this.label3.Text = "Get Google! updates monthly!"; + // + // panel2 + // + this.panel2.BackColor = System.Drawing.SystemColors.Control; + this.panel2.Controls.Add(this.comboBox1); + this.panel2.Controls.Add(this.button2); + this.panel2.Controls.Add(this.button1); + this.panel2.Controls.Add(this.textBox1); + this.panel2.Controls.Add(this.label2); + this.panel2.Controls.Add(this.label1); + this.panel2.Location = new System.Drawing.Point(196, 136); + this.panel2.Name = "panel2"; + this.panel2.Size = new System.Drawing.Size(535, 92); + this.panel2.TabIndex = 1; + // + // comboBox1 + // + this.comboBox1.FormattingEnabled = true; + this.comboBox1.Items.AddRange(new object[] { + "10 results", + "30 results", + "100 results"}); + this.comboBox1.Location = new System.Drawing.Point(118, 44); + this.comboBox1.Name = "comboBox1"; + this.comboBox1.Size = new System.Drawing.Size(76, 21); + this.comboBox1.TabIndex = 4; + this.comboBox1.Text = "10 results"; + // + // button2 + // + this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.button2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); + this.button2.Location = new System.Drawing.Point(307, 43); + this.button2.Name = "button2"; + this.button2.Size = new System.Drawing.Size(113, 26); + this.button2.TabIndex = 3; + this.button2.Text = "I\'m feeling lucky"; + this.button2.UseVisualStyleBackColor = true; + // + // button1 + // + this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.button1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); + this.button1.Location = new System.Drawing.Point(194, 43); + this.button1.Name = "button1"; + this.button1.Size = new System.Drawing.Size(114, 26); + this.button1.TabIndex = 2; + this.button1.Text = "Google Search"; + this.button1.UseVisualStyleBackColor = true; + // + // textBox1 + // + this.textBox1.Location = new System.Drawing.Point(144, 23); + this.textBox1.Name = "textBox1"; + this.textBox1.Size = new System.Drawing.Size(245, 20); + this.textBox1.TabIndex = 1; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(204))); + this.label2.Location = new System.Drawing.Point(115, 71); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(328, 15); + this.label2.TabIndex = 0; + this.label2.Text = "Index contains ~25 million pages (soon to be much bigger)"; + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); + this.label1.Location = new System.Drawing.Point(176, 3); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(184, 17); + this.label1.TabIndex = 0; + this.label1.Text = "Search the web using Google!"; + // + // linkLabel1 + // + this.linkLabel1.AutoSize = true; + this.linkLabel1.Font = new System.Drawing.Font("Times New Roman", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204))); + this.linkLabel1.Location = new System.Drawing.Point(395, 231); + this.linkLabel1.Name = "linkLabel1"; + this.linkLabel1.Size = new System.Drawing.Size(141, 24); + this.linkLabel1.TabIndex = 2; + this.linkLabel1.TabStop = true; + this.linkLabel1.Text = "About Google!"; + // + // linkLabel2 + // + this.linkLabel2.AutoSize = true; + this.linkLabel2.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); + this.linkLabel2.Location = new System.Drawing.Point(368, 280); + this.linkLabel2.Name = "linkLabel2"; + this.linkLabel2.Size = new System.Drawing.Size(107, 19); + this.linkLabel2.TabIndex = 2; + this.linkLabel2.TabStop = true; + this.linkLabel2.Text = "Stanford Search"; + // + // label4 + // + this.label4.AutoSize = true; + this.label4.Location = new System.Drawing.Point(369, 360); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(191, 13); + this.label4.TabIndex = 0; + this.label4.Text = "Copyright © 1997-8 Stanford University"; + // + // button3 + // + this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.button3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); + this.button3.Location = new System.Drawing.Point(274, 26); + this.button3.Name = "button3"; + this.button3.Size = new System.Drawing.Size(86, 25); + this.button3.TabIndex = 3; + this.button3.Text = "Subscribe"; + this.button3.UseVisualStyleBackColor = true; + // + // textBox2 + // + this.textBox2.Location = new System.Drawing.Point(144, 30); + this.textBox2.Name = "textBox2"; + this.textBox2.Size = new System.Drawing.Size(127, 20); + this.textBox2.TabIndex = 1; + this.textBox2.Text = "your e-mail"; + // + // linkLabel3 + // + this.linkLabel3.AutoSize = true; + this.linkLabel3.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); + this.linkLabel3.Location = new System.Drawing.Point(362, 34); + this.linkLabel3.Name = "linkLabel3"; + this.linkLabel3.Size = new System.Drawing.Size(50, 15); + this.linkLabel3.TabIndex = 4; + this.linkLabel3.TabStop = true; + this.linkLabel3.Text = "Archive"; + // + // linkLabel4 + // + this.linkLabel4.AutoSize = true; + this.linkLabel4.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); + this.linkLabel4.Location = new System.Drawing.Point(472, 280); + this.linkLabel4.Name = "linkLabel4"; + this.linkLabel4.Size = new System.Drawing.Size(88, 19); + this.linkLabel4.TabIndex = 3; + this.linkLabel4.TabStop = true; + this.linkLabel4.Text = "Linux Search"; + // + // GooglePrototype + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.White; + this.Controls.Add(this.linkLabel4); + this.Controls.Add(this.label4); + this.Controls.Add(this.linkLabel2); + this.Controls.Add(this.linkLabel1); + this.Controls.Add(this.panel2); + this.Controls.Add(this.panel1); + this.Controls.Add(this.pictureBox1); + this.Name = "GooglePrototype"; + this.Size = new System.Drawing.Size(959, 483); + this.Load += new System.EventHandler(this.GooglePrototype_Load); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); + this.panel1.ResumeLayout(false); + this.panel1.PerformLayout(); + this.panel2.ResumeLayout(false); + this.panel2.PerformLayout(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + + private System.Windows.Forms.PictureBox pictureBox1; + private System.Windows.Forms.Panel panel1; + private System.Windows.Forms.Panel panel2; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.Button button2; + private System.Windows.Forms.Button button1; + private System.Windows.Forms.TextBox textBox1; + private System.Windows.Forms.ComboBox comboBox1; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.LinkLabel linkLabel1; + private System.Windows.Forms.LinkLabel linkLabel2; + private System.Windows.Forms.Label label3; + private System.Windows.Forms.Label label4; + private System.Windows.Forms.Button button3; + private System.Windows.Forms.TextBox textBox2; + private System.Windows.Forms.LinkLabel linkLabel3; + private System.Windows.Forms.LinkLabel linkLabel4; + } +} diff --git a/Histacom2/OS/Win95/Win95Apps/IE3Sites/GooglePrototype.cs b/Histacom2/OS/Win95/Win95Apps/IE3Sites/GooglePrototype.cs new file mode 100644 index 0000000..d9a8826 --- /dev/null +++ b/Histacom2/OS/Win95/Win95Apps/IE3Sites/GooglePrototype.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Data; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Histacom2.OS.Win95.Win95Apps.IE3Sites +{ + public partial class GooglePrototype : UserControl + { + public GooglePrototype() + { + InitializeComponent(); + } + + private void GooglePrototype_Load(object sender, EventArgs e) + { + button1.Paint += (s, args) => Engine.Paintbrush.PaintClassicBorders(s, args, 2); + button2.Paint += (s, args) => Engine.Paintbrush.PaintClassicBorders(s, args, 2); + button3.Paint += (s, args) => Engine.Paintbrush.PaintClassicBorders(s, args, 2); + } + } +} diff --git a/Histacom2/OS/Win95/Win95Apps/IE3Sites/GooglePrototype.resx b/Histacom2/OS/Win95/Win95Apps/IE3Sites/GooglePrototype.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/Histacom2/OS/Win95/Win95Apps/IE3Sites/GooglePrototype.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Histacom2/OS/Win95/Win95Apps/IE3Sites/IE3Start.Designer.cs b/Histacom2/OS/Win95/Win95Apps/IE3Sites/IE3Start.Designer.cs new file mode 100644 index 0000000..c6f7988 --- /dev/null +++ b/Histacom2/OS/Win95/Win95Apps/IE3Sites/IE3Start.Designer.cs @@ -0,0 +1,95 @@ +namespace Histacom2.OS.Win95.Win95Apps.IE3Sites +{ + partial class IE3Start + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Component Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.pictureBox1 = new System.Windows.Forms.PictureBox(); + this.linkLabel1 = new System.Windows.Forms.LinkLabel(); + this.linkLabel2 = new System.Windows.Forms.LinkLabel(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); + this.SuspendLayout(); + // + // pictureBox1 + // + this.pictureBox1.Image = global::Histacom2.Properties.Resources.start; + this.pictureBox1.Location = new System.Drawing.Point(0, 0); + this.pictureBox1.Name = "pictureBox1"; + this.pictureBox1.Size = new System.Drawing.Size(640, 480); + this.pictureBox1.TabIndex = 0; + this.pictureBox1.TabStop = false; + // + // linkLabel1 + // + this.linkLabel1.Cursor = System.Windows.Forms.Cursors.Hand; + this.linkLabel1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.linkLabel1.Image = global::Histacom2.Properties.Resources.start_googlink; + this.linkLabel1.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(65)))), ((int)(((byte)(145))))); + this.linkLabel1.Location = new System.Drawing.Point(10, 269); + this.linkLabel1.Name = "linkLabel1"; + this.linkLabel1.Size = new System.Drawing.Size(95, 14); + this.linkLabel1.TabIndex = 1; + this.linkLabel1.TabStop = true; + this.linkLabel1.Text = " "; + this.linkLabel1.Click += new System.EventHandler(this.linkLabel1_Click); + // + // linkLabel2 + // + this.linkLabel2.Cursor = System.Windows.Forms.Cursors.Hand; + this.linkLabel2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.linkLabel2.Image = global::Histacom2.Properties.Resources.start_padamslink; + this.linkLabel2.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(65)))), ((int)(((byte)(145))))); + this.linkLabel2.Location = new System.Drawing.Point(10, 283); + this.linkLabel2.Name = "linkLabel2"; + this.linkLabel2.Size = new System.Drawing.Size(116, 14); + this.linkLabel2.TabIndex = 2; + this.linkLabel2.TabStop = true; + this.linkLabel2.Text = " "; + this.linkLabel2.Click += new System.EventHandler(this.linkLabel2_Click); + // + // IE3Start + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.White; + this.Controls.Add(this.linkLabel2); + this.Controls.Add(this.linkLabel1); + this.Controls.Add(this.pictureBox1); + this.Name = "IE3Start"; + this.Size = new System.Drawing.Size(959, 483); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.PictureBox pictureBox1; + private System.Windows.Forms.LinkLabel linkLabel1; + private System.Windows.Forms.LinkLabel linkLabel2; + } +} diff --git a/Histacom2/OS/Win95/Win95Apps/IE3Sites/IE3Start.cs b/Histacom2/OS/Win95/Win95Apps/IE3Sites/IE3Start.cs new file mode 100644 index 0000000..6481c3c --- /dev/null +++ b/Histacom2/OS/Win95/Win95Apps/IE3Sites/IE3Start.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Data; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Histacom2.OS.Win95.Win95Apps.IE3Sites +{ + public partial class IE3Start : UserControl + { + public IE3Start() + { + InitializeComponent(); + } + + private void linkLabel1_Click(object sender, EventArgs e) + { + WinClassicIE3.GoToPage("www.google.com"); + } + + private void linkLabel2_Click(object sender, EventArgs e) + { + WinClassicIE3.GoToPage("www.12padams.com"); + } + } +} diff --git a/Histacom2/OS/Win95/Win95Apps/IE3Sites/IE3Start.resx b/Histacom2/OS/Win95/Win95Apps/IE3Sites/IE3Start.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/Histacom2/OS/Win95/Win95Apps/IE3Sites/IE3Start.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Histacom2/OS/Win95/Win95Apps/IE3Sites/IENoPage.Designer.cs b/Histacom2/OS/Win95/Win95Apps/IE3Sites/IENoPage.Designer.cs new file mode 100644 index 0000000..0055932 --- /dev/null +++ b/Histacom2/OS/Win95/Win95Apps/IE3Sites/IENoPage.Designer.cs @@ -0,0 +1,61 @@ +namespace Histacom2.OS.Win95.Win95Apps.IE3Sites +{ + partial class IENoPage + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Component Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.pictureBox1 = new System.Windows.Forms.PictureBox(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); + this.SuspendLayout(); + // + // pictureBox1 + // + this.pictureBox1.Image = global::Histacom2.Properties.Resources.nopage; + this.pictureBox1.Location = new System.Drawing.Point(0, 0); + this.pictureBox1.Name = "pictureBox1"; + this.pictureBox1.Size = new System.Drawing.Size(406, 538); + this.pictureBox1.TabIndex = 0; + this.pictureBox1.TabStop = false; + // + // IENoPage + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.White; + this.Controls.Add(this.pictureBox1); + this.Name = "IENoPage"; + this.Size = new System.Drawing.Size(959, 541); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.PictureBox pictureBox1; + } +} diff --git a/Histacom2/OS/Win95/Win95Apps/IE3Sites/IENoPage.cs b/Histacom2/OS/Win95/Win95Apps/IE3Sites/IENoPage.cs new file mode 100644 index 0000000..73da6c7 --- /dev/null +++ b/Histacom2/OS/Win95/Win95Apps/IE3Sites/IENoPage.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Data; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Histacom2.OS.Win95.Win95Apps.IE3Sites +{ + public partial class IENoPage : UserControl + { + public IENoPage() + { + InitializeComponent(); + } + } +} diff --git a/Histacom2/OS/Win95/Win95Apps/IE3Sites/IENoPage.resx b/Histacom2/OS/Win95/Win95Apps/IE3Sites/IENoPage.resx new file mode 100644 index 0000000..5f61137 --- /dev/null +++ b/Histacom2/OS/Win95/Win95Apps/IE3Sites/IENoPage.resx @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + testy + + \ No newline at end of file diff --git a/Histacom2/OS/Win95/Win95Apps/IE4Sites/12padams1998.Designer.cs b/Histacom2/OS/Win95/Win95Apps/IE4Sites/12padams1998.Designer.cs deleted file mode 100644 index 29a63e4..0000000 --- a/Histacom2/OS/Win95/Win95Apps/IE4Sites/12padams1998.Designer.cs +++ /dev/null @@ -1,451 +0,0 @@ -namespace Histacom2.OS.Win95.Win95Apps.IE4Sites -{ - partial class _12padams1998 - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Component Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(_12padams1998)); - this.label1 = new System.Windows.Forms.Label(); - this.label2 = new System.Windows.Forms.Label(); - this.panel1 = new System.Windows.Forms.Panel(); - this.button3 = new System.Windows.Forms.Button(); - this.button2 = new System.Windows.Forms.Button(); - this.button1 = new System.Windows.Forms.Button(); - this.label9 = new System.Windows.Forms.Label(); - this.label8 = new System.Windows.Forms.Label(); - this.label7 = new System.Windows.Forms.Label(); - this.label4 = new System.Windows.Forms.Label(); - this.panel2 = new System.Windows.Forms.Panel(); - this.button5 = new System.Windows.Forms.Button(); - this.label11 = new System.Windows.Forms.Label(); - this.button4 = new System.Windows.Forms.Button(); - this.label10 = new System.Windows.Forms.Label(); - this.label5 = new System.Windows.Forms.Label(); - this.panel3 = new System.Windows.Forms.Panel(); - this.button7 = new System.Windows.Forms.Button(); - this.label13 = new System.Windows.Forms.Label(); - this.button6 = new System.Windows.Forms.Button(); - this.label12 = new System.Windows.Forms.Label(); - this.label6 = new System.Windows.Forms.Label(); - this.panel4 = new System.Windows.Forms.Panel(); - this.label16 = new System.Windows.Forms.Label(); - this.label15 = new System.Windows.Forms.Label(); - this.label14 = new System.Windows.Forms.Label(); - this.label3 = new System.Windows.Forms.Label(); - this.label17 = new System.Windows.Forms.Label(); - this.panel1.SuspendLayout(); - this.panel2.SuspendLayout(); - this.panel3.SuspendLayout(); - this.panel4.SuspendLayout(); - this.SuspendLayout(); - // - // label1 - // - this.label1.Anchor = System.Windows.Forms.AnchorStyles.Top; - this.label1.AutoSize = true; - this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label1.Location = new System.Drawing.Point(324, 20); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(312, 16); - this.label1.TabIndex = 0; - this.label1.Text = "Welcome to the Official 12padams website!!!"; - this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - // - // label2 - // - this.label2.Anchor = System.Windows.Forms.AnchorStyles.Top; - this.label2.AutoSize = true; - this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F); - this.label2.Location = new System.Drawing.Point(347, 40); - this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(265, 13); - this.label2.TabIndex = 1; - this.label2.Text = "The best customizations for your windows 95 computer"; - // - // panel1 - // - this.panel1.Anchor = System.Windows.Forms.AnchorStyles.Top; - this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.panel1.Controls.Add(this.button3); - this.panel1.Controls.Add(this.button2); - this.panel1.Controls.Add(this.button1); - this.panel1.Controls.Add(this.label9); - this.panel1.Controls.Add(this.label8); - this.panel1.Controls.Add(this.label7); - this.panel1.Controls.Add(this.label4); - this.panel1.Location = new System.Drawing.Point(23, 89); - this.panel1.Name = "panel1"; - this.panel1.Size = new System.Drawing.Size(200, 305); - this.panel1.TabIndex = 2; - // - // button3 - // - this.button3.BackColor = System.Drawing.Color.Silver; - this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.button3.Location = new System.Drawing.Point(124, 149); - this.button3.Name = "button3"; - this.button3.Size = new System.Drawing.Size(71, 23); - this.button3.TabIndex = 11; - this.button3.Text = "Download"; - this.button3.UseVisualStyleBackColor = false; - this.button3.Click += new System.EventHandler(this.button3_Click); - // - // button2 - // - this.button2.BackColor = System.Drawing.Color.Silver; - this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.button2.Location = new System.Drawing.Point(124, 95); - this.button2.Name = "button2"; - this.button2.Size = new System.Drawing.Size(71, 23); - this.button2.TabIndex = 10; - this.button2.Text = "Download"; - this.button2.UseVisualStyleBackColor = false; - this.button2.Click += new System.EventHandler(this.button2_Click); - // - // button1 - // - this.button1.BackColor = System.Drawing.Color.Silver; - this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.button1.Location = new System.Drawing.Point(124, 47); - this.button1.Name = "button1"; - this.button1.Size = new System.Drawing.Size(71, 23); - this.button1.TabIndex = 9; - this.button1.Text = "Download"; - this.button1.UseVisualStyleBackColor = false; - this.button1.Click += new System.EventHandler(this.button1_Click); - // - // label9 - // - this.label9.Anchor = System.Windows.Forms.AnchorStyles.Top; - this.label9.AutoSize = true; - this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F); - this.label9.Location = new System.Drawing.Point(3, 154); - this.label9.Name = "label9"; - this.label9.Size = new System.Drawing.Size(56, 13); - this.label9.TabIndex = 8; - this.label9.Text = "FTP Client"; - // - // label8 - // - this.label8.Anchor = System.Windows.Forms.AnchorStyles.Top; - this.label8.AutoSize = true; - this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F); - this.label8.Location = new System.Drawing.Point(3, 100); - this.label8.Name = "label8"; - this.label8.Size = new System.Drawing.Size(82, 13); - this.label8.TabIndex = 7; - this.label8.Text = "Web Chat 1998"; - // - // label7 - // - this.label7.Anchor = System.Windows.Forms.AnchorStyles.Top; - this.label7.AutoSize = true; - this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F); - this.label7.Location = new System.Drawing.Point(3, 52); - this.label7.Name = "label7"; - this.label7.Size = new System.Drawing.Size(115, 13); - this.label7.TabIndex = 6; - this.label7.Text = "Guess The Number V1"; - // - // label4 - // - 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(39, 12); - this.label4.Name = "label4"; - this.label4.Size = new System.Drawing.Size(122, 16); - this.label4.TabIndex = 5; - this.label4.Text = "Games/Software"; - this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - // - // panel2 - // - this.panel2.Anchor = System.Windows.Forms.AnchorStyles.Top; - this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.panel2.Controls.Add(this.button5); - this.panel2.Controls.Add(this.label11); - this.panel2.Controls.Add(this.button4); - this.panel2.Controls.Add(this.label10); - this.panel2.Controls.Add(this.label5); - this.panel2.Location = new System.Drawing.Point(253, 89); - this.panel2.Name = "panel2"; - this.panel2.Size = new System.Drawing.Size(200, 305); - this.panel2.TabIndex = 3; - // - // button5 - // - this.button5.BackColor = System.Drawing.Color.Silver; - this.button5.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.button5.Location = new System.Drawing.Point(152, 95); - this.button5.Name = "button5"; - this.button5.Size = new System.Drawing.Size(43, 23); - this.button5.TabIndex = 12; - this.button5.Text = "Info"; - this.button5.UseVisualStyleBackColor = false; - // - // label11 - // - this.label11.Anchor = System.Windows.Forms.AnchorStyles.Top; - this.label11.AutoSize = true; - this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F); - this.label11.Location = new System.Drawing.Point(3, 100); - this.label11.Name = "label11"; - this.label11.Size = new System.Drawing.Size(68, 13); - this.label11.TabIndex = 11; - this.label11.Text = "Skindows 95"; - // - // button4 - // - this.button4.BackColor = System.Drawing.Color.Silver; - this.button4.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.button4.Location = new System.Drawing.Point(79, 47); - this.button4.Name = "button4"; - this.button4.Size = new System.Drawing.Size(116, 23); - this.button4.TabIndex = 10; - this.button4.Text = "View Backgrounds"; - this.button4.UseVisualStyleBackColor = false; - // - // label10 - // - this.label10.Anchor = System.Windows.Forms.AnchorStyles.Top; - this.label10.AutoSize = true; - this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F); - this.label10.Location = new System.Drawing.Point(3, 52); - this.label10.Name = "label10"; - this.label10.Size = new System.Drawing.Size(70, 13); - this.label10.TabIndex = 7; - this.label10.Text = "Backgrounds"; - // - // label5 - // - this.label5.AutoSize = true; - this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label5.Location = new System.Drawing.Point(44, 12); - this.label5.Name = "label5"; - this.label5.Size = new System.Drawing.Size(112, 16); - this.label5.TabIndex = 6; - this.label5.Text = "Customizations"; - this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - // - // panel3 - // - this.panel3.Anchor = System.Windows.Forms.AnchorStyles.Top; - this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.panel3.Controls.Add(this.button7); - this.panel3.Controls.Add(this.label13); - this.panel3.Controls.Add(this.button6); - this.panel3.Controls.Add(this.label12); - this.panel3.Controls.Add(this.label6); - this.panel3.Location = new System.Drawing.Point(489, 89); - this.panel3.Name = "panel3"; - this.panel3.Size = new System.Drawing.Size(200, 305); - this.panel3.TabIndex = 3; - // - // button7 - // - this.button7.BackColor = System.Drawing.Color.Silver; - this.button7.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.button7.Location = new System.Drawing.Point(124, 95); - this.button7.Name = "button7"; - this.button7.Size = new System.Drawing.Size(71, 23); - this.button7.TabIndex = 12; - this.button7.Text = "Download"; - this.button7.UseVisualStyleBackColor = false; - // - // label13 - // - this.label13.Anchor = System.Windows.Forms.AnchorStyles.Top; - this.label13.AutoSize = true; - this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F); - this.label13.Location = new System.Drawing.Point(3, 100); - this.label13.Name = "label13"; - this.label13.Size = new System.Drawing.Size(79, 13); - this.label13.TabIndex = 11; - this.label13.Text = "Error Blaster 95"; - // - // button6 - // - this.button6.BackColor = System.Drawing.Color.Silver; - this.button6.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.button6.Location = new System.Drawing.Point(124, 47); - this.button6.Name = "button6"; - this.button6.Size = new System.Drawing.Size(71, 23); - this.button6.TabIndex = 10; - this.button6.Text = "Download"; - this.button6.UseVisualStyleBackColor = false; - // - // label12 - // - this.label12.Anchor = System.Windows.Forms.AnchorStyles.Top; - this.label12.AutoSize = true; - this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F); - this.label12.Location = new System.Drawing.Point(3, 52); - this.label12.Name = "label12"; - this.label12.Size = new System.Drawing.Size(82, 13); - this.label12.TabIndex = 7; - this.label12.Text = "Start Runner 95"; - // - // label6 - // - this.label6.AutoSize = true; - this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label6.Location = new System.Drawing.Point(38, 12); - this.label6.Name = "label6"; - this.label6.Size = new System.Drawing.Size(124, 16); - this.label6.TabIndex = 5; - this.label6.Text = "Example Viruses"; - this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - // - // panel4 - // - this.panel4.Anchor = System.Windows.Forms.AnchorStyles.Top; - this.panel4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; - this.panel4.Controls.Add(this.label16); - this.panel4.Controls.Add(this.label15); - this.panel4.Controls.Add(this.label14); - this.panel4.Controls.Add(this.label3); - this.panel4.Location = new System.Drawing.Point(729, 89); - this.panel4.Name = "panel4"; - this.panel4.Size = new System.Drawing.Size(200, 305); - this.panel4.TabIndex = 3; - // - // label16 - // - this.label16.Anchor = System.Windows.Forms.AnchorStyles.Top; - this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F); - this.label16.Location = new System.Drawing.Point(3, 131); - this.label16.Name = "label16"; - this.label16.Size = new System.Drawing.Size(192, 69); - this.label16.TabIndex = 10; - this.label16.Text = resources.GetString("label16.Text"); - this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - // - // label15 - // - this.label15.Anchor = System.Windows.Forms.AnchorStyles.Top; - this.label15.AutoSize = true; - this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F); - this.label15.Location = new System.Drawing.Point(20, 100); - this.label15.Name = "label15"; - this.label15.Size = new System.Drawing.Size(161, 13); - this.label15.TabIndex = 9; - this.label15.Text = "1997: Software added to the site"; - // - // label14 - // - this.label14.Anchor = System.Windows.Forms.AnchorStyles.Top; - this.label14.AutoSize = true; - this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F); - this.label14.Location = new System.Drawing.Point(25, 52); - this.label14.Name = "label14"; - this.label14.Size = new System.Drawing.Size(148, 13); - this.label14.TabIndex = 8; - this.label14.Text = "1996: 12padams.com created"; - // - // label3 - // - this.label3.AutoSize = true; - this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.label3.Location = new System.Drawing.Point(57, 12); - this.label3.Name = "label3"; - this.label3.Size = new System.Drawing.Size(83, 16); - this.label3.TabIndex = 4; - this.label3.Text = "Changelog"; - this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - // - // label17 - // - this.label17.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); - 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(386, 430); - this.label17.Name = "label17"; - this.label17.Size = new System.Drawing.Size(186, 16); - this.label17.TabIndex = 4; - this.label17.Text = "Copyright 1998 12padams"; - this.label17.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; - this.label17.Click += new System.EventHandler(this.label17_Click); - // - // _12padams1998 - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.White; - this.Controls.Add(this.label17); - this.Controls.Add(this.panel4); - this.Controls.Add(this.panel3); - this.Controls.Add(this.panel2); - this.Controls.Add(this.panel1); - this.Controls.Add(this.label2); - this.Controls.Add(this.label1); - this.Name = "_12padams1998"; - this.Size = new System.Drawing.Size(959, 483); - this.panel1.ResumeLayout(false); - this.panel1.PerformLayout(); - this.panel2.ResumeLayout(false); - this.panel2.PerformLayout(); - this.panel3.ResumeLayout(false); - this.panel3.PerformLayout(); - this.panel4.ResumeLayout(false); - this.panel4.PerformLayout(); - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - private System.Windows.Forms.Label label1; - private System.Windows.Forms.Label label2; - private System.Windows.Forms.Panel panel1; - private System.Windows.Forms.Panel panel2; - private System.Windows.Forms.Panel panel3; - private System.Windows.Forms.Panel panel4; - private System.Windows.Forms.Label label4; - private System.Windows.Forms.Label label5; - private System.Windows.Forms.Label label6; - private System.Windows.Forms.Label label3; - private System.Windows.Forms.Label label9; - private System.Windows.Forms.Label label8; - private System.Windows.Forms.Label label7; - private System.Windows.Forms.Button button1; - private System.Windows.Forms.Button button3; - private System.Windows.Forms.Button button2; - private System.Windows.Forms.Button button4; - private System.Windows.Forms.Label label10; - private System.Windows.Forms.Label label11; - private System.Windows.Forms.Button button5; - private System.Windows.Forms.Label label13; - private System.Windows.Forms.Button button6; - private System.Windows.Forms.Label label12; - private System.Windows.Forms.Button button7; - private System.Windows.Forms.Label label15; - private System.Windows.Forms.Label label14; - private System.Windows.Forms.Label label16; - private System.Windows.Forms.Label label17; - } -} diff --git a/Histacom2/OS/Win95/Win95Apps/IE4Sites/12padams1998.cs b/Histacom2/OS/Win95/Win95Apps/IE4Sites/12padams1998.cs deleted file mode 100644 index bedfe56..0000000 --- a/Histacom2/OS/Win95/Win95Apps/IE4Sites/12padams1998.cs +++ /dev/null @@ -1,149 +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 Histacom2.Engine; -using System.Threading; - -namespace Histacom2.OS.Win95.Win95Apps.IE4Sites -{ - public partial class _12padams1998 : UserControl - { - public _12padams1998() - { - InitializeComponent(); - button1.Paint += (s, args) => Paintbrush.PaintClassicBorders(s, args, 2); - button2.Paint += (s, args) => Paintbrush.PaintClassicBorders(s, args, 2); - button3.Paint += (s, args) => Paintbrush.PaintClassicBorders(s, args, 2); - button4.Paint += (s, args) => Paintbrush.PaintClassicBorders(s, args, 2); - button5.Paint += (s, args) => Paintbrush.PaintClassicBorders(s, args, 2); - button6.Paint += (s, args) => Paintbrush.PaintClassicBorders(s, args, 2); - button7.Paint += (s, args) => Paintbrush.PaintClassicBorders(s, args, 2); - } - - private void button3_Click(object sender, EventArgs e) - { - WinClassicDownloader opendownload = new WinClassicDownloader(); - WindowManager wm = new WindowManager(); - wm.Init(opendownload, "Downloader", null, false, true); - opendownload.appName.Text = "Downloading: FTP Client"; - opendownload.amountToDL = 56; - } - - private void button2_Click(object sender, EventArgs e) - { - WinClassicDownloader opendownload = new WinClassicDownloader(); - WindowManager wm = new WindowManager(); - wm.Init(opendownload, "Downloader", null, false, true); - opendownload.appName.Text = "Downloading: Web Chat 1998"; - opendownload.amountToDL = 35; - } - - private void label17_Click(object sender, EventArgs e) - { - label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝d̻̻̪̙͖̬͈͟͝e͠҉̨̧҉̯̙̹̝̟̺̰͖̹̞̻̝̖̪͉͍͇̬#҉̵̻̜͇̻̹͈̀͟ ̨̡̘͓͔̜̭̫͖͔̰̦̘̀#̛͓̬̭̦̹̙̭͕̕#̧͢͠͏̖̙͚͉͇̣̜̖ͅ#̜̝͚͓̳̘̭̣̲̟̤̖͇̬̠̯̠̀͠ ̢͚̲̞̯͎͙̪̗̜̹͙͓͉͢ͅ#̡͙̻̫̝̪͙͚̺̝͓̘̬̬͙͔̀̕͠#̴҉͖̲̺̱͖͈̭̭ͅ#̸̸̷̼̫̪̖̻̻͈̭̬͓̘͓̦̟̻̪͇̞̕#̸̢̨̻̗̣̠̥̖̜̜̖̺͍̝̗͓̦̳̫#̛͡҉̭̝̙̟̘̩̬͖͎̘̞̭̖͔̪̼̠͢ͅ#̰̜̭̹̻̖̬̺͘͡#̛̬̣̳͔͔̘̟͜͢͟͡#̷̨̼̺̤̥̞́͢͡ ̢̞̬͙͍̬̪̪̰̰̰̙̮͙͚͕̩̟͇̕͜ͅ#̶͙̣̣̦͈͈̫̕͡#̸̡̥̹̮͇̱̱͍͜͜͢#̵̢̧̦͙̮̮͔͖̞̮͚͞#̧̗̤̱̪̜͓̠͖̞̰͍͢#̧̱̳̻̖̝͇͜͞#̛́҉͍̩̞̬͔̬̪̻̯̩"; - Thread.Sleep(100); - Refresh(); - label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝d̻̻̪̙͖̬͈͟͝e͠҉̨̧҉̯̙̹̝̟̺̰͖̹̞̻̝̖̪͉͍͇̬#҉̵̻̜͇̻̹͈̀͟ ̨̡̘͓͔̜̭̫͖͔̰̦̘̀#̛͓̬̭̦̹̙̭͕̕#̧͢͠͏̖̙͚͉͇̣̜̖ͅ#̜̝͚͓̳̘̭̣̲̟̤̖͇̬̠̯̠̀͠ ̢͚̲̞̯͎͙̪̗̜̹͙͓͉͢ͅ#̡͙̻̫̝̪͙͚̺̝͓̘̬̬͙͔̀̕͠#̴҉͖̲̺̱͖͈̭̭ͅ#̸̸̷̼̫̪̖̻̻͈̭̬͓̘͓̦̟̻̪͇̞̕#̸̢̨̻̗̣̠̥̖̜̜̖̺͍̝̗͓̦̳̫#̛͡҉̭̝̙̟̘̩̬͖͎̘̞̭̖͔̪̼̠͢ͅ#̰̜̭̹̻̖̬̺͘͡#̛̬̣̳͔͔̘̟͜͢͟͡#̷̨̼̺̤̥̞́͢͡ ̢̞̬͙͍̬̪̪̰̰̰̙̮͙͚͕̩̟͇̕͜ͅ#̶͙̣̣̦͈͈̫̕͡#̸̡̥̹̮͇̱̱͍͜͜͢#̵̢̧̦͙̮̮͔͖̞̮͚͞#̧̗̤̱̪̜͓̠͖̞̰͍͢#̧̱̳̻̖̝͇͜͞"; - Thread.Sleep(100); - Refresh(); - label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝d̻̻̪̙͖̬͈͟͝e͠҉̨̧҉̯̙̹̝̟̺̰͖̹̞̻̝̖̪͉͍͇̬#҉̵̻̜͇̻̹͈̀͟ ̨̡̘͓͔̜̭̫͖͔̰̦̘̀#̛͓̬̭̦̹̙̭͕̕#̧͢͠͏̖̙͚͉͇̣̜̖ͅ#̜̝͚͓̳̘̭̣̲̟̤̖͇̬̠̯̠̀͠ ̢͚̲̞̯͎͙̪̗̜̹͙͓͉͢ͅ#̡͙̻̫̝̪͙͚̺̝͓̘̬̬͙͔̀̕͠#̴҉͖̲̺̱͖͈̭̭ͅ#̸̸̷̼̫̪̖̻̻͈̭̬͓̘͓̦̟̻̪͇̞̕#̸̢̨̻̗̣̠̥̖̜̜̖̺͍̝̗͓̦̳̫#̛͡҉̭̝̙̟̘̩̬͖͎̘̞̭̖͔̪̼̠͢ͅ#̰̜̭̹̻̖̬̺͘͡#̛̬̣̳͔͔̘̟͜͢͟͡#̷̨̼̺̤̥̞́͢͡ ̢̞̬͙͍̬̪̪̰̰̰̙̮͙͚͕̩̟͇̕͜ͅ#̶͙̣̣̦͈͈̫̕͡#̸̡̥̹̮͇̱̱͍͜͜͢#̵̢̧̦͙̮̮͔͖̞̮͚͞"; - Thread.Sleep(100); - Refresh(); - label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝d̻̻̪̙͖̬͈͟͝e͠҉̨̧҉̯̙̹̝̟̺̰͖̹̞̻̝̖̪͉͍͇̬#҉̵̻̜͇̻̹͈̀͟ ̨̡̘͓͔̜̭̫͖͔̰̦̘̀#̛͓̬̭̦̹̙̭͕̕#̧͢͠͏̖̙͚͉͇̣̜̖ͅ#̜̝͚͓̳̘̭̣̲̟̤̖͇̬̠̯̠̀͠ ̢͚̲̞̯͎͙̪̗̜̹͙͓͉͢ͅ#̡͙̻̫̝̪͙͚̺̝͓̘̬̬͙͔̀̕͠#̴҉͖̲̺̱͖͈̭̭ͅ#̸̸̷̼̫̪̖̻̻͈̭̬͓̘͓̦̟̻̪͇̞̕#̸̢̨̻̗̣̠̥̖̜̜̖̺͍̝̗͓̦̳̫#̛͡҉̭̝̙̟̘̩̬͖͎̘̞̭̖͔̪̼̠͢ͅ#̰̜̭̹̻̖̬̺͘͡#̛̬̣̳͔͔̘̟͜͢͟͡#̷̨̼̺̤̥̞́͢͡ ̢̞̬͙͍̬̪̪̰̰̰̙̮͙͚͕̩̟͇̕͜ͅ#̶͙̣̣̦͈͈̫̕͡"; - Thread.Sleep(100); - Refresh(); - label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝d̻̻̪̙͖̬͈͟͝e͠҉̨̧҉̯̙̹̝̟̺̰͖̹̞̻̝̖̪͉͍͇̬#҉̵̻̜͇̻̹͈̀͟ ̨̡̘͓͔̜̭̫͖͔̰̦̘̀#̛͓̬̭̦̹̙̭͕̕#̧͢͠͏̖̙͚͉͇̣̜̖ͅ#̜̝͚͓̳̘̭̣̲̟̤̖͇̬̠̯̠̀͠ ̢͚̲̞̯͎͙̪̗̜̹͙͓͉͢ͅ#̡͙̻̫̝̪͙͚̺̝͓̘̬̬͙͔̀̕͠#̴҉͖̲̺̱͖͈̭̭ͅ#̸̸̷̼̫̪̖̻̻͈̭̬͓̘͓̦̟̻̪͇̞̕#̸̢̨̻̗̣̠̥̖̜̜̖̺͍̝̗͓̦̳̫#̛͡҉̭̝̙̟̘̩̬͖͎̘̞̭̖͔̪̼̠͢ͅ#̰̜̭̹̻̖̬̺͘͡#̛̬̣̳͔͔̘̟͜͢͟͡#̷̨̼̺̤̥̞́͢͡"; - Thread.Sleep(100); - Refresh(); - label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝d̻̻̪̙͖̬͈͟͝e͠҉̨̧҉̯̙̹̝̟̺̰͖̹̞̻̝̖̪͉͍͇̬#҉̵̻̜͇̻̹͈̀͟ ̨̡̘͓͔̜̭̫͖͔̰̦̘̀#̛͓̬̭̦̹̙̭͕̕#̧͢͠͏̖̙͚͉͇̣̜̖ͅ#̜̝͚͓̳̘̭̣̲̟̤̖͇̬̠̯̠̀͠ ̢͚̲̞̯͎͙̪̗̜̹͙͓͉͢ͅ#̡͙̻̫̝̪͙͚̺̝͓̘̬̬͙͔̀̕͠#̴҉͖̲̺̱͖͈̭̭ͅ#̸̸̷̼̫̪̖̻̻͈̭̬͓̘͓̦̟̻̪͇̞̕#̸̢̨̻̗̣̠̥̖̜̜̖̺͍̝̗͓̦̳̫#̛͡҉̭̝̙̟̘̩̬͖͎̘̞̭̖͔̪̼̠͢ͅ#̰̜̭̹̻̖̬̺͘͡"; - Thread.Sleep(100); - Refresh(); - label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝d̻̻̪̙͖̬͈͟͝e͠҉̨̧҉̯̙̹̝̟̺̰͖̹̞̻̝̖̪͉͍͇̬#҉̵̻̜͇̻̹͈̀͟ ̨̡̘͓͔̜̭̫͖͔̰̦̘̀#̛͓̬̭̦̹̙̭͕̕#̧͢͠͏̖̙͚͉͇̣̜̖ͅ#̜̝͚͓̳̘̭̣̲̟̤̖͇̬̠̯̠̀͠ ̢͚̲̞̯͎͙̪̗̜̹͙͓͉͢ͅ#̡͙̻̫̝̪͙͚̺̝͓̘̬̬͙͔̀̕͠#̴҉͖̲̺̱͖͈̭̭ͅ#̸̸̷̼̫̪̖̻̻͈̭̬͓̘͓̦̟̻̪͇̞̕#̸̢̨̻̗̣̠̥̖̜̜̖̺͍̝̗͓̦̳̫"; - Thread.Sleep(100); - Refresh(); - label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝d̻̻̪̙͖̬͈͟͝e͠҉̨̧҉̯̙̹̝̟̺̰͖̹̞̻̝̖̪͉͍͇̬#҉̵̻̜͇̻̹͈̀͟ ̨̡̘͓͔̜̭̫͖͔̰̦̘̀#̛͓̬̭̦̹̙̭͕̕#̧͢͠͏̖̙͚͉͇̣̜̖ͅ#̜̝͚͓̳̘̭̣̲̟̤̖͇̬̠̯̠̀͠ ̢͚̲̞̯͎͙̪̗̜̹͙͓͉͢ͅ#̡͙̻̫̝̪͙͚̺̝͓̘̬̬͙͔̀̕͠#̴҉͖̲̺̱͖͈̭̭ͅ"; - Thread.Sleep(100); - Refresh(); - label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝d̻̻̪̙͖̬͈͟͝e͠҉̨̧҉̯̙̹̝̟̺̰͖̹̞̻̝̖̪͉͍͇̬#҉̵̻̜͇̻̹͈̀͟ ̨̡̘͓͔̜̭̫͖͔̰̦̘̀#̛͓̬̭̦̹̙̭͕̕#̧͢͠͏̖̙͚͉͇̣̜̖ͅ#̜̝͚͓̳̘̭̣̲̟̤̖͇̬̠̯̠̀͠ ̢͚̲̞̯͎͙̪̗̜̹͙͓͉͢ͅ#̡͙̻̫̝̪͙͚̺̝͓̘̬̬͙͔̀̕͠"; - Thread.Sleep(100); - Refresh(); - label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝d̻̻̪̙͖̬͈͟͝e͠҉̨̧҉̯̙̹̝̟̺̰͖̹̞̻̝̖̪͉͍͇̬#҉̵̻̜͇̻̹͈̀͟ ̨̡̘͓͔̜̭̫͖͔̰̦̘̀#̛͓̬̭̦̹̙̭͕̕#̧͢͠͏̖̙͚͉͇̣̜̖ͅ#̜̝͚͓̳̘̭̣̲̟̤̖͇̬̠̯̠̀͠"; - Thread.Sleep(100); - Refresh(); - label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝d̻̻̪̙͖̬͈͟͝e͠҉̨̧҉̯̙̹̝̟̺̰͖̹̞̻̝̖̪͉͍͇̬#҉̵̻̜͇̻̹͈̀͟ ̨̡̘͓͔̜̭̫͖͔̰̦̘̀#̛͓̬̭̦̹̙̭͕̕"; - Thread.Sleep(100); - Refresh(); - label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝d̻̻̪̙͖̬͈͟͝e͠҉̨̧҉̯̙̹̝̟̺̰͖̹̞̻̝̖̪͉͍͇̬#҉̵̻̜͇̻̹͈̀͟"; - Thread.Sleep(100); - Refresh(); - label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝d̻̻̪̙͖̬͈͟͝e͠҉̨̧҉̯̙̹̝̟̺̰͖̹̞̻̝̖̪͉͍͇̬"; - Thread.Sleep(100); - Refresh(); - label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝d̻̻̪̙͖̬͈͟͝e͠"; - Thread.Sleep(100); - Refresh(); - label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝"; - Thread.Sleep(100); - Refresh(); - label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅ"; - Thread.Sleep(100); - Refresh(); - label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ"; - Thread.Sleep(100); - Refresh(); - label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞"; - Thread.Sleep(100); - Refresh(); - label16.Text = "1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦"; - Thread.Sleep(100); - Refresh(); - label16.Text = ""; - Thread.Sleep(100); - Refresh(); - label16.Text = "P"; - Thread.Sleep(100); - Refresh(); - label16.Text = "Pa"; - Thread.Sleep(100); - Refresh(); - label16.Text = "Pas"; - Thread.Sleep(100); - Refresh(); - label16.Text = "Pass"; - Thread.Sleep(100); - Refresh(); - label16.Text = "Passw"; - Thread.Sleep(100); - Refresh(); - label16.Text = "Passwo"; - Thread.Sleep(100); - Refresh(); - label16.Text = "Passwor"; - Thread.Sleep(100); - Refresh(); - label16.Text = "Password"; - Thread.Sleep(100); - Refresh(); - label16.Text = "Password:"; - Thread.Sleep(100); - Refresh(); - label16.Text = "Password: projectDeath98"; - Refresh(); - } - - private void button1_Click(object sender, EventArgs e) - { - WinClassicDownloader opendownload = new WinClassicDownloader(); - WindowManager wm = new WindowManager(); - wm.Init(opendownload, "Downloader", null, false, true); - opendownload.appName.Text = "Downloading: Guess The Number V1"; - opendownload.amountToDL = 16; - } - } -} diff --git a/Histacom2/OS/Win95/Win95Apps/IE4Sites/12padams1998.resx b/Histacom2/OS/Win95/Win95Apps/IE4Sites/12padams1998.resx deleted file mode 100644 index 6a9a4c8..0000000 --- a/Histacom2/OS/Win95/Win95Apps/IE4Sites/12padams1998.resx +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - 1̧͙̙̦̪͙͇̜̥͍̟͍̹̰̝͖̫̩͘͡͡9̸̨͏̖̱̗̣̥͕̲͈̬̦9͠҉̶̢͔̹̖͇̫̩̻̪̬͔̥̟̺̼̺̟̫8̷̴̶̱̩͖̟̠̬̻̼̳̰̺͚͜͞:̧͟͏̰̣̠̹͍͔̼͕̲͇̪̥̗̞͚͇̖ͅ ͏̙͇̮̤̠͇̜͚͈͇͔̠̙͜͡ͅÀ͏̰̮̞̲̠̩̳͙͓͉̭̼̠͕̣͇̜͎ͅd̢̩̝̙̩̭̫͓̮͙͔̘̥͝d̻̻̪̙͖̬͈͟͝e͠҉̨̧҉̯̙̹̝̟̺̰͖̹̞̻̝̖̪͉͍͇̬#҉̵̻̜͇̻̹͈̀͟ ̨̡̘͓͔̜̭̫͖͔̰̦̘̀#̛͓̬̭̦̹̙̭͕̕#̧͢͠͏̖̙͚͉͇̣̜̖ͅ#̜̝͚͓̳̘̭̣̲̟̤̖͇̬̠̯̠̀͠ ̢͚̲̞̯͎͙̪̗̜̹͙͓͉͢ͅ#̡͙̻̫̝̪͙͚̺̝͓̘̬̬͙͔̀̕͠#̴҉͖̲̺̱͖͈̭̭ͅ#̸̸̷̼̫̪̖̻̻͈̭̬͓̘͓̦̟̻̪͇̞̕#̸̢̨̻̗̣̠̥̖̜̜̖̺͍̝̗͓̦̳̫#̛͡҉̭̝̙̟̘̩̬͖͎̘̞̭̖͔̪̼̠͢ͅ#̰̜̭̹̻̖̬̺͘͡#̛̬̣̳͔͔̘̟͜͢͟͡#̷̨̼̺̤̥̞́͢͡ ̢̞̬͙͍̬̪̪̰̰̰̙̮͙͚͕̩̟͇̕͜ͅ#̶͙̣̣̦͈͈̫̕͡#̸̡̥̹̮͇̱̱͍͜͜͢#̵̢̧̦͙̮̮͔͖̞̮͚͞#̧̗̤̱̪̜͓̠͖̞̰͍͢#̧̱̳̻̖̝͇͜͞#̛́҉͍̩̞̬͔̬̪̻̯̩#̷̴̨̙͚̹̘̜̗͔̺͖̳̕͜#̶̬͖͙̠̜̲̱̲͙̻̙̩̹̳̪̠̖́̕͟͞ͅ - - \ No newline at end of file diff --git a/Histacom2/OS/Win95/Win95Apps/IE4Sites/GoogleHome.Designer.cs b/Histacom2/OS/Win95/Win95Apps/IE4Sites/GoogleHome.Designer.cs deleted file mode 100644 index e0c0743..0000000 --- a/Histacom2/OS/Win95/Win95Apps/IE4Sites/GoogleHome.Designer.cs +++ /dev/null @@ -1,90 +0,0 @@ -namespace Histacom2.OS.Win95.Win95Apps.IE4Sites -{ - partial class GoogleHome - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Component Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.label1 = new System.Windows.Forms.Label(); - this.linkLabel1 = new System.Windows.Forms.LinkLabel(); - this.linkLabel2 = new System.Windows.Forms.LinkLabel(); - this.SuspendLayout(); - // - // label1 - // - this.label1.AutoSize = true; - this.label1.Font = new System.Drawing.Font("Times New Roman", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204))); - this.label1.Location = new System.Drawing.Point(4, 4); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(277, 36); - this.label1.TabIndex = 0; - this.label1.Text = "Welcome to Google"; - // - // linkLabel1 - // - this.linkLabel1.AutoSize = true; - this.linkLabel1.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); - this.linkLabel1.Location = new System.Drawing.Point(7, 60); - this.linkLabel1.Name = "linkLabel1"; - this.linkLabel1.Size = new System.Drawing.Size(199, 17); - this.linkLabel1.TabIndex = 1; - this.linkLabel1.TabStop = true; - this.linkLabel1.Text = "Google Search Engine Prototype"; - this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked); - // - // linkLabel2 - // - this.linkLabel2.AutoSize = true; - this.linkLabel2.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); - this.linkLabel2.Location = new System.Drawing.Point(7, 83); - this.linkLabel2.Name = "linkLabel2"; - this.linkLabel2.Size = new System.Drawing.Size(418, 17); - this.linkLabel2.TabIndex = 2; - this.linkLabel2.TabStop = true; - this.linkLabel2.Text = "Might-work-some-of-the-time-prototype that is much more up to date."; - // - // GoogleHome - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.White; - this.Controls.Add(this.linkLabel2); - this.Controls.Add(this.linkLabel1); - this.Controls.Add(this.label1); - this.Name = "GoogleHome"; - this.Size = new System.Drawing.Size(959, 483); - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - private System.Windows.Forms.Label label1; - private System.Windows.Forms.LinkLabel linkLabel1; - private System.Windows.Forms.LinkLabel linkLabel2; - } -} diff --git a/Histacom2/OS/Win95/Win95Apps/IE4Sites/GoogleHome.cs b/Histacom2/OS/Win95/Win95Apps/IE4Sites/GoogleHome.cs deleted file mode 100644 index 0782a35..0000000 --- a/Histacom2/OS/Win95/Win95Apps/IE4Sites/GoogleHome.cs +++ /dev/null @@ -1,25 +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; - -namespace Histacom2.OS.Win95.Win95Apps.IE4Sites -{ - public partial class GoogleHome : UserControl - { - public GoogleHome() - { - InitializeComponent(); - } - - private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e) - { - WinClassicIE3.GoToPage("www.google.stanford.edu"); - } - } -} diff --git a/Histacom2/OS/Win95/Win95Apps/IE4Sites/GoogleHome.resx b/Histacom2/OS/Win95/Win95Apps/IE4Sites/GoogleHome.resx deleted file mode 100644 index 1af7de1..0000000 --- a/Histacom2/OS/Win95/Win95Apps/IE4Sites/GoogleHome.resx +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/Histacom2/OS/Win95/Win95Apps/IE4Sites/GooglePrototype.Designer.cs b/Histacom2/OS/Win95/Win95Apps/IE4Sites/GooglePrototype.Designer.cs deleted file mode 100644 index bda1bb4..0000000 --- a/Histacom2/OS/Win95/Win95Apps/IE4Sites/GooglePrototype.Designer.cs +++ /dev/null @@ -1,277 +0,0 @@ -namespace Histacom2.OS.Win95.Win95Apps.IE4Sites -{ - partial class GooglePrototype - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Component Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.pictureBox1 = new System.Windows.Forms.PictureBox(); - this.panel1 = new System.Windows.Forms.Panel(); - this.label3 = new System.Windows.Forms.Label(); - this.panel2 = new System.Windows.Forms.Panel(); - this.comboBox1 = new System.Windows.Forms.ComboBox(); - this.button2 = new System.Windows.Forms.Button(); - this.button1 = new System.Windows.Forms.Button(); - this.textBox1 = new System.Windows.Forms.TextBox(); - this.label2 = new System.Windows.Forms.Label(); - this.label1 = new System.Windows.Forms.Label(); - this.linkLabel1 = new System.Windows.Forms.LinkLabel(); - this.linkLabel2 = new System.Windows.Forms.LinkLabel(); - this.label4 = new System.Windows.Forms.Label(); - this.button3 = new System.Windows.Forms.Button(); - this.textBox2 = new System.Windows.Forms.TextBox(); - this.linkLabel3 = new System.Windows.Forms.LinkLabel(); - this.linkLabel4 = new System.Windows.Forms.LinkLabel(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); - this.panel1.SuspendLayout(); - this.panel2.SuspendLayout(); - this.SuspendLayout(); - // - // pictureBox1 - // - this.pictureBox1.BackgroundImage = global::Histacom2.Properties.Resources.google; - this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center; - this.pictureBox1.Location = new System.Drawing.Point(274, 3); - this.pictureBox1.Name = "pictureBox1"; - this.pictureBox1.Size = new System.Drawing.Size(380, 131); - this.pictureBox1.TabIndex = 0; - this.pictureBox1.TabStop = false; - // - // panel1 - // - this.panel1.BackColor = System.Drawing.SystemColors.Control; - this.panel1.Controls.Add(this.linkLabel3); - this.panel1.Controls.Add(this.label3); - this.panel1.Controls.Add(this.button3); - this.panel1.Controls.Add(this.textBox2); - this.panel1.Location = new System.Drawing.Point(196, 302); - this.panel1.Name = "panel1"; - this.panel1.Size = new System.Drawing.Size(535, 55); - this.panel1.TabIndex = 1; - // - // label3 - // - this.label3.AutoSize = true; - this.label3.Location = new System.Drawing.Point(193, 6); - this.label3.Name = "label3"; - this.label3.Size = new System.Drawing.Size(147, 13); - this.label3.TabIndex = 0; - this.label3.Text = "Get Google! updates monthly!"; - // - // panel2 - // - this.panel2.BackColor = System.Drawing.SystemColors.Control; - this.panel2.Controls.Add(this.comboBox1); - this.panel2.Controls.Add(this.button2); - this.panel2.Controls.Add(this.button1); - this.panel2.Controls.Add(this.textBox1); - this.panel2.Controls.Add(this.label2); - this.panel2.Controls.Add(this.label1); - this.panel2.Location = new System.Drawing.Point(196, 136); - this.panel2.Name = "panel2"; - this.panel2.Size = new System.Drawing.Size(535, 92); - this.panel2.TabIndex = 1; - // - // comboBox1 - // - this.comboBox1.FormattingEnabled = true; - this.comboBox1.Items.AddRange(new object[] { - "10 results", - "30 results", - "100 results"}); - this.comboBox1.Location = new System.Drawing.Point(118, 44); - this.comboBox1.Name = "comboBox1"; - this.comboBox1.Size = new System.Drawing.Size(76, 21); - this.comboBox1.TabIndex = 4; - this.comboBox1.Text = "10 results"; - // - // button2 - // - this.button2.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.button2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); - this.button2.Location = new System.Drawing.Point(307, 43); - this.button2.Name = "button2"; - this.button2.Size = new System.Drawing.Size(113, 26); - this.button2.TabIndex = 3; - this.button2.Text = "I\'m feeling lucky"; - this.button2.UseVisualStyleBackColor = true; - // - // button1 - // - this.button1.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.button1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); - this.button1.Location = new System.Drawing.Point(194, 43); - this.button1.Name = "button1"; - this.button1.Size = new System.Drawing.Size(114, 26); - this.button1.TabIndex = 2; - this.button1.Text = "Google Search"; - this.button1.UseVisualStyleBackColor = true; - // - // textBox1 - // - this.textBox1.Location = new System.Drawing.Point(144, 23); - this.textBox1.Name = "textBox1"; - this.textBox1.Size = new System.Drawing.Size(245, 20); - this.textBox1.TabIndex = 1; - // - // label2 - // - this.label2.AutoSize = true; - this.label2.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(204))); - this.label2.Location = new System.Drawing.Point(115, 71); - this.label2.Name = "label2"; - this.label2.Size = new System.Drawing.Size(328, 15); - this.label2.TabIndex = 0; - this.label2.Text = "Index contains ~25 million pages (soon to be much bigger)"; - // - // label1 - // - this.label1.AutoSize = true; - this.label1.Font = new System.Drawing.Font("Times New Roman", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); - this.label1.Location = new System.Drawing.Point(176, 3); - this.label1.Name = "label1"; - this.label1.Size = new System.Drawing.Size(184, 17); - this.label1.TabIndex = 0; - this.label1.Text = "Search the web using Google!"; - // - // linkLabel1 - // - this.linkLabel1.AutoSize = true; - this.linkLabel1.Font = new System.Drawing.Font("Times New Roman", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204))); - this.linkLabel1.Location = new System.Drawing.Point(395, 231); - this.linkLabel1.Name = "linkLabel1"; - this.linkLabel1.Size = new System.Drawing.Size(141, 24); - this.linkLabel1.TabIndex = 2; - this.linkLabel1.TabStop = true; - this.linkLabel1.Text = "About Google!"; - // - // linkLabel2 - // - this.linkLabel2.AutoSize = true; - this.linkLabel2.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); - this.linkLabel2.Location = new System.Drawing.Point(368, 280); - this.linkLabel2.Name = "linkLabel2"; - this.linkLabel2.Size = new System.Drawing.Size(107, 19); - this.linkLabel2.TabIndex = 2; - this.linkLabel2.TabStop = true; - this.linkLabel2.Text = "Stanford Search"; - // - // label4 - // - this.label4.AutoSize = true; - this.label4.Location = new System.Drawing.Point(369, 360); - this.label4.Name = "label4"; - this.label4.Size = new System.Drawing.Size(191, 13); - this.label4.TabIndex = 0; - this.label4.Text = "Copyright © 1997-8 Stanford University"; - // - // button3 - // - this.button3.FlatStyle = System.Windows.Forms.FlatStyle.Flat; - this.button3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); - this.button3.Location = new System.Drawing.Point(274, 26); - this.button3.Name = "button3"; - this.button3.Size = new System.Drawing.Size(86, 25); - this.button3.TabIndex = 3; - this.button3.Text = "Subscribe"; - this.button3.UseVisualStyleBackColor = true; - // - // textBox2 - // - this.textBox2.Location = new System.Drawing.Point(144, 30); - this.textBox2.Name = "textBox2"; - this.textBox2.Size = new System.Drawing.Size(127, 20); - this.textBox2.TabIndex = 1; - this.textBox2.Text = "your e-mail"; - // - // linkLabel3 - // - this.linkLabel3.AutoSize = true; - this.linkLabel3.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); - this.linkLabel3.Location = new System.Drawing.Point(362, 34); - this.linkLabel3.Name = "linkLabel3"; - this.linkLabel3.Size = new System.Drawing.Size(50, 15); - this.linkLabel3.TabIndex = 4; - this.linkLabel3.TabStop = true; - this.linkLabel3.Text = "Archive"; - // - // linkLabel4 - // - this.linkLabel4.AutoSize = true; - this.linkLabel4.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204))); - this.linkLabel4.Location = new System.Drawing.Point(472, 280); - this.linkLabel4.Name = "linkLabel4"; - this.linkLabel4.Size = new System.Drawing.Size(88, 19); - this.linkLabel4.TabIndex = 3; - this.linkLabel4.TabStop = true; - this.linkLabel4.Text = "Linux Search"; - // - // GooglePrototype - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.White; - this.Controls.Add(this.linkLabel4); - this.Controls.Add(this.label4); - this.Controls.Add(this.linkLabel2); - this.Controls.Add(this.linkLabel1); - this.Controls.Add(this.panel2); - this.Controls.Add(this.panel1); - this.Controls.Add(this.pictureBox1); - this.Name = "GooglePrototype"; - this.Size = new System.Drawing.Size(959, 483); - this.Load += new System.EventHandler(this.GooglePrototype_Load); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); - this.panel1.ResumeLayout(false); - this.panel1.PerformLayout(); - this.panel2.ResumeLayout(false); - this.panel2.PerformLayout(); - this.ResumeLayout(false); - this.PerformLayout(); - - } - - #endregion - - private System.Windows.Forms.PictureBox pictureBox1; - private System.Windows.Forms.Panel panel1; - private System.Windows.Forms.Panel panel2; - private System.Windows.Forms.Label label1; - private System.Windows.Forms.Button button2; - private System.Windows.Forms.Button button1; - private System.Windows.Forms.TextBox textBox1; - private System.Windows.Forms.ComboBox comboBox1; - private System.Windows.Forms.Label label2; - private System.Windows.Forms.LinkLabel linkLabel1; - private System.Windows.Forms.LinkLabel linkLabel2; - private System.Windows.Forms.Label label3; - private System.Windows.Forms.Label label4; - private System.Windows.Forms.Button button3; - private System.Windows.Forms.TextBox textBox2; - private System.Windows.Forms.LinkLabel linkLabel3; - private System.Windows.Forms.LinkLabel linkLabel4; - } -} diff --git a/Histacom2/OS/Win95/Win95Apps/IE4Sites/GooglePrototype.cs b/Histacom2/OS/Win95/Win95Apps/IE4Sites/GooglePrototype.cs deleted file mode 100644 index fb5e04b..0000000 --- a/Histacom2/OS/Win95/Win95Apps/IE4Sites/GooglePrototype.cs +++ /dev/null @@ -1,27 +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; - -namespace Histacom2.OS.Win95.Win95Apps.IE4Sites -{ - public partial class GooglePrototype : UserControl - { - public GooglePrototype() - { - InitializeComponent(); - } - - private void GooglePrototype_Load(object sender, EventArgs e) - { - button1.Paint += (s, args) => Engine.Paintbrush.PaintClassicBorders(s, args, 2); - button2.Paint += (s, args) => Engine.Paintbrush.PaintClassicBorders(s, args, 2); - button3.Paint += (s, args) => Engine.Paintbrush.PaintClassicBorders(s, args, 2); - } - } -} diff --git a/Histacom2/OS/Win95/Win95Apps/IE4Sites/GooglePrototype.resx b/Histacom2/OS/Win95/Win95Apps/IE4Sites/GooglePrototype.resx deleted file mode 100644 index 1af7de1..0000000 --- a/Histacom2/OS/Win95/Win95Apps/IE4Sites/GooglePrototype.resx +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/Histacom2/OS/Win95/Win95Apps/IE4Sites/IE4NoPage.Designer.cs b/Histacom2/OS/Win95/Win95Apps/IE4Sites/IE4NoPage.Designer.cs deleted file mode 100644 index 9c16553..0000000 --- a/Histacom2/OS/Win95/Win95Apps/IE4Sites/IE4NoPage.Designer.cs +++ /dev/null @@ -1,61 +0,0 @@ -namespace Histacom2.OS.Win95.Win95Apps.IE4Sites -{ - partial class IE4NoPage - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Component Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.pictureBox1 = new System.Windows.Forms.PictureBox(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); - this.SuspendLayout(); - // - // pictureBox1 - // - this.pictureBox1.Image = global::Histacom2.Properties.Resources.nopage; - this.pictureBox1.Location = new System.Drawing.Point(0, 0); - this.pictureBox1.Name = "pictureBox1"; - this.pictureBox1.Size = new System.Drawing.Size(406, 538); - this.pictureBox1.TabIndex = 0; - this.pictureBox1.TabStop = false; - // - // IE4NoPage - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.White; - this.Controls.Add(this.pictureBox1); - this.Name = "IE4NoPage"; - this.Size = new System.Drawing.Size(959, 541); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); - this.ResumeLayout(false); - - } - - #endregion - - private System.Windows.Forms.PictureBox pictureBox1; - } -} diff --git a/Histacom2/OS/Win95/Win95Apps/IE4Sites/IE4NoPage.cs b/Histacom2/OS/Win95/Win95Apps/IE4Sites/IE4NoPage.cs deleted file mode 100644 index fad6ef9..0000000 --- a/Histacom2/OS/Win95/Win95Apps/IE4Sites/IE4NoPage.cs +++ /dev/null @@ -1,20 +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; - -namespace Histacom2.OS.Win95.Win95Apps.IE4Sites -{ - public partial class IE4NoPage : UserControl - { - public IE4NoPage() - { - InitializeComponent(); - } - } -} diff --git a/Histacom2/OS/Win95/Win95Apps/IE4Sites/IE4NoPage.resx b/Histacom2/OS/Win95/Win95Apps/IE4Sites/IE4NoPage.resx deleted file mode 100644 index 5f61137..0000000 --- a/Histacom2/OS/Win95/Win95Apps/IE4Sites/IE4NoPage.resx +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - testy - - \ No newline at end of file diff --git a/Histacom2/OS/Win95/Win95Apps/IE4Sites/IE4Start.Designer.cs b/Histacom2/OS/Win95/Win95Apps/IE4Sites/IE4Start.Designer.cs deleted file mode 100644 index d058523..0000000 --- a/Histacom2/OS/Win95/Win95Apps/IE4Sites/IE4Start.Designer.cs +++ /dev/null @@ -1,95 +0,0 @@ -namespace Histacom2.OS.Win95.Win95Apps.IE4Sites -{ - partial class IE4Start - { - /// - /// Required designer variable. - /// - private System.ComponentModel.IContainer components = null; - - /// - /// Clean up any resources being used. - /// - /// true if managed resources should be disposed; otherwise, false. - protected override void Dispose(bool disposing) - { - if (disposing && (components != null)) - { - components.Dispose(); - } - base.Dispose(disposing); - } - - #region Component Designer generated code - - /// - /// Required method for Designer support - do not modify - /// the contents of this method with the code editor. - /// - private void InitializeComponent() - { - this.pictureBox1 = new System.Windows.Forms.PictureBox(); - this.linkLabel1 = new System.Windows.Forms.LinkLabel(); - this.linkLabel2 = new System.Windows.Forms.LinkLabel(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); - this.SuspendLayout(); - // - // pictureBox1 - // - this.pictureBox1.Image = global::Histacom2.Properties.Resources.start; - this.pictureBox1.Location = new System.Drawing.Point(0, 0); - this.pictureBox1.Name = "pictureBox1"; - this.pictureBox1.Size = new System.Drawing.Size(640, 480); - this.pictureBox1.TabIndex = 0; - this.pictureBox1.TabStop = false; - // - // linkLabel1 - // - this.linkLabel1.Cursor = System.Windows.Forms.Cursors.Hand; - this.linkLabel1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.linkLabel1.Image = global::Histacom2.Properties.Resources.start_googlink; - this.linkLabel1.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(65)))), ((int)(((byte)(145))))); - this.linkLabel1.Location = new System.Drawing.Point(10, 269); - this.linkLabel1.Name = "linkLabel1"; - this.linkLabel1.Size = new System.Drawing.Size(95, 14); - this.linkLabel1.TabIndex = 1; - this.linkLabel1.TabStop = true; - this.linkLabel1.Text = " "; - this.linkLabel1.Click += new System.EventHandler(this.linkLabel1_Click); - // - // linkLabel2 - // - this.linkLabel2.Cursor = System.Windows.Forms.Cursors.Hand; - this.linkLabel2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); - this.linkLabel2.Image = global::Histacom2.Properties.Resources.start_padamslink; - this.linkLabel2.LinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(65)))), ((int)(((byte)(145))))); - this.linkLabel2.Location = new System.Drawing.Point(10, 283); - this.linkLabel2.Name = "linkLabel2"; - this.linkLabel2.Size = new System.Drawing.Size(116, 14); - this.linkLabel2.TabIndex = 2; - this.linkLabel2.TabStop = true; - this.linkLabel2.Text = " "; - this.linkLabel2.Click += new System.EventHandler(this.linkLabel2_Click); - // - // IE4Start - // - this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); - this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; - this.BackColor = System.Drawing.Color.White; - this.Controls.Add(this.linkLabel2); - this.Controls.Add(this.linkLabel1); - this.Controls.Add(this.pictureBox1); - this.Name = "IE4Start"; - this.Size = new System.Drawing.Size(959, 483); - ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); - this.ResumeLayout(false); - - } - - #endregion - - private System.Windows.Forms.PictureBox pictureBox1; - private System.Windows.Forms.LinkLabel linkLabel1; - private System.Windows.Forms.LinkLabel linkLabel2; - } -} diff --git a/Histacom2/OS/Win95/Win95Apps/IE4Sites/IE4Start.cs b/Histacom2/OS/Win95/Win95Apps/IE4Sites/IE4Start.cs deleted file mode 100644 index 191cb2d..0000000 --- a/Histacom2/OS/Win95/Win95Apps/IE4Sites/IE4Start.cs +++ /dev/null @@ -1,30 +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; - -namespace Histacom2.OS.Win95.Win95Apps.IE4Sites -{ - public partial class IE4Start : UserControl - { - public IE4Start() - { - InitializeComponent(); - } - - private void linkLabel1_Click(object sender, EventArgs e) - { - WinClassicIE3.GoToPage("www.google.com"); - } - - private void linkLabel2_Click(object sender, EventArgs e) - { - WinClassicIE3.GoToPage("www.12padams.com"); - } - } -} diff --git a/Histacom2/OS/Win95/Win95Apps/IE4Sites/IE4Start.resx b/Histacom2/OS/Win95/Win95Apps/IE4Sites/IE4Start.resx deleted file mode 100644 index 1af7de1..0000000 --- a/Histacom2/OS/Win95/Win95Apps/IE4Sites/IE4Start.resx +++ /dev/null @@ -1,120 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - text/microsoft-resx - - - 2.0 - - - System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - - System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 - - \ No newline at end of file diff --git a/Histacom2/OS/Win95/Win95Apps/WinClassicIE3.cs b/Histacom2/OS/Win95/Win95Apps/WinClassicIE3.cs index ee32a38..de2e4b0 100644 --- a/Histacom2/OS/Win95/Win95Apps/WinClassicIE3.cs +++ b/Histacom2/OS/Win95/Win95Apps/WinClassicIE3.cs @@ -7,7 +7,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; -using Histacom2.OS.Win95.Win95Apps.IE4Sites; +using Histacom2.OS.Win95.Win95Apps.IE3Sites; namespace Histacom2.OS.Win95.Win95Apps { @@ -39,7 +39,7 @@ namespace Histacom2.OS.Win95.Win95Apps switch (url) { case "www.microsoft.com/windows/ie/default.htm": - uc = new IE4Start(); + uc = new IE3Start(); break; case "www.google.com": uc = new GoogleHome(); @@ -51,7 +51,7 @@ namespace Histacom2.OS.Win95.Win95Apps uc = new _12padams1998(); break; default: - uc = new IE4NoPage(); + uc = new IENoPage(); break; } diff --git a/Histacom2/OS/Win98/Win98.cs b/Histacom2/OS/Win98/Win98.cs index a21b144..f4a9c07 100644 --- a/Histacom2/OS/Win98/Win98.cs +++ b/Histacom2/OS/Win98/Win98.cs @@ -10,6 +10,8 @@ using Histacom2.Engine.Template.Taskbars; using Histacom2.OS.Win95.Win95Apps; using Histacom2.OS.Win95.Win95Apps.Story; using static Histacom2.Engine.SaveSystem; +using Histacom2.OS.Win98.Win98Apps; + namespace Histacom2.OS.Win98 { public partial class Windows98 : Form @@ -242,7 +244,7 @@ namespace Histacom2.OS.Win98 private void InternetExplorerToolStripMenuItem_Click(object sender, EventArgs e) { if (ie != null) { wm.StartInfobox95("Error Opening Internet Explorer", "An instance of Internet Explorer 4 is already open.", InfoboxType.Warning, InfoboxButtons.OK); return; } - ie = wm.Init(new WinClassicIE3(), "Internet Explorer 4", Properties.Resources.Win95IconIE4, true, true); + ie = wm.Init(new WinClassicIE4(), "Internet Explorer 4", Properties.Resources.Win95IconIE4, true, true); AddTaskBarItem(ie, ie.Tag.ToString(), "Internet Explorer 4", Properties.Resources.Win95IconIE4); ie.BringToFront(); ie.FormClosing += new FormClosingEventHandler(InternetExplorer4_Closing); @@ -262,7 +264,7 @@ namespace Histacom2.OS.Win98 if (objListViewItem.Text == "Internet Explorer") { if (ie != null) { wm.StartInfobox95("Error Opening Internet Explorer", "An instance of Internet Explorer 4 is already open.", InfoboxType.Warning, InfoboxButtons.OK); return; } - ie = wm.Init(new WinClassicIE3(), "Internet Explorer 4", Properties.Resources.Win95IconIE4, true, true); + ie = wm.Init(new WinClassicIE4(), "Internet Explorer 4", Properties.Resources.Win95IconIE4, true, true); AddTaskBarItem(ie, ie.Tag.ToString(), "Internet Explorer 4", Properties.Resources.Win95IconIE4); ie.BringToFront(); ie.FormClosing += new FormClosingEventHandler(InternetExplorer4_Closing); diff --git a/Histacom2/OS/Win98/Win98Apps/IE4Sites/IENoPage.Designer.cs b/Histacom2/OS/Win98/Win98Apps/IE4Sites/IENoPage.Designer.cs new file mode 100644 index 0000000..9431270 --- /dev/null +++ b/Histacom2/OS/Win98/Win98Apps/IE4Sites/IENoPage.Designer.cs @@ -0,0 +1,61 @@ +namespace Histacom2.OS.Win98.Win98Apps.IE4Sites +{ + partial class IENoPage + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Component Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.pictureBox1 = new System.Windows.Forms.PictureBox(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); + this.SuspendLayout(); + // + // pictureBox1 + // + this.pictureBox1.Image = global::Histacom2.Properties.Resources.nopage; + this.pictureBox1.Location = new System.Drawing.Point(0, 0); + this.pictureBox1.Name = "pictureBox1"; + this.pictureBox1.Size = new System.Drawing.Size(406, 538); + this.pictureBox1.TabIndex = 0; + this.pictureBox1.TabStop = false; + // + // IENoPage + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.White; + this.Controls.Add(this.pictureBox1); + this.Name = "IENoPage"; + this.Size = new System.Drawing.Size(959, 541); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.PictureBox pictureBox1; + } +} diff --git a/Histacom2/OS/Win98/Win98Apps/IE4Sites/IENoPage.cs b/Histacom2/OS/Win98/Win98Apps/IE4Sites/IENoPage.cs new file mode 100644 index 0000000..ccb5159 --- /dev/null +++ b/Histacom2/OS/Win98/Win98Apps/IE4Sites/IENoPage.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Drawing; +using System.Data; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Histacom2.OS.Win98.Win98Apps.IE4Sites +{ + public partial class IENoPage : UserControl + { + public IENoPage() + { + InitializeComponent(); + } + } +} diff --git a/Histacom2/OS/Win98/Win98Apps/IE4Sites/IENoPage.resx b/Histacom2/OS/Win98/Win98Apps/IE4Sites/IENoPage.resx new file mode 100644 index 0000000..5f61137 --- /dev/null +++ b/Histacom2/OS/Win98/Win98Apps/IE4Sites/IENoPage.resx @@ -0,0 +1,123 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + testy + + \ No newline at end of file diff --git a/Histacom2/OS/Win98/Win98Apps/WinClassicIE4.Designer.cs b/Histacom2/OS/Win98/Win98Apps/WinClassicIE4.Designer.cs new file mode 100644 index 0000000..764d7a8 --- /dev/null +++ b/Histacom2/OS/Win98/Win98Apps/WinClassicIE4.Designer.cs @@ -0,0 +1,1468 @@ +namespace Histacom2.OS.Win98.Win98Apps +{ + partial class WinClassicIE4 + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Component Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.Panel14 = new System.Windows.Forms.Panel(); + this.pictureBox10 = new System.Windows.Forms.PictureBox(); + this.label2 = new System.Windows.Forms.Label(); + this.pictureBox9 = new System.Windows.Forms.PictureBox(); + 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.Panel14.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox10)).BeginInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).BeginInit(); + ((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(); + 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; + // + // pictureBox10 + // + this.pictureBox10.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + this.pictureBox10.BackgroundImage = global::Histacom2.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; + // + // label2 + // + this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); + 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"; + // + // pictureBox9 + // + this.pictureBox9.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); + this.pictureBox9.BackgroundImage = global::Histacom2.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; + // + // pictureBox3 + // + this.pictureBox3.BackgroundImage = global::Histacom2.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::Histacom2.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::Histacom2.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::Histacom2.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::Histacom2.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::Histacom2.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::Histacom2.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::Histacom2.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::Histacom2.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::Histacom2.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::Histacom2.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::Histacom2.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.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); + this.pictureBox8.BackgroundImage = global::Histacom2.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.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); + this.pictureBox6.BackgroundImage = global::Histacom2.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::Histacom2.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::Histacom2.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::Histacom2.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(40, 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(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(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(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(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(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(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(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(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(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(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(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(239, 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(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(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(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(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(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(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(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(239, 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(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(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(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(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(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(237, 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(47, 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(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(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(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(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(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(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(180, 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(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(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(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(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(193, 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(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(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(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(180, 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(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(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(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(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(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(126, 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(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(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(249, 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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(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(180, 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(36, 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(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(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(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(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(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(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(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(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(191, 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(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(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(197, 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(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(111, 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(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(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(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(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(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(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(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(217, 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::Histacom2.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::Histacom2.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; + // + // WinClassicIE4 + // + 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 = "WinClassicIE4"; + 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.pictureBox10)).EndInit(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBox9)).EndInit(); + ((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(); + 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/Histacom2/OS/Win98/Win98Apps/WinClassicIE4.cs b/Histacom2/OS/Win98/Win98Apps/WinClassicIE4.cs new file mode 100644 index 0000000..aa3b0b0 --- /dev/null +++ b/Histacom2/OS/Win98/Win98Apps/WinClassicIE4.cs @@ -0,0 +1,76 @@ +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 Histacom2.OS.Win98.Win98Apps.IE4Sites; + +namespace Histacom2.OS.Win98.Win98Apps +{ + public partial class WinClassicIE4 : UserControl + { + public static Panel browsingArea = new Panel(); + public static ComboBox addressbar = new ComboBox(); + + public WinClassicIE4() + { + 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.12padams.com": + uc = new _12padams1998(); + break;*/ + default: + uc = new IENoPage(); + 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(); + } + } + } +} -- cgit v1.2.3