Results 1 to 5 of 5

Move Ctrl + F6 or make a macro that mimicks what Ctrl + F6 does

Threaded View

  1. #4
    Forum Expert macropod's Avatar
    Join Date
    12-22-2011
    Location
    Canberra, Australia
    MS-Off Ver
    Word, Excel & Powerpoint 2003 & 2010
    Posts
    3,834

    Re: Move Ctrl + F6 or make a macro that mimicks what Ctrl + F6 does

    Ctrl-F6 and Alt-F6 both switch document windows. I can use either combo with one hand...

    You could use:
    Sub ActivateNextWindow()
    Dim i As Long, j As Long
    i = Application.Windows.Count
    j = ActiveWindow.Index
    With Application.Windows
      If j < i Then
        .Item(j + 1).Activate
      Else
        .Item(1).Activate
      End If
    End With
    ActiveWindow.WindowState = wdWindowStateMaximize
    End Sub
    Alternatively, if you have a programmable mouse with an extra button, you may be able to use its config app to use that button for toggling the windows.
    Last edited by macropod; 08-14-2014 at 10:06 AM.
    Cheers,
    Paul Edstein
    [Fmr MS MVP - Word]

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Help needed : Unable to use CTRL+C or CTRL+D to copy formula
    By Elangovan89 in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 05-09-2014, 10:20 AM
  2. Replies: 3
    Last Post: 08-02-2013, 12:06 PM
  3. Ctrl+pg up and Ctrl+pg Down Dont work, New & unprotected documents
    By desert_dweller5 in forum Excel General
    Replies: 2
    Last Post: 09-10-2012, 07:44 AM
  4. ctrl c and ctrl v breaks a merge cell
    By eg_ckhad in forum Excel General
    Replies: 1
    Last Post: 07-28-2008, 12:41 AM
  5. [SOLVED] Macro's with Ctrl or Ctrl-Shift?
    By Al Franz in forum Excel General
    Replies: 6
    Last Post: 09-05-2005, 06:05 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1