- Windows Explorer shell program - 4 open windows
- Posted by SeaMaid on September 26th, 2005
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.
- Posted by Dave Patrick on September 26th, 2005
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
"SeaMaid" wrote:
| 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.
|
|
- Posted by Ken Blake on September 26th, 2005
In news:OPpDjHswFHA.900@TK2MSFTNGP11.phx.gbl,
SeaMaid <seamaid24-graphics@yahoo.com> typed:
> 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?
--
Ken Blake - Microsoft MVP Windows: Shell/User
Please reply to the newsgroup
- Posted by Phillips on September 27th, 2005
As other have replied, you can run 4 or more instances of WE.
If you need a better file manager, Directory Opus 8.0 is one of them; free
30 days trial at http://www.gpsoft.com.au/
Michael
"SeaMaid" <seamaid24-graphics@yahoo.com> wrote in message
news:OPpDjHswFHA.900@TK2MSFTNGP11.phx.gbl...
> 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.
>
- Posted by Stan Brown on September 27th, 2005
On Mon, 26 Sep 2005 10:44:04 -0700 in
microsoft.public.windowsxp.customize, SeaMaid favored us with...
> 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
- Posted by David Candy on September 27th, 2005
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>
--
--------------------------------------------------------------------------------------------------
http://webdiary.smh.com.au/archives/...nt/001075.html
=================================================
"SeaMaid" <seamaid24-graphics@yahoo.com> wrote in message news:OPpDjHswFHA.900@TK2MSFTNGP11.phx.gbl...
> 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.
>
>
- Posted by SeaMaid on September 27th, 2005
David, where do I put this file?
"David Candy" <.> wrote in message
news:%23bBH%2320wFHA.2656@TK2MSFTNGP09.phx.gbl...
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>
--
--------------------------------------------------------------------------------------------------
http://webdiary.smh.com.au/archives/...nt/001075.html
=================================================
"SeaMaid" <seamaid24-graphics@yahoo.com> wrote in message
news:OPpDjHswFHA.900@TK2MSFTNGP11.phx.gbl...
> 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.
>
>
- Posted by Homer J. Simpson on September 27th, 2005
> David, where do I put this file?
Anywhere. Are you getting some error?
- Posted by SeaMaid on September 28th, 2005
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?
"Homer J. Simpson" <root@127.0.0.1> wrote in message
news:uJQKZg6wFHA.2516@TK2MSFTNGP12.phx.gbl...
>> David, where do I put this file?
>
> Anywhere. Are you getting some error?
>
>
- Posted by David Candy on September 28th, 2005
It doesn't change any explorer's settings. Use it as a shortcut, it's really just a web page.
--
--------------------------------------------------------------------------------------------------
http://webdiary.smh.com.au/archives/...nt/001075.html
=================================================
"SeaMaid" <seamaid24-graphics@yahoo.com> wrote in message news:uZFSVu9wFHA.2312@TK2MSFTNGP14.phx.gbl...
>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?
>
>
> "Homer J. Simpson" <root@127.0.0.1> wrote in message
> news:uJQKZg6wFHA.2516@TK2MSFTNGP12.phx.gbl...
>>> David, where do I put this file?
>>
>> Anywhere. Are you getting some error?
>>
>>
>
>
- Posted by SeaMaid on September 28th, 2005
That's wonderful. Thank you. I will put it in C:\WINDOWS.
"David Candy" <.> wrote in message
news:OkQ1089wFHA.2132@TK2MSFTNGP15.phx.gbl...
It doesn't change any explorer's settings. Use it as a shortcut, it's really
just a web page.
--
--------------------------------------------------------------------------------------------------
http://webdiary.smh.com.au/archives/...nt/001075.html
=================================================
"SeaMaid" <seamaid24-graphics@yahoo.com> wrote in message
news:uZFSVu9wFHA.2312@TK2MSFTNGP14.phx.gbl...
>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?
>
>
> "Homer J. Simpson" <root@127.0.0.1> wrote in message
> news:uJQKZg6wFHA.2516@TK2MSFTNGP12.phx.gbl...
>>> David, where do I put this file?
>>
>> Anywhere. Are you getting some error?
>>
>>
>
>