diff options
| author | AShifter <[email protected]> | 2017-04-24 10:39:07 -0600 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-04-24 10:39:07 -0600 |
| commit | d381013ebcba7c4bffc34d3d5caf196723c8d1a5 (patch) | |
| tree | dda28135ac1ec0b98eb27934e6f54c3e3947ed7d /TimeHACK.Main/OS/Win95/Win95.cs | |
| parent | a2a3dc079d5623fda5f0c5ecd846b9ed0ffaa155 (diff) | |
| parent | e2834d00dedda4475205019d8842bd3c7957181e (diff) | |
| download | histacom2-d381013ebcba7c4bffc34d3d5caf196723c8d1a5.tar.gz histacom2-d381013ebcba7c4bffc34d3d5caf196723c8d1a5.tar.bz2 histacom2-d381013ebcba7c4bffc34d3d5caf196723c8d1a5.zip | |
Merge pull request #49 from lempamo/master
see it works fine™️
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95.cs')
| -rw-r--r-- | TimeHACK.Main/OS/Win95/Win95.cs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95.cs b/TimeHACK.Main/OS/Win95/Win95.cs index fd09c2b..a160251 100644 --- a/TimeHACK.Main/OS/Win95/Win95.cs +++ b/TimeHACK.Main/OS/Win95/Win95.cs @@ -17,10 +17,12 @@ namespace TimeHACK.OS.Win95 private SoundPlayer stopsound; public WindowManager wm = new WindowManager(); - public List<WinClassic> nonimportantapps; + public List<WinClassic> nonimportantapps = new List<WinClassic>(); public WinClassic webchat; public WinClassic ie; + public int currentappcount = 0; + public bool webchatInstalled = false; // Init the form @@ -55,6 +57,7 @@ namespace TimeHACK.OS.Win95 // Set the StartMenu seperator startmenuitems.Items.Insert(6, new ToolStripSeparator()); + //nonimportantapps.Capacity = 100; this.SendToBack(); } @@ -114,7 +117,7 @@ namespace TimeHACK.OS.Win95 // Give Year Code - NYI private void taskbartime_Click(object sender, EventArgs e) { - + //TODO: Set Up Year Codes } // Set the Clock |
