Windows Explorer shell program - 4 open windows

  • Thread starter Thread starter SeaMaid
  • Start date Start date
S

SeaMaid

Can someone recommend an alternative to Windows Explorer, where I can have 4
windows open at once for different folders/drives? Must be compatible with
XP Pro SP2.
 
Multiple views shouldn't be an issue with Windows Explorer.

--
Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft Certified Professional
Microsoft MVP [Windows]
http://www.microsoft.com/protect

:
| Can someone recommend an alternative to Windows Explorer, where I can have
4
| windows open at once for different folders/drives? Must be compatible with
| XP Pro SP2.
|
|
 
In
SeaMaid said:
Can someone recommend an alternative to Windows Explorer, where
I can
have 4 windows open at once for different folders/drives? Must
be
compatible with XP Pro SP2.


Are you aware that you can simply open Windows Explorer (or My
Computer) four times?
 
Can someone recommend an alternative to Windows Explorer, where I can have 4
windows open at once for different folders/drives? Must be compatible with
XP Pro SP2.

Nothing stops you from doing that in Windows Explorer.

--
Stan Brown, Oak Road Systems, Tompkins County, New York, USA
http://OakRoadSystems.com
Fortunately, I live in the United States of America, where we are
gradually coming to understand that nothing we do is ever our
fault, especially if it is really stupid. --Dave Barry
 
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>
 
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>
 
I only want 4 Explorer windows SOME of the time, not ALL of the time. I get
the impression that once I use this script, explorer.exe will open ALL the
time with 4 windows. How do I make explorer go back to normal after using
the 4-pane view?
 
It doesn't change any explorer's settings. Use it as a shortcut, it's really just a web page.
 
That's wonderful. Thank you. I will put it in C:\WINDOWS.


"David Candy" <.> wrote in message
It doesn't change any explorer's settings. Use it as a shortcut, it's really
just a web page.
 
Back
Top