David, where do I put this file?
"David Candy" <.> wrote in message
Copy below into a text document and name it 4paneview.hta. Change the Src=
lines to change starting folder. As is it does C:\, D:\, E:\, and F:\.
<html>
<head>
<STYLE>
A {font-size: 85%;color: black;font-weight:bold; text-decoration:
none;cursor: hand}
A:hover {font-size: 85%;color: red;font-weight:bold; text-decoration:
none;;cursor: hand}
body {margin:0px; padding:0px; background-color:menu}
table {margin:0px; padding:5px; border:2; width:100%; height:100%;
background-color:menu}
tr {height:50%}
td {width:50%}
IFRAME {width:100%; height:90%}
</STYLE>
<HTA:APPLICATION ID="oHTA"
APPLICATIONNAME="Mini Folder View"
BORDER="thin"
BORDERSTYLE="normal"
CAPTION="Opening..."
ICON="favicon.ico"
MAXIMIZEBUTTON="yes"
MINIMIZEBUTTON="yes"
SHOWINTASKBAR="yes"
SINGLEINSTANCE="no"
SYSMENU="yes"
VERSION="1.0"
WINDOWSTATE="normal"</head>
<body scroll=no>
<table>
<tr>
<td>
<a onclick="document.all.IFrame1.src='file:///c:\\'">Goto C:\</a><br>
<IFRAME style="width:100%;height:90%" ID="IFrame1" FRAMEBORDER=5
SCROLLING=NO SRC="file:///c:\"></IFRAME>
</td>
<td>
<a onclick="document.all.IFrame2.src='file:///d:\\'">Goto D:\</a><br>
<IFRAME ID="IFrame2" FRAMEBORDER=5 SCROLLING=NO SRC="file:///d:\"></IFRAME>
</td>
</tr>
<tr>
<td>
<a onclick="document.all.IFrame3.src='file:///e:\\'">Goto E:\</a><br>
<IFRAME ID="IFrame3" FRAMEBORDER=5 SCROLLING=NO SRC="file:///e:\"></IFRAME>
</td>
<td>
<a onclick="document.all.IFrame4.src='file:///f:\\'">Goto F:\</a><br>
<IFRAME ID="IFrame4" FRAMEBORDER=5 SCROLLING=NO SRC="file:///f:\"></IFRAME>
</td>
</tr>
</table>
</body>
</html>