![]() |
![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
| 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. |
| |||||||
![]() |
| |
| | #1 (permalink) |
| | 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 Specs![]() |
| | #2 (permalink) |
| | 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 Specs![]() |
| | #3 (permalink) |
| Vista x64 Ultimate SP2, Windows 7 Ultimate x64 | 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 What would the VBS code be for the "Undo Show Side by Side" option? Thank you, Shawn |
My System Specs![]() |
| | #4 (permalink) |
| | Re: Any way to make a shortcut to "show windows side by side"... Good question! Made me learn something new From preliminary testing, itlooks 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 Specs![]() |
| | #5 (permalink) |
| Vista x64 Ultimate SP2, Windows 7 Ultimate x64 | Re: Any way to make a shortcut to "show windows side by side"... Good question! Made me learn something new From preliminary testing, itlooks 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.* Shawn |
My System Specs![]() |
| | #6 (permalink) |
| | 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 Specs![]() |
![]() |
| 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 | |||