diff options
| author | lempamo <[email protected]> | 2017-04-28 13:31:20 -0400 |
|---|---|---|
| committer | lempamo <[email protected]> | 2017-04-28 13:31:20 -0400 |
| commit | d09495e545fecf9bed7b110115c7c844a8ed0d39 (patch) | |
| tree | 2dd9965cdb8dd787120bc41c63f700f29154cdd0 | |
| parent | 5cc3fdda9a2e219f21803bf5dedd810ec572fec7 (diff) | |
| download | histacom2-d09495e545fecf9bed7b110115c7c844a8ed0d39.tar.gz histacom2-d09495e545fecf9bed7b110115c7c844a8ed0d39.tar.bz2 histacom2-d09495e545fecf9bed7b110115c7c844a8ed0d39.zip | |
FIXED IE4 padams
18 files changed, 67 insertions, 37 deletions
diff --git a/.vs/TimeHACK/v14/.suo b/.vs/TimeHACK/v14/.suo Binary files differindex 05bca1a..cb4a298 100644 --- a/.vs/TimeHACK/v14/.suo +++ b/.vs/TimeHACK/v14/.suo diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.cs b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.cs index 2313ded..2b587d2 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.cs +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.cs @@ -14,11 +14,15 @@ namespace TimeHACK.OS.Win95.Win95Apps public int historylocation = 0; public HtmlDocument currentsite; + private Timer loadplz = new Timer(); public WinClassicIE4() { InitializeComponent(); + loadplz.Tick += new EventHandler(loadplz_Tick); + loadplz.Interval = 10; } + private void WinClassicIE4_Load(object sender, EventArgs e) { browsinghistory.Capacity = 99; @@ -188,15 +192,27 @@ namespace TimeHACK.OS.Win95.Win95Apps private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e) { - switch (addressbar.Text) + loadplz.Start(); + } + + private void loadplz_Tick(object sender, EventArgs e) + { + try { - case "www.microsoft.com/internetexplorer4/welcome": - webBrowser1.Document.GetElementById("padams").Click += new HtmlElementEventHandler(padams_LinkClicked); - break; - case "www.12padams.com": - webBrowser1.Document.GetElementById("wc_b").Click += new HtmlElementEventHandler(WCDownloadButton_Click); - webBrowser1.Document.GetElementById("distort").Style += "visibility:hidden;"; - break; + switch (currentsite.Title) + { + case "IE4START": + webBrowser1.Document.GetElementById("padams").Click += new HtmlElementEventHandler(padams_LinkClicked); + break; + case "12PADAMS": + webBrowser1.Document.GetElementById("wc_b").Click += new HtmlElementEventHandler(WCDownloadButton_Click); + webBrowser1.Document.GetElementById("distort").Style += "visibility:hidden;"; + break; + } + loadplz.Stop(); + } catch + { + } } diff --git a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.resx b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.resx index 6848c3f..dd84e1b 100644 --- a/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.resx +++ b/TimeHACK.Main/OS/Win95/Win95Apps/WinClassicIE4.resx @@ -202,6 +202,7 @@ So Please enjoy Using this amzing software and show the world what your made of. <data name="ie4start_HTML" xml:space="preserve"> <value><html> <head> + <title>IE4START</title> <style> body { font-family: "Microsoft Sans Serif"; @@ -223,6 +224,11 @@ So Please enjoy Using this amzing software and show the world what your made of. p.end { font-size: 9.75pt; } + a { + color: blue; + text-decoration: underline; + cursor: hand; + } </style> </head> <body> @@ -233,8 +239,8 @@ Just type an address in the location bar above and then press go.<br> Instantly you will be taken to the webpage of your choosing.<br> Where do you want to go today?</p> <h2>Here are some sites you may want to visit.</h2> - <a id="google" href="google">www.google.com</a><br> - <a id="padams" href="12padams">www.12padams.com</a> + <a id="google">www.google.com</a><br> + <a id="padams">www.12padams.com</a> <p class="end">Where do you want to go today?</p> </body> </html></value> @@ -245,6 +251,7 @@ Where do you want to go today?</p> <data name="padams_HTML" xml:space="preserve"> <value><html> <head> + <title>12PADAMS</title> <style> body { font-family: "Microsoft Sans Serif"; diff --git a/TimeHACK.Main/Resources/IE4/ie4start.html b/TimeHACK.Main/Resources/IE4/ie4start.html index 6a0f5d4..50b0ac7 100644 --- a/TimeHACK.Main/Resources/IE4/ie4start.html +++ b/TimeHACK.Main/Resources/IE4/ie4start.html @@ -1,5 +1,6 @@ <html> <head> + <title>IE4START</title> <style> body { font-family: "Microsoft Sans Serif"; @@ -21,6 +22,11 @@ p.end { font-size: 9.75pt; } + a { + color: blue; + text-decoration: underline; + cursor: hand; + } </style> </head> <body> @@ -31,8 +37,8 @@ Just type an address in the location bar above and then press go.<br> Instantly you will be taken to the webpage of your choosing.<br> Where do you want to go today?</p> <h2>Here are some sites you may want to visit.</h2> - <a id="google" href="google">www.google.com</a><br> - <a id="padams" href="12padams">www.12padams.com</a> + <a id="google">www.google.com</a><br> + <a id="padams">www.12padams.com</a> <p class="end">Where do you want to go today?</p> </body> </html>
\ No newline at end of file diff --git a/TimeHACK.Main/Resources/IE4/padams.html b/TimeHACK.Main/Resources/IE4/padams.html index 9135372..d8846bf 100644 --- a/TimeHACK.Main/Resources/IE4/padams.html +++ b/TimeHACK.Main/Resources/IE4/padams.html @@ -1,5 +1,6 @@ <html> <head> + <title>12PADAMS</title> <style> body { font-family: "Microsoft Sans Serif"; @@ -31,7 +32,7 @@ p.app button { float: right; background-color: silver; - border-color: gray black black gray; + border-color: white black black white; margin-right: 2px; } a { diff --git a/TimeHACK.Main/bin/Release/TimeHACK.application b/TimeHACK.Main/bin/Release/TimeHACK.application index 8b3f714..eb8982c 100644 --- a/TimeHACK.Main/bin/Release/TimeHACK.application +++ b/TimeHACK.Main/bin/Release/TimeHACK.application @@ -7,14 +7,14 @@ <framework targetVersion="4.5.2" profile="Full" supportedRuntime="4.0.30319" /> </compatibleFrameworks> <dependency> - <dependentAssembly dependencyType="install" codebase="TimeHACK.exe.manifest" size="21659"> + <dependentAssembly dependencyType="install" codebase="TimeHACK.exe.manifest" size="21660"> <assemblyIdentity name="TimeHACK.exe" version="1.0.1.0" publicKeyToken="0000000000000000" language="en" processorArchitecture="msil" type="win32" /> <hash> <dsig:Transforms> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> </dsig:Transforms> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> - <dsig:DigestValue>vHi7xufEvEMe3FEj7XTlr08MEyWO/Lb3VmGVgDT5tDU=</dsig:DigestValue> + <dsig:DigestValue>zOyKVkJ0M+XRw4fKPkwasm37BQw8A8OmjCJZS9f8SfU=</dsig:DigestValue> </hash> </dependentAssembly> </dependency> diff --git a/TimeHACK.Main/bin/Release/TimeHACK.exe b/TimeHACK.Main/bin/Release/TimeHACK.exe Binary files differindex ceb5ac8..c472ad4 100644 --- a/TimeHACK.Main/bin/Release/TimeHACK.exe +++ b/TimeHACK.Main/bin/Release/TimeHACK.exe diff --git a/TimeHACK.Main/bin/Release/TimeHACK.exe.manifest b/TimeHACK.Main/bin/Release/TimeHACK.exe.manifest index 5a9522e..4a3e808 100644 --- a/TimeHACK.Main/bin/Release/TimeHACK.exe.manifest +++ b/TimeHACK.Main/bin/Release/TimeHACK.exe.manifest @@ -56,14 +56,14 @@ </dependentAssembly> </dependency> <dependency> - <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.exe" size="6236160"> + <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.exe" size="6236672"> <assemblyIdentity name="TimeHACK" version="1.0.0.0" language="neutral" processorArchitecture="msil" /> <hash> <dsig:Transforms> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> </dsig:Transforms> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> - <dsig:DigestValue>EbCIdG1Ab3JzTNNqRbMWFm4+590vGZ3Sg4QxN1qsWac=</dsig:DigestValue> + <dsig:DigestValue>YlKo3t31Qw/hrQS13k7F6qxBoDYDUWdilhGkeGzu+cs=</dsig:DigestValue> </hash> </dependentAssembly> </dependency> @@ -97,22 +97,22 @@ <dsig:DigestValue>nzG7pg3H+3uPdr/lzLxyroAH8XD1zvIYW4peV9fAD6M=</dsig:DigestValue> </hash> </file> - <file name="Resources\IE4\ie4start.html" size="980"> + <file name="Resources\IE4\ie4start.html" size="1039"> <hash> <dsig:Transforms> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> </dsig:Transforms> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> - <dsig:DigestValue>Sf4jcnpqMm+8SKOCp6p1gJdzo9VpBKwFezayuSmHm+Q=</dsig:DigestValue> + <dsig:DigestValue>CEJZujPF/+of1WwNtfnyeY48uATNNueVLQXu5DlTwDQ=</dsig:DigestValue> </hash> </file> - <file name="Resources\IE4\padams.html" size="1960"> + <file name="Resources\IE4\padams.html" size="1987"> <hash> <dsig:Transforms> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> </dsig:Transforms> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> - <dsig:DigestValue>FZPOIkZkFLT3KRMLipbNDuiMStSRNyrKMeGEMi5HZEQ=</dsig:DigestValue> + <dsig:DigestValue>1FVyioVjFo28QI7JxXHtc/9KD0YRl0Jp7cwZC3JrN4I=</dsig:DigestValue> </hash> </file> <file name="Resources\ie4start.html" size="956"> diff --git a/TimeHACK.Main/bin/Release/TimeHACK.pdb b/TimeHACK.Main/bin/Release/TimeHACK.pdb Binary files differindex 6c21c8e..b04039f 100644 --- a/TimeHACK.Main/bin/Release/TimeHACK.pdb +++ b/TimeHACK.Main/bin/Release/TimeHACK.pdb diff --git a/TimeHACK.Main/bin/Release/TimeHACK.vshost.application b/TimeHACK.Main/bin/Release/TimeHACK.vshost.application index 8b3f714..eb8982c 100644 --- a/TimeHACK.Main/bin/Release/TimeHACK.vshost.application +++ b/TimeHACK.Main/bin/Release/TimeHACK.vshost.application @@ -7,14 +7,14 @@ <framework targetVersion="4.5.2" profile="Full" supportedRuntime="4.0.30319" /> </compatibleFrameworks> <dependency> - <dependentAssembly dependencyType="install" codebase="TimeHACK.exe.manifest" size="21659"> + <dependentAssembly dependencyType="install" codebase="TimeHACK.exe.manifest" size="21660"> <assemblyIdentity name="TimeHACK.exe" version="1.0.1.0" publicKeyToken="0000000000000000" language="en" processorArchitecture="msil" type="win32" /> <hash> <dsig:Transforms> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> </dsig:Transforms> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> - <dsig:DigestValue>vHi7xufEvEMe3FEj7XTlr08MEyWO/Lb3VmGVgDT5tDU=</dsig:DigestValue> + <dsig:DigestValue>zOyKVkJ0M+XRw4fKPkwasm37BQw8A8OmjCJZS9f8SfU=</dsig:DigestValue> </hash> </dependentAssembly> </dependency> diff --git a/TimeHACK.Main/bin/Release/TimeHACK.vshost.exe.manifest b/TimeHACK.Main/bin/Release/TimeHACK.vshost.exe.manifest index 5a9522e..4a3e808 100644 --- a/TimeHACK.Main/bin/Release/TimeHACK.vshost.exe.manifest +++ b/TimeHACK.Main/bin/Release/TimeHACK.vshost.exe.manifest @@ -56,14 +56,14 @@ </dependentAssembly> </dependency> <dependency> - <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.exe" size="6236160"> + <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.exe" size="6236672"> <assemblyIdentity name="TimeHACK" version="1.0.0.0" language="neutral" processorArchitecture="msil" /> <hash> <dsig:Transforms> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> </dsig:Transforms> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> - <dsig:DigestValue>EbCIdG1Ab3JzTNNqRbMWFm4+590vGZ3Sg4QxN1qsWac=</dsig:DigestValue> + <dsig:DigestValue>YlKo3t31Qw/hrQS13k7F6qxBoDYDUWdilhGkeGzu+cs=</dsig:DigestValue> </hash> </dependentAssembly> </dependency> @@ -97,22 +97,22 @@ <dsig:DigestValue>nzG7pg3H+3uPdr/lzLxyroAH8XD1zvIYW4peV9fAD6M=</dsig:DigestValue> </hash> </file> - <file name="Resources\IE4\ie4start.html" size="980"> + <file name="Resources\IE4\ie4start.html" size="1039"> <hash> <dsig:Transforms> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> </dsig:Transforms> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> - <dsig:DigestValue>Sf4jcnpqMm+8SKOCp6p1gJdzo9VpBKwFezayuSmHm+Q=</dsig:DigestValue> + <dsig:DigestValue>CEJZujPF/+of1WwNtfnyeY48uATNNueVLQXu5DlTwDQ=</dsig:DigestValue> </hash> </file> - <file name="Resources\IE4\padams.html" size="1960"> + <file name="Resources\IE4\padams.html" size="1987"> <hash> <dsig:Transforms> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> </dsig:Transforms> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> - <dsig:DigestValue>FZPOIkZkFLT3KRMLipbNDuiMStSRNyrKMeGEMi5HZEQ=</dsig:DigestValue> + <dsig:DigestValue>1FVyioVjFo28QI7JxXHtc/9KD0YRl0Jp7cwZC3JrN4I=</dsig:DigestValue> </hash> </file> <file name="Resources\ie4start.html" size="956"> diff --git a/TimeHACK.Main/bin/Release/app.publish/TimeHACK.exe b/TimeHACK.Main/bin/Release/app.publish/TimeHACK.exe Binary files differindex ceb5ac8..c472ad4 100644 --- a/TimeHACK.Main/bin/Release/app.publish/TimeHACK.exe +++ b/TimeHACK.Main/bin/Release/app.publish/TimeHACK.exe diff --git a/TimeHACK.Main/obj/Release/TimeHACK.Main.csproj.GenerateResource.Cache b/TimeHACK.Main/obj/Release/TimeHACK.Main.csproj.GenerateResource.Cache Binary files differindex fc1c4e5..37ece55 100644 --- a/TimeHACK.Main/obj/Release/TimeHACK.Main.csproj.GenerateResource.Cache +++ b/TimeHACK.Main/obj/Release/TimeHACK.Main.csproj.GenerateResource.Cache diff --git a/TimeHACK.Main/obj/Release/TimeHACK.OS.Win95.Win95Apps.WinClassicIE4.resources b/TimeHACK.Main/obj/Release/TimeHACK.OS.Win95.Win95Apps.WinClassicIE4.resources Binary files differindex f3d7f94..944cf3b 100644 --- a/TimeHACK.Main/obj/Release/TimeHACK.OS.Win95.Win95Apps.WinClassicIE4.resources +++ b/TimeHACK.Main/obj/Release/TimeHACK.OS.Win95.Win95Apps.WinClassicIE4.resources diff --git a/TimeHACK.Main/obj/Release/TimeHACK.application b/TimeHACK.Main/obj/Release/TimeHACK.application index 8b3f714..eb8982c 100644 --- a/TimeHACK.Main/obj/Release/TimeHACK.application +++ b/TimeHACK.Main/obj/Release/TimeHACK.application @@ -7,14 +7,14 @@ <framework targetVersion="4.5.2" profile="Full" supportedRuntime="4.0.30319" /> </compatibleFrameworks> <dependency> - <dependentAssembly dependencyType="install" codebase="TimeHACK.exe.manifest" size="21659"> + <dependentAssembly dependencyType="install" codebase="TimeHACK.exe.manifest" size="21660"> <assemblyIdentity name="TimeHACK.exe" version="1.0.1.0" publicKeyToken="0000000000000000" language="en" processorArchitecture="msil" type="win32" /> <hash> <dsig:Transforms> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> </dsig:Transforms> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> - <dsig:DigestValue>vHi7xufEvEMe3FEj7XTlr08MEyWO/Lb3VmGVgDT5tDU=</dsig:DigestValue> + <dsig:DigestValue>zOyKVkJ0M+XRw4fKPkwasm37BQw8A8OmjCJZS9f8SfU=</dsig:DigestValue> </hash> </dependentAssembly> </dependency> diff --git a/TimeHACK.Main/obj/Release/TimeHACK.exe b/TimeHACK.Main/obj/Release/TimeHACK.exe Binary files differindex ceb5ac8..c472ad4 100644 --- a/TimeHACK.Main/obj/Release/TimeHACK.exe +++ b/TimeHACK.Main/obj/Release/TimeHACK.exe diff --git a/TimeHACK.Main/obj/Release/TimeHACK.exe.manifest b/TimeHACK.Main/obj/Release/TimeHACK.exe.manifest index 5a9522e..4a3e808 100644 --- a/TimeHACK.Main/obj/Release/TimeHACK.exe.manifest +++ b/TimeHACK.Main/obj/Release/TimeHACK.exe.manifest @@ -56,14 +56,14 @@ </dependentAssembly> </dependency> <dependency> - <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.exe" size="6236160"> + <dependentAssembly dependencyType="install" allowDelayedBinding="true" codebase="TimeHACK.exe" size="6236672"> <assemblyIdentity name="TimeHACK" version="1.0.0.0" language="neutral" processorArchitecture="msil" /> <hash> <dsig:Transforms> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> </dsig:Transforms> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> - <dsig:DigestValue>EbCIdG1Ab3JzTNNqRbMWFm4+590vGZ3Sg4QxN1qsWac=</dsig:DigestValue> + <dsig:DigestValue>YlKo3t31Qw/hrQS13k7F6qxBoDYDUWdilhGkeGzu+cs=</dsig:DigestValue> </hash> </dependentAssembly> </dependency> @@ -97,22 +97,22 @@ <dsig:DigestValue>nzG7pg3H+3uPdr/lzLxyroAH8XD1zvIYW4peV9fAD6M=</dsig:DigestValue> </hash> </file> - <file name="Resources\IE4\ie4start.html" size="980"> + <file name="Resources\IE4\ie4start.html" size="1039"> <hash> <dsig:Transforms> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> </dsig:Transforms> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> - <dsig:DigestValue>Sf4jcnpqMm+8SKOCp6p1gJdzo9VpBKwFezayuSmHm+Q=</dsig:DigestValue> + <dsig:DigestValue>CEJZujPF/+of1WwNtfnyeY48uATNNueVLQXu5DlTwDQ=</dsig:DigestValue> </hash> </file> - <file name="Resources\IE4\padams.html" size="1960"> + <file name="Resources\IE4\padams.html" size="1987"> <hash> <dsig:Transforms> <dsig:Transform Algorithm="urn:schemas-microsoft-com:HashTransforms.Identity" /> </dsig:Transforms> <dsig:DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha256" /> - <dsig:DigestValue>FZPOIkZkFLT3KRMLipbNDuiMStSRNyrKMeGEMi5HZEQ=</dsig:DigestValue> + <dsig:DigestValue>1FVyioVjFo28QI7JxXHtc/9KD0YRl0Jp7cwZC3JrN4I=</dsig:DigestValue> </hash> </file> <file name="Resources\ie4start.html" size="956"> diff --git a/TimeHACK.Main/obj/Release/TimeHACK.pdb b/TimeHACK.Main/obj/Release/TimeHACK.pdb Binary files differindex 6c21c8e..b04039f 100644 --- a/TimeHACK.Main/obj/Release/TimeHACK.pdb +++ b/TimeHACK.Main/obj/Release/TimeHACK.pdb |
