Tile Windows?
I always run Dual monitors, monitor 1 is a laptop screen, monitor 2 is a 19” LCD. I need the second monitor to run all windows as tiled. The only thing I can figure out right now is how to do it using a script which has two downfalls:
1. I have to run it every time I need it
2. It tiles both monitors
I have included the script does anyone know a better way?
Set objWSHShell = CreateObject("Wscript.Shell")
For i = 1 to 9
objWSHShell.Run "%comspec% /k"
Next
Wscript.Sleep 5000
Set objShell = CreateObject("Shell.Application")
'objShell.TileHorizontally
objShell.TileVertically
C