Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks.

Go Back   Vista Forums > Vista Newsgroups > Vista General

Vista - Any way to make a shortcut to "show windows side by side"...

Reply
 
Old 04-03-2008   #1 (permalink)
David


 
 

Any way to make a shortcut to "show windows side by side"...

to avoid having to right click on taskbar and choose from shortcut
menu? I'd like to have a shortcut sitting in the Quick Launch toolbar
for that feature.

dave

My System SpecsSystem Spec
Old 04-03-2008   #2 (permalink)
Keith Miller \(MVP\)


 
 

Re: Any way to make a shortcut to "show windows side by side"...

Copy & paste the following lines into notepad & save as SideBySide.vbs

-----------------------------
dim objShell

set objShell = CreateObject("Shell.Application")
objShell.TileVertically
set objShell = nothing
-----------------------------

--
Good Luck,

Keith
Microsoft MVP [Windows Shell/User]



"David" <david@xxxxxx> wrote in message
news:av2dncNwXakdpmjanZ2dnUVZ_u2mnZ2d@xxxxxx
Quote:

> to avoid having to right click on taskbar and choose from shortcut menu?
> I'd like to have a shortcut sitting in the Quick Launch toolbar for that
> feature.
>
> dave
My System SpecsSystem Spec
Old 04-04-2008   #3 (permalink)


Vista x64 Ultimate SP2, Windows 7 Ultimate x64
 
 

Re: Any way to make a shortcut to "show windows side by side"...

Quote  Quote: Originally Posted by Keith Miller \(MVP\) View Post
Copy & paste the following lines into notepad & save as SideBySide.vbs

-----------------------------
dim objShell

set objShell = CreateObject("Shell.Application")
objShell.TileVertically
set objShell = nothing
-----------------------------

--
Good Luck,

Keith
Microsoft MVP [Windows Shell/User]



"David" <david@xxxxxx> wrote in message
news:av2dncNwXakdpmjanZ2dnUVZ_u2mnZ2d@xxxxxx
Quote:
> to avoid having to right click on taskbar and choose from shortcut menu?
> I'd like to have a shortcut sitting in the Quick Launch toolbar for that
> feature.
>
> dave
Hi Keith,

What would the VBS code be for the "Undo Show Side by Side" option?

Thank you,
Shawn
My System SpecsSystem Spec
Old 04-04-2008   #4 (permalink)
Keith Miller \(MVP\)


 
 

Re: Any way to make a shortcut to "show windows side by side"...

Good question! Made me learn something new From preliminary testing, it
looks like the UndoMinimizeALL method:

http://msdn2.microsoft.com/en-us/library/bb774106.aspx

has actually taken on the function of, for lack of a better name,
UndoLastWindowArrange -- the script equivalent of whatever 'Undo' command
(if any) is available from the Taskbar context menu at any given time.

----------------------
dim objShell

set objShell = CreateObject("Shell.Application")
objShell.UndoMinimizeALL
set objShell = nothing
---------------------------------------------

Note that 'Minimize All' is no longer a context menu option, but if you
execute 'Minimize All' via the Winkey+M combination, 'Undo Minimize All'
becomes available.

--
Good Luck,

Keith
Microsoft MVP [Windows Shell/User]



"Brink" <Brink.37bx3a@xxxxxx-mx.forums.net> wrote in message
news:Brink.37bx3a@xxxxxx-mx.forums.net...
Quote:

>
> Keith Miller \(MVP\);671802 Wrote:
Quote:

>> Copy & paste the following lines into notepad & save as SideBySide.vbs
>>
>> -----------------------------
>> dim objShell
>>
>> set objShell = CreateObject("Shell.Application")
>> objShell.TileVertically
>> set objShell = nothing
>> -----------------------------
>>
>> --
>> Good Luck,
>>
>> Keith
>> Microsoft MVP [Windows Shell/User]
>>
>>
>>
>> "David" <david@xxxxxx> wrote in message
>> news:av2dncNwXakdpmjanZ2dnUVZ_u2mnZ2d@xxxxxx> > >
Quote:

>> > > to avoid having to right click on taskbar and choose from shortcut
>> > menu?
>> > > I'd like to have a shortcut sitting in the Quick Launch toolbar for
>> > that
>> > > feature.
>> > >
>> > > dave > >
>
> Hi Keith,
>
> What would the VBS code be for the "Undo Show Side by Side" option?
>
> Thank you,
> Shawn
>
>
> --
> Brink
>
> *There are no dumb questions, just the people that do not ask
> them.*
> '*VISTA FORUMS*' (http://www.vistax64.com)
> *Please post feedback to help others.*
My System SpecsSystem Spec
Old 04-04-2008   #5 (permalink)


Vista x64 Ultimate SP2, Windows 7 Ultimate x64
 
 

Re: Any way to make a shortcut to "show windows side by side"...

Quote  Quote: Originally Posted by Keith Miller \(MVP\) View Post
Good question! Made me learn something new From preliminary testing, it
looks like the UndoMinimizeALL method:

UndoMinimizeALL Method (Shell)

has actually taken on the function of, for lack of a better name,
UndoLastWindowArrange -- the script equivalent of whatever 'Undo' command
(if any) is available from the Taskbar context menu at any given time.

----------------------
dim objShell

set objShell = CreateObject("Shell.Application")
objShell.UndoMinimizeALL
set objShell = nothing
---------------------------------------------

Note that 'Minimize All' is no longer a context menu option, but if you
execute 'Minimize All' via the Winkey+M combination, 'Undo Minimize All'
becomes available.

--
Good Luck,

Keith
Microsoft MVP [Windows Shell/User]



"Brink" <Brink.37bx3a@xxxxxx-mx.forums.net> wrote in message
news:Brink.37bx3a@xxxxxx-mx.forums.net...
Quote:
>
> Keith Miller \(MVP\);671802 Wrote:
>
> Hi Keith,
>
> What would the VBS code be for the "Undo Show Side by Side" option?
>
> Thank you,
> Shawn
>
>
> --
> Brink
>
> *There are no dumb questions, just the people that do not ask
> them.*
> '*VISTA FORUMS*' (http://www.vistax64.com)
> *Please post feedback to help others.*
Thank you Keith. I was trying everything around that but that. DOH!

Shawn
My System SpecsSystem Spec
Old 04-04-2008   #6 (permalink)
Keith Miller \(MVP\)


 
 

Re: Any way to make a shortcut to "show windows side by side"...

You're welcome. I posted this info to Community Content on MSDN as well --
we'll see how that works

--
Good Luck,

Keith
Microsoft MVP [Windows Shell/User]



"Brink" <Brink.37c3c3@xxxxxx-mx.forums.net> wrote in message
news:Brink.37c3c3@xxxxxx-mx.forums.net...
Quote:

>
> Keith Miller \(MVP\);671896 Wrote:
Quote:

>> Good question! Made me learn something new From preliminary testing,
>> it
>> looks like the UndoMinimizeALL method:
>>
>> 'UndoMinimizeALL Method (Shell)'
>> (http://msdn2.microsoft.com/en-us/library/bb774106.aspx)
>>
>> has actually taken on the function of, for lack of a better name,
>> UndoLastWindowArrange -- the script equivalent of whatever 'Undo'
>> command
>> (if any) is available from the Taskbar context menu at any given time.
>>
>> ----------------------
>> dim objShell
>>
>> set objShell = CreateObject("Shell.Application")
>> objShell.UndoMinimizeALL
>> set objShell = nothing
>> ---------------------------------------------
>>
>> Note that 'Minimize All' is no longer a context menu option, but if you
>> execute 'Minimize All' via the Winkey+M combination, 'Undo Minimize
>> All'
>> becomes available.
>>
>> --
>> Good Luck,
>>
>> Keith
>> Microsoft MVP [Windows Shell/User]
>>
>>
>>
>> "Brink" <Brink.37bx3a@xxxxxx-mx.forums.net> wrote in message
>> news:Brink.37bx3a@xxxxxx-mx.forums.net...> > >
Quote:

>> > >
>> > > Keith Miller \(MVP\);671802 Wrote:
>> > >
>> > > Hi Keith,
>> > >
>> > > What would the VBS code be for the "Undo Show Side by Side" option?
>> > >
>> > > Thank you,
>> > > Shawn
>> > >
>> > >
>> > > --
>> > > Brink
>> > >
>> > > *There are no dumb questions, just the people that do not ask
>> > > them.*
>> > > '*VISTA FORUMS*' (http://www.vistax64.com)
>> > > *Please post feedback to help others.* > >
>
> Thank you Keith. I was trying everything around that but that. DOH!
>
> Shawn
>
>
> --
> Brink
>
> *There are no dumb questions, just the people that do not ask
> them.*
> '*VISTA FORUMS*' (http://www.vistax64.com)
> *Please post feedback to help others.*
My System SpecsSystem Spec
Reply

Thread Tools


Similar Threads
Thread Forum
cannot get windows live messenger to work due to "side-by-side "er Live Messenger
Show Windows Stacked or Side by Side - Create Shortcuts Tutorials
Only "Inbox" appears under local folders on left hand side pane Vista mail
Vista Business "side" graded to Home Premium? Vista General
Strange "side-by-side" error caling up speech recognition Vista General


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46