diff options
| author | jtsshieh <[email protected]> | 2017-10-28 20:17:22 -0400 |
|---|---|---|
| committer | jtsshieh <[email protected]> | 2017-10-28 20:17:22 -0400 |
| commit | b5cc523276755aa0171705bb65beabf9ddd825d7 (patch) | |
| tree | 8fdc106b0664cc8084a2d0be10acc49d53732cb6 /Histacom2/OS/Win95/Win95Apps/WinClassicIE3.cs | |
| parent | 57817b7534a620841c9a825884a6f5e7ffc2f219 (diff) | |
| download | histacom2-b5cc523276755aa0171705bb65beabf9ddd825d7.tar.gz histacom2-b5cc523276755aa0171705bb65beabf9ddd825d7.tar.bz2 histacom2-b5cc523276755aa0171705bb65beabf9ddd825d7.zip | |
Fixed up time distorter bug, 95 desktop cleanup and ie3 supporting links wihtout www
Diffstat (limited to 'Histacom2/OS/Win95/Win95Apps/WinClassicIE3.cs')
| -rw-r--r-- | Histacom2/OS/Win95/Win95Apps/WinClassicIE3.cs | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/Histacom2/OS/Win95/Win95Apps/WinClassicIE3.cs b/Histacom2/OS/Win95/Win95Apps/WinClassicIE3.cs index de2e4b0..34828cc 100644 --- a/Histacom2/OS/Win95/Win95Apps/WinClassicIE3.cs +++ b/Histacom2/OS/Win95/Win95Apps/WinClassicIE3.cs @@ -34,6 +34,7 @@ namespace Histacom2.OS.Win95.Win95Apps public static async void GoToPage(string url) { + string newURL = url; UserControl uc = new UserControl(); switch (url) @@ -50,12 +51,24 @@ namespace Histacom2.OS.Win95.Win95Apps case "www.12padams.com": uc = new _12padams1998(); break; + case "12padams.com": + uc = new _12padams1998(); + newURL = "www.12padams.com"; + break; + case "google.com": + uc = new GoogleHome(); + newURL = "www.google.com"; + break; + case "google.stanford.edu": + uc = new GooglePrototype(); + newURL = "www.google.stanford.edu"; + break; default: uc = new IENoPage(); break; } - addressbar.Text = url; + addressbar.Text = newURL; uc.Dock = DockStyle.Fill; await Task.Delay(new Random().Next(500, 1500)); |
