aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-08-10 17:12:23 -0400
committerlempamo <[email protected]>2017-08-10 17:12:23 -0400
commitd403481b6cc54a3c9802a218803c56d358d50d77 (patch)
tree5c69ebfd60ea4f637ecb08fc587f9635b4022691
parentb3c84489d5597811822099220dbe28f57b62a9a8 (diff)
downloadhistacom2-d403481b6cc54a3c9802a218803c56d358d50d77.tar.gz
histacom2-d403481b6cc54a3c9802a218803c56d358d50d77.tar.bz2
histacom2-d403481b6cc54a3c9802a218803c56d358d50d77.zip
added part of 12padams page
-rw-r--r--TimeHACK.Main/OS/Win95/Win95Apps/IE4Sites/12padams1998.Designer.cs92
-rw-r--r--TimeHACK.Main/OS/Win95/Win95Apps/IE4Sites/12padams1998.cs20
-rw-r--r--TimeHACK.Main/TimeHACK.Main.csproj9
3 files changed, 121 insertions, 0 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/IE4Sites/12padams1998.Designer.cs b/TimeHACK.Main/OS/Win95/Win95Apps/IE4Sites/12padams1998.Designer.cs
new file mode 100644
index 0000000..bbea29f
--- /dev/null
+++ b/TimeHACK.Main/OS/Win95/Win95Apps/IE4Sites/12padams1998.Designer.cs
@@ -0,0 +1,92 @@
+namespace TimeHACK.OS.Win95.Win95Apps.IE4Sites
+{
+ partial class _12padams1998
+ {
+ /// <summary>
+ /// Required designer variable.
+ /// </summary>
+ private System.ComponentModel.IContainer components = null;
+
+ /// <summary>
+ /// Clean up any resources being used.
+ /// </summary>
+ /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Component Designer generated code
+
+ /// <summary>
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ /// </summary>
+ private void InitializeComponent()
+ {
+ this.label1 = new System.Windows.Forms.Label();
+ this.label2 = new System.Windows.Forms.Label();
+ this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
+ this.SuspendLayout();
+ //
+ // label1
+ //
+ 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.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";
+ //
+ // tableLayoutPanel1
+ //
+ this.tableLayoutPanel1.ColumnCount = 4;
+ this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
+ this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
+ this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
+ this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 25F));
+ this.tableLayoutPanel1.Location = new System.Drawing.Point(327, 96);
+ this.tableLayoutPanel1.Name = "tableLayoutPanel1";
+ this.tableLayoutPanel1.RowCount = 1;
+ this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
+ this.tableLayoutPanel1.Size = new System.Drawing.Size(309, 100);
+ this.tableLayoutPanel1.TabIndex = 2;
+ //
+ // _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.tableLayoutPanel1);
+ this.Controls.Add(this.label2);
+ this.Controls.Add(this.label1);
+ this.Name = "_12padams1998";
+ this.Size = new System.Drawing.Size(959, 483);
+ this.ResumeLayout(false);
+ this.PerformLayout();
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.Label label1;
+ private System.Windows.Forms.Label label2;
+ private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
+ }
+}
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/IE4Sites/12padams1998.cs b/TimeHACK.Main/OS/Win95/Win95Apps/IE4Sites/12padams1998.cs
new file mode 100644
index 0000000..96dadc7
--- /dev/null
+++ b/TimeHACK.Main/OS/Win95/Win95Apps/IE4Sites/12padams1998.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 TimeHACK.OS.Win95.Win95Apps.IE4Sites
+{
+ public partial class _12padams1998 : UserControl
+ {
+ public _12padams1998()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/TimeHACK.Main/TimeHACK.Main.csproj b/TimeHACK.Main/TimeHACK.Main.csproj
index cae5046..cc73245 100644
--- a/TimeHACK.Main/TimeHACK.Main.csproj
+++ b/TimeHACK.Main/TimeHACK.Main.csproj
@@ -144,6 +144,12 @@
<Compile Include="OS\Win2K\Win2KApps\SurviveTheDay.Designer.cs">
<DependentUpon>SurviveTheDay.cs</DependentUpon>
</Compile>
+ <Compile Include="OS\Win95\Win95Apps\IE4Sites\12padams1998.cs">
+ <SubType>UserControl</SubType>
+ </Compile>
+ <Compile Include="OS\Win95\Win95Apps\IE4Sites\12padams1998.Designer.cs">
+ <DependentUpon>12padams1998.cs</DependentUpon>
+ </Compile>
<Compile Include="OS\Win95\Win95Apps\IE4Sites\GoogleHome.cs">
<SubType>UserControl</SubType>
</Compile>
@@ -365,6 +371,9 @@
<EmbeddedResource Include="OS\Win2K\Win2KApps\SurviveTheDay.resx">
<DependentUpon>SurviveTheDay.cs</DependentUpon>
</EmbeddedResource>
+ <EmbeddedResource Include="OS\Win95\Win95Apps\IE4Sites\12padams1998.resx">
+ <DependentUpon>12padams1998.cs</DependentUpon>
+ </EmbeddedResource>
<EmbeddedResource Include="OS\Win95\Win95Apps\IE4Sites\GoogleHome.resx">
<DependentUpon>GoogleHome.cs</DependentUpon>
</EmbeddedResource>