aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.cs
diff options
context:
space:
mode:
authorAShifter <[email protected]>2017-04-24 08:25:57 -0600
committerAShifter <[email protected]>2017-04-24 08:25:57 -0600
commit8dd3326bd247b8e31fc16d9ed89a23a2b358f9bf (patch)
tree6df911decc7c25c8b77c67953c6c1ab18bb269bf /TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.cs
parentd2b23d2b1b79f589ed5604ff559a9b6ba8f66c97 (diff)
downloadhistacom2-8dd3326bd247b8e31fc16d9ed89a23a2b358f9bf.tar.gz
histacom2-8dd3326bd247b8e31fc16d9ed89a23a2b358f9bf.tar.bz2
histacom2-8dd3326bd247b8e31fc16d9ed89a23a2b358f9bf.zip
Added WinClassicHWCV
and some other stuff i think
Diffstat (limited to 'TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.cs')
-rw-r--r--TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.cs25
1 files changed, 20 insertions, 5 deletions
diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.cs
index 2e24707..05ba187 100644
--- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.cs
+++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.cs
@@ -21,7 +21,7 @@ namespace TimeHACK.OS.Win95.Win95Apps
{
browsinghistory.Capacity = 99;
BringToFront();
- hidePrograms();
+ hideWebsites();
browsinghistory.Add("www.microsoft.com/internetexplorer4/welcome");
for (int i = 0; i < 99; i++) browsinghistory.Add(null);
welcomeinternetscreen.Show();
@@ -30,7 +30,7 @@ namespace TimeHACK.OS.Win95.Win95Apps
foreach (Control ctrl in Panel1.Controls) ctrl.Font = new Font(TitleScreen.pfc.Families[0], 16F, FontStyle.Regular, GraphicsUnit.Point, ((0)));
}
- private void hidePrograms()
+ private void hideWebsites()
{
googlemain.Hide();
welcomeinternetscreen.Hide();
@@ -71,7 +71,7 @@ namespace TimeHACK.OS.Win95.Win95Apps
private void Label20_Click(object sender, EventArgs e)
{
- hidePrograms();
+ hideWebsites();
padamshidden.Dock = DockStyle.Fill;
padamshidden.Show();
}
@@ -83,7 +83,7 @@ namespace TimeHACK.OS.Win95.Win95Apps
private void Button9_Click(object sender, EventArgs e)
{
-
+ goToSite("www.???.com", false);
}
private void ToolStripMenuItem21_Click(object sender, EventArgs e)
@@ -93,7 +93,7 @@ namespace TimeHACK.OS.Win95.Win95Apps
private void goToSite(string url, bool back)
{
- hidePrograms();
+ hideWebsites();
if (!back)
{
@@ -117,25 +117,40 @@ namespace TimeHACK.OS.Win95.Win95Apps
switch (url)
{
case "www.google.com":
+ addressbar.Text = url;
googlemain.Dock = DockStyle.Fill;
googlemain.Show();
break;
case "www.google.stanford.edu":
+ addressbar.Text = url;
googleprototype.Dock = DockStyle.Fill;
googleprototype.Show();
break;
case "www.alpha.google.com":
+ addressbar.Text = url;
googlealpha.Dock = DockStyle.Fill;
googlealpha.Show();
break;
case "www.12padams.com":
+ addressbar.Text = url;
padamsmain.Dock = DockStyle.Fill;
padamsmain.Show();
break;
case "www.microsoft.com/internetexplorer4/welcome":
+ addressbar.Text = url;
welcomeinternetscreen.Dock = DockStyle.Fill;
welcomeinternetscreen.Show();
break;
+ case "www.???.com":
+ addressbar.Text = url;
+ secretwebsite.Dock = DockStyle.Fill;
+ secretwebsite.Show();
+ break;
+ case "www.12padams.com/???":
+ addressbar.Text = url;
+ padamshidden.Dock = DockStyle.Fill;
+ padamshidden.Show();
+ break;
}
}