diff options
| author | AShifter <[email protected]> | 2017-03-31 16:38:38 -0600 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-03-31 16:38:38 -0600 |
| commit | 5b29f2242e144a791afd775766e6d540f19c0ba4 (patch) | |
| tree | 1056452ed84ae193ed9e7e9b7c47582feecf4cdc /TimeHACK.Main/OS/Win95/Win95Apps | |
| parent | 9de6d029cc13b3ed2601fec3bf3cfb183b5c35f4 (diff) | |
| parent | 586f0f740898cd7eb7cd59048ba8d59410b2f766 (diff) | |
| download | histacom2-5b29f2242e144a791afd775766e6d540f19c0ba4.tar.gz histacom2-5b29f2242e144a791afd775766e6d540f19c0ba4.tar.bz2 histacom2-5b29f2242e144a791afd775766e6d540f19c0ba4.zip | |
Merge pull request #21 from lempamo/master
fixed namespace
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95Apps')
5 files changed, 13 insertions, 3 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.Designer.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.Designer.cs index 80aab11..2b8a48d 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.Designer.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.Designer.cs @@ -107,7 +107,6 @@ // // button5 // - this.button5.BackgroundImage = global::TimeHACK.Properties.Resources.sliversilver; this.button5.Location = new System.Drawing.Point(97, 13); this.button5.Name = "button5"; this.button5.Size = new System.Drawing.Size(75, 23); @@ -197,6 +196,7 @@ this.button1.TabIndex = 4; this.button1.Text = "Login"; this.button1.UseVisualStyleBackColor = true; + this.button1.Click += new System.EventHandler(this.Button1_Click); // // txtscreenname // diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.cs index 3f4810e..8df610f 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WebChat1998.cs @@ -7,6 +7,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; +using TimeHACK.Engine; namespace TimeHACK.OS.Win95.Win95Apps { @@ -23,5 +24,13 @@ namespace TimeHACK.OS.Win95.Win95Apps button3.Hide(); label5.Hide(); } + private void Button1_Click(object sender, EventArgs e) + { + if (txtscreenname.Text == "") + { + WindowManager wm = new WindowManager(); + wm.startInfobox95("test", "test"); + } + } } } diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicDownloader.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicDownloader.cs index bed5f21..9df4811 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicDownloader.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicDownloader.cs @@ -1,6 +1,6 @@ using System; using System.Windows.Forms; -using TimeHACK.Main; +using TimeHACK.OS.Win95; namespace TimeHACK.WinClassicForms { diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.cs index 0bae3eb..2b2fc4e 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.cs @@ -3,7 +3,7 @@ using System.Collections.Generic; using System.Drawing; using System.Runtime.InteropServices; using System.Windows.Forms; -using TimeHACK.Main; +using TimeHACK.Engine; namespace TimeHACK.WinClassicForms { diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicInstaller.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicInstaller.cs index 1f514a3..a15b1e1 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicInstaller.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicInstaller.cs @@ -7,6 +7,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; +using TimeHACK.OS.Win95; namespace TimeHACK.WinClassicForms { |
