Word.Tips.Net Welcome toWord.Tips.Net

Helpful Links

Tips.Net Home
WordTips Home

Ask a Word Question
Make a Comment

Tips.Net Store

WordTips FAQ
WordTips Premium

Learn Access Now
Free Printable Forms

Beauty Tips
Car Tips
Cleaning Tips
College Tips
Cooking Tips
Excel2007 Tips
ExcelTips
Family Tips
Gardening Tips
Health Tips
Home Tips
Legal Tips
Money Tips
Organizing Tips
Pest Tips
Pet Tips
Wedding Tips
Word2007 Tips
WordTips

Advertise on the
WordTips Site

Newest Tips

Arranging Document Windows

Specifying a Backup Location

Controlling Chart Gridlines

Merging Table Cells

Collapsing and Expanding Subdocuments

Zooming With the Keyboard

Initiating a New Search

 

Determining if a Text Selection Has Been Made in WordBasic

Summary: Sometimes your macro needs to know if the user made a selection before starting the macro. Here's how to figure it out. (This tip works with Microsoft Word 6, and Word 95.)

There are numerous times when you are writing macros when you will need to determine if the user has made a selection. The following WordBasic code will let you know if a selection has been made. It sets the value of a flag, InSelection, to -1 (True) if there is currently a selection. Otherwise InSelection is set to 0 (False).

InSelection = 0
If SelType() = 2 or SelType() = 6 Then InSelection = -1

Tip #126 applies to Microsoft Word versions: 6 | 95

Create and Merge! Using Word's mail merge tool you can quickly and easily combine data from a variety of data sources to create great individualized documents that incorporate your data in ways that you control. WordTips: Mail Merge Magic is an invaluable source for learning how to harness the full power of Word's mail merging capabilities.
 
Check out WordTips: Mail Merge Magic today!