![]() |
|
#1
|
|||
|
|||
![]()
My company used WordPerfect for years. Now they switched to Word, which I find faster, and more flexible. The problem I am having is that, after years of manipulating the keyboard with macros in WordPerfect, I can't figure out how to do the same with Word macros.
For instance, I have macros that open the Bookmark dialogue box, and macros that can select every word in parenthesis in a document, then capitalize the words within the parenthesis. Is there a way have these types of features in Word? Many thanks, Peter Bond |
#2
|
||||
|
||||
![]()
Word Perfect uses macros in a different way from Word, but you can do much the same sorts of things. e.g. to show the bookmark dialog
Code:
Sub ShowBkMkDialog() Dialogs(wdDialogInsertBookmark).Show End Sub For the parentheses Code:
Sub ParensTextCaps() Dim oRng As Range Set oRng = ActiveDocument.Range With oRng.Find Do While .Execute(FindText:="\(*\)", MatchWildcards:=True) oRng.Case = wdUpperCase oRng.Collapse 0 Loop End With lbl_Exit: Set oRng = Nothing Exit Sub End Sub
__________________
Graham Mayor - MS MVP (Word) (2002-2019) Visit my web site for more programming tips and ready made processes www.gmayor.com |
#3
|
|||
|
|||
![]()
Many thanks. I've been remapping the keyboard using WordPerfect so long, it's kept me from looking at Word. Now, I'm determined to use Word, and remap the keyboard to match what I had in WordPerfect.
The remap, of course, has mostly to do with macros...executing functions, bringing up dialogue boxes like the bookmarks, etc. It's a learning curve, but one that I feel is worth it. Again, many thanks, for the help. Peter |
#4
|
|||
|
|||
![]()
Well, I've been able to carry over many of the keyboard mapping from WP.
One feature that escapes me is automatically placing a bookmark on the document before you exit or close the document, so it automatically goes to that spot when the document opens the next time. I deal with very long documents and this one of those features that makes my life easier. ![]() Many thanks in advance... Peter |
#5
|
|||
|
|||
![]()
Use Shift+F5
|
![]() |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
RobertWA | Word | 1 | 12-21-2015 05:41 AM |
Transition from WordPerfect to Word | rbrlaw | Word | 3 | 03-18-2015 10:58 AM |
Macros from WordPerfect X4 to Word2010 | chris13 | Word | 7 | 06-11-2013 10:45 AM |
![]() |
kjohnsn | Outlook | 2 | 03-25-2011 06:00 PM |
![]() |
Ranger | Outlook | 1 | 10-04-2010 05:29 PM |