how to min and max by shortcuts

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I would like to know how to minimize and maximize in word
I know how to miniimize all windows at one time but not one windaw at a time
I don't want to minimize all my windows just one
 
Hi =?Utf-8?B?bmV3IG9mZmljZSAyMDAzIHVzZXI=?=,
I would like to know how to minimize and maximize in word
I know how to miniimize all windows at one time but not one windaw at a time
I don't want to minimize all my windows just one
The keyboard shortcuts affect all windows.

You could use a macro to affect only the active window?

Sub MinActiveWindow()
ActiveWindow.WindowState = wdWindowStateMinimize
End Sub

Cindy Meister
INTER-Solutions, Switzerland
http://homepage.swissonline.ch/cindymeister (last update Jun 8 2004)
http://www.word.mvps.org

This reply is posted in the Newsgroup; please post any follow question or
reply in the newsgroup and not by e-mail :-)
 
What do I use as a shortcut to active the macro?

Cindy M -WordMVP- said:
Hi =?Utf-8?B?bmV3IG9mZmljZSAyMDAzIHVzZXI=?=,

The keyboard shortcuts affect all windows.

You could use a macro to affect only the active window?

Sub MinActiveWindow()
ActiveWindow.WindowState = wdWindowStateMinimize
End Sub

Cindy Meister
INTER-Solutions, Switzerland
http://homepage.swissonline.ch/cindymeister (last update Jun 8 2004)


This reply is posted in the Newsgroup; please post any follow question or
reply in the newsgroup and not by e-mail :-)
 
Hi =?Utf-8?B?bmV3IG9mZmljZSAyMDAzIHVzZXI=?=,
What do I use as a shortcut to active the macro?
Go to Tools/Customize. Click "Keyboard". Select the category "Macros". Select the
macro to which you want to assign a keyboard shortcut.

Click in the box "Press new shortcut key". Press the keyboard shortcut you would
like to use. If it's already assigned to something else, you'll see that in the
space below the box. You can overwrite the assignment (click Assign); or you can
try a different key combination.

Cindy Meister
INTER-Solutions, Switzerland
http://homepage.swissonline.ch/cindymeister (last update Jun 8 2004)
http://www.word.mvps.org

This reply is posted in the Newsgroup; please post any follow question or reply in
the newsgroup and not by e-mail :-)
 
Back
Top