diff options
| author | lempamo <[email protected]> | 2018-02-19 17:52:06 -0500 |
|---|---|---|
| committer | lempamo <[email protected]> | 2018-02-19 17:52:06 -0500 |
| commit | 4d432950a15adab71e57c18f297999e2ba70ef40 (patch) | |
| tree | 220f0996c1721e3a7e93b2aa99ea07544b0556d2 | |
| parent | 2c75460cc1af3af4c56a4a84d991a86ec610cfb7 (diff) | |
| download | histacom2-4d432950a15adab71e57c18f297999e2ba70ef40.tar.gz histacom2-4d432950a15adab71e57c18f297999e2ba70ef40.tar.bz2 histacom2-4d432950a15adab71e57c18f297999e2ba70ef40.zip | |
lets get this show on the road again
4 files changed, 29 insertions, 1 deletions
diff --git a/Histacom2/OS/WinXPBad/Story/Hack4.cs b/Histacom2/OS/WinXPBad/Story/Hack4.cs index 96c262e..94ca16b 100644 --- a/Histacom2/OS/WinXPBad/Story/Hack4.cs +++ b/Histacom2/OS/WinXPBad/Story/Hack4.cs @@ -120,6 +120,16 @@ namespace Histacom2.OS.WinXPBad.Story new AchievementBox(1); } + public static async void Travel2K() + { + + } + + public static async void TravelME() + { + + } + public static async void LabelMaker() { while (!Stop) diff --git a/Histacom2/OS/WinXPBad/WinClassicTimeDistorter3Bad.Designer.cs b/Histacom2/OS/WinXPBad/WinClassicTimeDistorter3Bad.Designer.cs index 61fff46..d1569d3 100644 --- a/Histacom2/OS/WinXPBad/WinClassicTimeDistorter3Bad.Designer.cs +++ b/Histacom2/OS/WinXPBad/WinClassicTimeDistorter3Bad.Designer.cs @@ -28,12 +28,14 @@ /// </summary> private void InitializeComponent() { + this.components = new System.ComponentModel.Container(); this.classicLabel1 = new Histacom2.Engine.UI.ClassicLabel(); this.buttonXP1 = new PinkieControls.ButtonXP(); this.buttonXP2 = new PinkieControls.ButtonXP(); this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); + this.timer1 = new System.Windows.Forms.Timer(this.components); this.SuspendLayout(); // // classicLabel1 @@ -59,6 +61,7 @@ this.buttonXP1.Size = new System.Drawing.Size(101, 25); this.buttonXP1.TabIndex = 3; this.buttonXP1.Text = "Travel to 2000"; + this.buttonXP1.Click += new System.EventHandler(this.buttonXP1_Click); // // buttonXP2 // @@ -72,6 +75,7 @@ this.buttonXP2.Size = new System.Drawing.Size(101, 25); this.buttonXP2.TabIndex = 4; this.buttonXP2.Text = "Travel to 2001"; + this.buttonXP2.Click += new System.EventHandler(this.buttonXP2_Click); // // label1 // @@ -100,7 +104,7 @@ 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(119, 28); this.label3.Name = "label3"; - this.label3.Size = new System.Drawing.Size(103, 16); + this.label3.Size = new System.Drawing.Size(98, 16); this.label3.TabIndex = 7; this.label3.Text = "Current Year:"; this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; @@ -131,5 +135,6 @@ private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label2; private System.Windows.Forms.Label label3; + private System.Windows.Forms.Timer timer1; } } diff --git a/Histacom2/OS/WinXPBad/WinClassicTimeDistorter3Bad.cs b/Histacom2/OS/WinXPBad/WinClassicTimeDistorter3Bad.cs index 27351a2..a4e4bef 100644 --- a/Histacom2/OS/WinXPBad/WinClassicTimeDistorter3Bad.cs +++ b/Histacom2/OS/WinXPBad/WinClassicTimeDistorter3Bad.cs @@ -16,5 +16,15 @@ namespace Histacom2.OS.WinXPBad { InitializeComponent(); } + + private void buttonXP1_Click(object sender, EventArgs e) + { + + } + + private void buttonXP2_Click(object sender, EventArgs e) + { + + } } } diff --git a/Histacom2/OS/WinXPBad/WinClassicTimeDistorter3Bad.resx b/Histacom2/OS/WinXPBad/WinClassicTimeDistorter3Bad.resx index 1af7de1..1f666f2 100644 --- a/Histacom2/OS/WinXPBad/WinClassicTimeDistorter3Bad.resx +++ b/Histacom2/OS/WinXPBad/WinClassicTimeDistorter3Bad.resx @@ -117,4 +117,7 @@ <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> + <metadata name="timer1.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"> + <value>17, 17</value> + </metadata> </root>
\ No newline at end of file |
