diff options
| author | lempamo <[email protected]> | 2017-04-24 12:34:42 -0400 |
|---|---|---|
| committer | lempamo <[email protected]> | 2017-04-24 12:34:42 -0400 |
| commit | e2834d00dedda4475205019d8842bd3c7957181e (patch) | |
| tree | dda28135ac1ec0b98eb27934e6f54c3e3947ed7d /TimeHACK.Main/OS/Win95/Win95.cs | |
| parent | 9e48a71e65b4c56eae2e7b7f6535b4b115955612 (diff) | |
| download | histacom2-e2834d00dedda4475205019d8842bd3c7957181e.tar.gz histacom2-e2834d00dedda4475205019d8842bd3c7957181e.tar.bz2 histacom2-e2834d00dedda4475205019d8842bd3c7957181e.zip | |
fixed
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 |
