Thursday, July 5, 2007

FW: WordTips for 18 January 2003

-----Original Message-----
From: WordTips [mailto:awyatt@dcomp.com]
Sent: Saturday, January 18, 2003 2:00 PM
To: samaruna@omantel.net.om
Subject: WordTips for 18 January 2003

WordTips for 18 January 2003 Copyright 2003 by DCI
**********************************************************************

In This Issue...
----------------
Publisher's Notes
Tips
* Toggling Font Assignments in a Macro
* Saving Changes when Closing
* Understanding Click and Type
* Default Click and Type Paragraph Style
Help Wanted
* Finding Changes, by Author
* Speeding Up Mail Merges
Publisher and Copyright Information
Important Links
Subscription Information


* * * BEST-SELLING eBOOK * * *
WINNING THE FIGHT BETWEEN YOU AND YOUR DESK
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Does your desk look like a disaster site? Do you have piles of
paper everywhere? Learn how to take a desk that looks like a
toxic waste dump, and transform it into one that resembles the
flight deck of an aircraft carrier. FREE Success Newsletter.

http://www.1shoppingcart.com/app/adtrack.asp?AdID=7549


**********************************************************************
PUBLISHER'S NOTES * PUBLISHER'S NOTES * PUBLISHER'S NOTES
**********************************************************************

I've got a question that I've been mulling around for a while, and I would
appreciate it if a few of you could provide some feedback. Some of you may
remember the WordTips Gold service that I discontinued earlier this year.
Basically, WordTips Gold was a daily (Monday through Friday) HTML newsletter
that consisted of a single tip. I ran the service for a couple of years, but
when the advertising market bottomed out a bit over a year ago, I couldn't
economically justify continuing to provide the service.

When I stopped it, many subscribers graciously wrote to say that they
understood the reasoning. Some suggested, however, that I should have
changed WordTips Gold to a paid subscription service. That sentiment,
expressed by more than a few subscribers, has stuck with me.

This is where I need your feedback. What do you think about that idea?
Would *you* be interested in a daily HTML newsletter, publishing different
tips than what you see in this weekly WordTips? If so, is it something you
would pay for? How much would such a service be worth to you; what would you
consider a fair price?

I'm not promising anything. But I do need your feedback to help me make up
my mind, to see if such a thing is even viable.

I'd love to hear from you: awyatt@dcomp.com

-Allen


**********************************************************************
TIPS * TIPS * TIPS * TIPS * TIPS * TIPS * TIPS * TIPS * TIPS
**********************************************************************
If you have an idea for a tip, send it our way. You can e-mail the
suggestion to awyatt@dcomp.com. Any tips contributed will be credited in the
issue in which they appear.


------------------------------
Toggling Font Assignments in a Macro
------------------------------
Subscriber Jacie Wedberg wrote that she had created a macro that set text to
Time New Roman. She wanted to change the macro to be a toggle between Times
New Roman and Arial Narrow Bold, and wondered how to do it.

The easiest way to do it in a macro is simply to check the font used in your
selected text, and then make take your steps based on what you find. For
instance, the following macro will only take action if the selected text is
either Times New Roman or Arial Narrow:

Sub ChangeSelectedFont()
Select Case Selection.Font.Name
Case "Times New Roman"
Selection.Font.Name = "Arial Narrow"
Selection.Font.Bold = True
Case "Arial Narrow"
Selection.Font.Name = "Times New Roman"
Selection.Font.Bold = False
End Select
End Sub

There is a different, non-macro way that may make some sense, however.
Why not use styles? You can define styles to encompass any formatting
attributes desired. For instance, you could define one style that used Times
New Roman, and another that used Arial Narrow Bold. You could apply the
styles at will, from the toolbar, and you could even search and replace
using the styles.

(Thanks to Carol Guncheon, Suzanne S. Barnhill, Fred Burg, Kathleen McGrath,
Susan McGuirk, David G. Lett, Rohn Solecki, and Ventsi Gradinarov for
contributing to this tip.)


Help support WordTips and obtain a valuable resource by
purchasing your own copies of the WordTips archives. Visit the
Web site (http://store.vitalnews.com/wtarch.html) for more info,
or send a blank e-mail to WordTips-CDs@lists.vitalnews.com.


------------------------------
Saving Changes when Closing
------------------------------
If you modify a Word document, and then close the document, you are asked if
you want to save your changes. This is a good feature that helps ensure you
don't mistakenly throw away some of your work.

When running a macro, however, you may not want to be bothered with a dialog
box asking if you want to save your changes. If the macro modifies a
document in some way, and you use the Close method, you are asked if you
want to save your changes, just as you are if you manually close a document
without saving.

The way to get around this is to use some of the parameters available with
the close method. Consider the following:

ActiveDocument.Close SaveChanges:=wdDoNotSaveChanges
ActiveDocument.Close SaveChanges:=wdSaveChanges

Both lines of code close the active document. The difference between the
lines is in the setting of the SaveChanges parameter. In the case of the
first line, any changes will be discarded, while the second line results in
the document being saved when it is closed. If you prefer to be asked every
time, just use either of the following lines:

ActiveDocument.Close
ActiveDocument.Close SaveChanges:=wdPromptToSaveChanges


Got a Word-related product or service you want to let others
know about? Advertising in WordTips is a cost-effective way to let
thousands of serious Word users know about you. For more info,
visit the Web site (http://www.VitalNews.com/WordTips/), or send
a blank e-mail to WordTips-Advertising@lists.vitalnews.com.


------------------------------
Understanding Click and Type
------------------------------
Word 2000 and Word 2002 include a feature known simply as Click and Type.
This feature means that when you are working in Print Layout view or Web
Layout view, you can double-click your mouse in any open area of your
document (where there is not text), and begin typing right away.

Normally, you begin typing at the left side of the screen. If you later want
to adjust your text to the right margin or center it on the screen, you do
so by using the toolbars or menus. Click and Type, however, allows you to
quickly format and enter text at the same time.
The result is faster editing and formatting.

You can tell if Click and Type is active by how the mouse pointer behaves on
screen. If the mouse pointer, when moving within the document window, looks
like a simple I-beam insertion pointer, then Click and Type is not turned
on. If, instead, it looks like an I-beam with some horizontal lines near by,
then Click and Type is active and ready. These lines indicate the formatting
of the text that you can insert. There are four possibilities:

* Left aligned. If the horizontal lines are near the upper-right
side of the I-beam, then it indicates that double-clicking your
mouse will result in a left-aligned paragraph where you click.
* Left aligned, first line indent. If the horizontal lines are near
the upper-right side of the I-beam, but there is also a very
small arrow at the left side of the first horizontal line, then
double-clicking will result in a left-aligned paragraph where you
click, with the first line of the paragraph indented.
* Centered. If the horizontal lines are directly beneath the
I-beam, then you can enter a centered paragraph by
double-clicking your mouse.
* Right aligned. If the horizontal lines are near the upper-left
side of the I-beam, then it indicates that double-clicking will
add a right-aligned paragraph where you click.

Remember that Click and Type only works if you are viewing your document in
Print Layout view or in Web Layout view.

If you don't like or don't use the Click and Type, you may want to turn it
off. You can do this by following these steps:

1. Choose Options from the Tools menu. Word displays the Options
dialog box.
2. Make sure the Edit tab is selected.
3. Make sure the Enable Click and Type check box is cleared.
4. Click on OK.


------------------------------
Default Click and Type Paragraph Style
------------------------------
Normally, when you enter a paragraph by using the Click and Type method, the
paragraph is essentially formatted using the Normal style.
Granted, there are some changes to the basic formatting of the style (such
as right alignment, center alignment, or indentation), but it is nonetheless
the Normal style.

You can control what style Word uses as the base style for any paragraph you
enter using Click and Type. To do this, follow these
steps:

1. Choose Options from the Tools menu. Word displays the Options
dialog box.
2. Make sure the Edit tab is selected.
3. Using the Default Paragraph Style drop-down list at the bottom
of the dialog box, select a style to use for your Click and Type
paragraphs.
4. Click on OK.


**********************************************************************
Step up to the PROFESSIONAL version of WordTips--WordTips Premium.
This week WordTips Premium subscribers also learned about:

* Formatting Fractions
* Using the Equation Editor for Fractions
* Using Fields for Fractions
* Using the Function Key Display Toolbar

Each weekly newsletter is in professional PDF layout, and presents DOUBLE
THE TIPS (Premium subscribers see articles you won't in regular
WordTips) with great, useful graphics. Plus, WordTips Premium subscribers
get valuable money-saving benefits. For more information, (including a
sample issue) visit the following Web page:

http://store.vitalnews.com/premium.html


**********************************************************************
HELP WANTED * HELP WANTED * HELP WANTED * HELP WANTED
**********************************************************************
This section is for those having problems making Word behave. Having a
problem you want to see addressed? Send it to WTHelp@VitalNews.com.
Do you have an answer to the problems below? Send your answer to
WTAnswers@VitalNews.com (all responses become the sole property of DCI and
can be used in any way deemed appropriate). If your response is used in a
future issue, you will be credited for your contribution to the answer.


------------------------------
Finding Changes, by Author
------------------------------
Using Word 2000, I am working with a document of about 200 pages.
Several people are editing the document and we are tracking changes by
author. Is there any search feature that will allow me to locate all the
changes entered by one author? (Doris Bell )


------------------------------
Speeding Up Mail Merges
------------------------------
We frequently merge 10,000 to 20,000 records using Word 2000 mail merge and
Excel 2000 files. The PC we are using is fast (2.4 GHz Pentium), but after
merging about 1,000 records the merge begins to slow considerably. Any ideas
how we can keep things going along at a good clip? (Bill Carney)


**********************************************************************
PUBLISHER and COPYRIGHT INFORMATION
**********************************************************************
WordTips (ISSN 1522-3744) is published weekly by Discovery Computing Inc.
(DCI), PO Box 2145, Mesa, AZ 85214. WordTips is a trademark of DCI.
Copyright 2003 by DCI, All Rights Reserved. All broadcast, publication, or
retransmission is strictly prohibited without prior written permission from
the publisher. Full information on distribution rights can be found in the
WordTips FAQ at the WordTips Web page.


**********************************************************************
IMPORTANT LINKS * IMPORTANT LINKS * IMPORTANT LINKS
**********************************************************************

WEB ADDRESSES
-------------
WordTips Web page -

http://www.VitalNews.com/wordtips/
WordTips Premium Web page -

http://store.VitalNews.com/premium.html
WordTips Archives -

http://store.VitalNews.com/wtarch.html
Advertising in WordTips -

http://www.VitalNews.com/advert.htm
Vital News Store -

http://store.VitalNews.com/


E-MAIL ADDRESSES
---------------
Help Wanted questions - WTHelp@VitalNews.com
WordTips sample issue - WordTips-Sample@lists.vitalnews.com
WordTips Premium info - WTPremium@VitalNews.com
WordTips Archive info - WordTips-CDs@lists.vitalnews.com
Advertising in WordTips - WordTips-Advertising@lists.vitalnews.com
Editor and Publisher - awyatt@dcomp.com


**********************************************************************
SUBSCRIPTION INFORMATION * SUBSCRIPTION INFORMATION
**********************************************************************
TO RECEIVE WordTips regularly via e-mail at no charge, send an e-mail to <
join-wordtips@lists.vitalnews.com >.

You are currently subscribed to wordtips as: [samaruna@omantel.net.om] To
unsubscribe, forward this message to
leave-wordtips-296702L@lists.vitalnews.com

No comments:

Business Line - Markets