diff options
Diffstat (limited to 'TimeHACK.Main/WinClassicForms/WinClassicInstaller.cs')
| -rw-r--r-- | TimeHACK.Main/WinClassicForms/WinClassicInstaller.cs | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/TimeHACK.Main/WinClassicForms/WinClassicInstaller.cs b/TimeHACK.Main/WinClassicForms/WinClassicInstaller.cs index 11e5ba9..744ca63 100644 --- a/TimeHACK.Main/WinClassicForms/WinClassicInstaller.cs +++ b/TimeHACK.Main/WinClassicForms/WinClassicInstaller.cs @@ -8,7 +8,7 @@ using System.Text; using System.Threading.Tasks; using System.Windows.Forms; -namespace TimeHACK.Engine +namespace TimeHACK.WinClassicForms { public partial class WinClassicInstaller : UserControl { @@ -45,6 +45,11 @@ namespace TimeHACK.Engine { if (Button3.Text == "Finish") { + if (programtoinstall == "Web Chat 1998") + { + ((Windows95)this.ParentForm.ParentForm).WebChatToolStripMenuItem.Visible = true; + ((Form)this.TopLevelControl).Close(); + } if (programtoinstall == "Guess The Number 2") { ((Form)this.TopLevelControl).Close(); @@ -62,8 +67,8 @@ namespace TimeHACK.Engine } if (programtoinstall == "Skindows 95") { + ((Windows95)this.ParentForm.ParentForm).SkindowsToolStripMenuItem.Visible = true; ((Form)this.TopLevelControl).Close(); - //Windows2000.SkindowsToolStripMenuItem.Visible = true; } if (programtoinstall == "Web Chat 2000") { |
