Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 06-29-2017, 03:52 AM
peter bond peter bond is offline Switching over from WordPerfect Windows 10 Switching over from WordPerfect Office 2010 64bit
Novice
Switching over from WordPerfect
 
Join Date: Jun 2017
Posts: 3
peter bond is on a distinguished road
Default Switching over from WordPerfect

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
Reply With Quote
  #2  
Old 06-29-2017, 04:14 AM
gmayor's Avatar
gmayor gmayor is offline Switching over from WordPerfect Windows 10 Switching over from WordPerfect Office 2016
Expert
 
Join Date: Aug 2014
Posts: 4,106
gmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud of
Default

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
but it is just as easy to click the Bookmark button on the Insert tab, and you may find http://www.gmayor.com/BookmarkandVariableEditor.htm even more useful.

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
See http://www.gmayor.com/installing_macro.htm
__________________
Graham Mayor - MS MVP (Word) (2002-2019)
Visit my web site for more programming tips and ready made processes www.gmayor.com
Reply With Quote
  #3  
Old 06-29-2017, 04:39 AM
peter bond peter bond is offline Switching over from WordPerfect Windows 10 Switching over from WordPerfect Office 2010 64bit
Novice
Switching over from WordPerfect
 
Join Date: Jun 2017
Posts: 3
peter bond is on a distinguished road
Default Many Thanks!

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
Reply With Quote
  #4  
Old 06-29-2017, 06:02 PM
peter bond peter bond is offline Switching over from WordPerfect Windows 10 Switching over from WordPerfect Office 2010 64bit
Novice
Switching over from WordPerfect
 
Join Date: Jun 2017
Posts: 3
peter bond is on a distinguished road
Default Almost there...

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. Any suggestions or ideas are very welcome.

Many thanks in advance...
Peter
Reply With Quote
  #5  
Old 06-30-2017, 06:53 AM
gmaxey gmaxey is online now Switching over from WordPerfect Windows 7 32bit Switching over from WordPerfect Office 2016
Expert
 
Join Date: May 2010
Location: Brasstown, NC
Posts: 1,436
gmaxey is a jewel in the roughgmaxey is a jewel in the roughgmaxey is a jewel in the roughgmaxey is a jewel in the rough
Default

Use Shift+F5
__________________
Greg Maxey
Please visit my web site at http://www.gregmaxey.com/
Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
Switching over from WordPerfect WordPerfect to Word Conversion Footnote Problem 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
Switching over from WordPerfect Outlook 2010/Corel Wordperfect conflict kjohnsn Outlook 2 03-25-2011 06:00 PM
Switching over from WordPerfect Export contact info from Wordperfect & Word into Outlook Ranger Outlook 1 10-04-2010 05:29 PM

Other Forums: Access Forums

All times are GMT -7. The time now is 05:09 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft