Mark R. Blain said:
Although I'm not an IE fan, this sounds like fun just as a test.
Where could I find a generic .hta file to try?
Hmm. A few that I saved to disk no longer function -- which could be to do
with MSIE security updates. But, this one below still works for me. To see
how it does on your system, save as *.HTA.
<HTML><HEAD>
<TITLE>MyBrowser</TITLE>
<HTA:APPLICATION
ID="oHTA"
ICON="MyBrowser.ico" >
<SCRIPT LANGUAGE="VBScript">
Option Explicit
Sub btnGo_onclick
Dim strAddr
strAddr = txtAddress.value
If InStr(1, strAddr, "://") = 0 Then
strAddr = "http://" & strAddr
End If
frmClient.document.location.href = strAddr
End Sub
Sub btnBack_onclick
frmClient.history.back
End Sub
Sub btnFwd_onclick
frmClient.history.forward
End Sub
</SCRIPT></HEAD>
<BODY scroll="no">
<B>Address:</B>
<INPUT TYPE="Text" ID="txtAddress">
<INPUT TYPE="Submit" ID="btnGo" VALUE="Go">
<BUTTON ID="btnBack" STYLE="position:relative;left:50px">
< Back</BUTTON>
<BUTTON ID="btnFwd" STYLE="position:relative;left:50px">
Forward ></BUTTON>
<P>
<IFRAME ID="frmClient"
TRUSTED="yes"
SRC="
http://www.pricelessware.org"
WIDTH="100%" HEIGHT="90%" >
</IFRAME>
</BODY></HTML>