Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Vista General Discussion > Any way to make a shortcut to "show windows side by side"...

Reply
Thread Tools Display Modes

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

 
 
David
Guest
Posts: n/a

 
      04-03-2008
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
 
Reply With Quote
 
 
 
 
Keith Miller \(MVP\)
Guest
Posts: n/a

 
      04-04-2008
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" <> wrote in message
news:. ..
> 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


 
Reply With Quote
 
Brink
Guest
Posts: n/a

 
      04-04-2008

Keith Miller \(MVP\);671802 Wrote:
> Copy & paste the following lines into notepad & save as SideBySide.vb
>
> ----------------------------
> dim objShel
>
> set objShell = CreateObject("Shell.Application"
> objShell.TileVerticall
> set objShell = nothin
> ----------------------------
>
> -
> Good Luck
>
> Keit
> Microsoft MVP [Windows Shell/User
>
>
>
> "David" <david@xxxxxx> wrote in messag
> news:av2dncNwXakdpmjanZ2dnUVZ_u2mnZ2d@xxxxxx> > >
> > > to avoid having to right click on taskbar and choose from shortcu

> > menu
> > > I'd like to have a shortcut sitting in the Quick Launch toolbar fo

> > tha
> > > feature

> >
> > > dave > >


Hi Keith

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

Thank you
Shaw

--
Brin

*There are no dumb questions, just the people that do not as
them.*
'*VISTA FORUMS*' *Please post feedback to help others.*
 
Reply With Quote
 
Keith Miller \(MVP\)
Guest
Posts: n/a

 
      04-04-2008
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" <> wrote in message
news:...
>
> Keith Miller \(MVP\);671802 Wrote:
>> 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> > >
>> > > 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*' > *Please post feedback to help others.*


 
Reply With Quote
 
Brink
Guest
Posts: n/a

 
      04-04-2008

Keith Miller \(MVP\);671896 Wrote:
> 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" <> wrote in message
> news:...> > >
> > >
> > > 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*' > > > *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*' *Please post feedback to help others.*
 
Reply With Quote
 
Keith Miller \(MVP\)
Guest
Posts: n/a

 
      04-04-2008
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" <> wrote in message
news:...
>
> Keith Miller \(MVP\);671896 Wrote:
>> 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" <> wrote in message
>> news:...> > >
>> > >
>> > > 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*' >> > > *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*' > *Please post feedback to help others.*


 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Link to Music not working on right side of "Start" Robert J. Lafayette Windows Vista Installation 1 02-02-2008 10:33 PM
Only "Inbox" appears under local folders on left hand side pane Dan Windows Vista Mail 0 01-16-2008 03:50 PM
Side by Side explorer shell windows... explor777@yahoo.com Windows Vista File Management 1 10-04-2007 10:35 PM
Vista Business "side" graded to Home Premium? KUCHDUT Windows Vista General Discussion 6 02-09-2007 12:06 AM
Re: Strange "side-by-side" error caling up speech recognition Nancy Ward Windows Vista General Discussion 1 06-17-2006 08:50 PM



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 47 48 49 50 51 52 53 54 55 56 57 58 59