Basics - Shortcut Key

D

David Williams

This is a very basic question - well, some might think so!

Does there exist, or can I establish a simple keyboard shortcut to allow
open folders to 'Tile Vertically or for that matter horizontally?.

If so, where or how is it done?

I know that right clicking the taskbar will offer me the option, but can it
be shortcut?
DW
 
D

David Candy

Create a text file called something.vbs. Create a shortcut to it and place the shortcut on the desktop or Start menu (only places windows looks for shortcuts with shortcut keys), right click it, Properties, and set it to a keystroke. This will do all open windows.

Paste this in

Set wshshell = CreateObject("Shell.Application")
wshshell.TileHorizontally

Choose one from below

CascadeWindows Cascadess all of the windows on the desktop.
EjectPC Ejects the computer from its docking station.
FileRun Displays the Run dialog to the user.
FindComputer Displays the Find: Computer dialog box.
FindFiles Displays the Find: All Files dialog box.
Help Displays Microsoft® Windows® Help.
MinimizeAll Minimizes all of the windows on the desktop.
RefreshMenu Refreshes the contents of the Start Menu.
SetTime Displays the Date/Time Properties dialog box.
ShutdownWindows Displays the Shut Down Windows dialog box.
Suspend Suspends the computer.
TileHorizontally Tiles all of the windows on the desktop horizontally.
TileVertically Tiles all of the windows on the desktop vertically.
TrayProperties Displays the Taskbar Properties dialog box.
UndoMinimize ALL Restores all of the windows on the desktop to the
same state they were in before the last MinimizeAll command.

To tile/cascade specific windows ctrl + click them on the taskbar, then right click one and choose cascade or tile.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top