|
For best results: this site requires that cookies be enabled for proper operation - see Legal Page for more info
|
|
Select Any of These |
MS WORD 95 and earlierLAST UPDATED: 08 November 2007 18:29:53 -0600
Word 6WHEN A FILE DOESNT APPEAR ON THE RECENTLY USED LARGE VS. SMALL BUTTONS MODIFYING WORD COMMANDS UNMODIFYING WORD COMMANDS Other versionsPARSING FILENAMES IN A MACRO HOW TO USE NONBREAKING HYPHENS GETTING THE CURRENT FILENAME IN MACROS USING THE CENTS SIGN SETTING PAGE MARGINS ADDING A WATERMARK TO A DOCUMENT WORKING WITH LISTS CREATING NEW STYLES PRINTING A SPECIAL FIRST PAGE AUTOMATICALLY SAVING WORD DOCUMENTS DANGERS OF WORDS FIND AND REPLACE FEATURE EDITING IN WORDS PRINT PREVIEW MODE DRAG, DROP, AND PRINT WITH A DESKTOP PRINTER ICON NORMAL.DOT FILE BACKUP INSERTING EXISTING TEXT INTO A WORD TABLE OFFICE 95: LOCATING EXISTING WORD MACROS MODIFYING WORDS GRAMMAR SETTINGS POWERPOINT, WORD: PRESENTING A SLIDE SHOW ON PAPER REPEATING FIND IN WORD STARTING WORD WITHOUT A DOCUMENT FONT SUBSTITUTION USING PICTURES IN WORDS AUTOTEXT USING WORDS EXTEND COMMAND WORD/EXCEL: START EXCEL VIA WORD GOT TO GO HOME TO CHECK MY SPELLING INSERTING A BLANK LINE IN BULLETED OR NUMBERED LISTS GET STYLE INFORMATION GAINING THE UPPER HAND WITH AUTOFORMAT ELIMINATING THE TIP WIZARD DOCUMENT STATISTICS MACRO DELETING STYLES CREATING CUSTOMIZED COLUMN WIDTHS CREATING BACKUP FILES CREATING A TOOLBAR BUTTON FOR YOUR TABLE MACRO CREATING A SAVE, CLOSE, AND OPEN MACRO CREATING A CUSTOM BUTTON CHANGING THE LINE SPACING CHANGING CELL SIZE IN TABLES AUTOMATIC LISTS BREAKING A LINK IN YOUR DOCUMENT AUTOFORMAT HEADERS AN UNDO TWIST ANOTHER WAY TO PASTE THE CLIPBOARD CONTENTS ADDING SHADING TO BORDERED TEXT AN INFORMATION-GATHERING MACRO ALERTING AUTOCORRECT TO YOUR HABITUAL ERRORS ADJUSTING THE MOST RECENTLY USED LIST ADDING WORDS TO YOUR CUSTOM DICTIONARY ADDING IMAGES TO MAILING LABELS ADDING A FRAME TO YOUR WORDART OBJECT LINKED AND UNLINKED PICTURES KEYBOARD SHORTCUT TO STYLE LIST BOX KEEPING LINKED PICTURES TOGETHER WITH THEIR FILES TAKE ME TO YOUR LEADER TROUBLESHOOTING WORD SEARCHES THE DIFFERENCE BETWEEN FAST AND SAFE SAVES SHORTCUT TO CHANGING SENTENCE CASE SHORTCUT KEY FOR TRUE APOSTROPHE SELECTING PARAGRAPH MARKS SELECTING ALL THE TEXT IN A DOCUMENT SELECTING A BLOCK OF TEXT RESUMING A FIND OR FIND AND REPLACE OPERATION PRODUCING A TRUE APOSTROPHE PLACING PICTURES IN A TWO-COLUMN NEWSLETTER MOVING NUMBERED LIST ITEMS MODIFYING THE SAVEANDCLOSE MACRO MODIFYING THE FILECLOSE COMMAND MAKING A BOOKLET USING A TABLE MACRO USING BOLD, UNDERLINED, OR ITALIC TEXT FORMATTING USE COLUMNS FOR TEXT APPEAL USING A DIFFERENT HEADER FOR EACH SECTION IN A DOCUMENT UNSHRINKING DOCUMENTS MANUALLY TURNING YOUR TABLE GRIDLINES ON AND OFF WRAPPING TEXT AROUND CALLOUTS VERTICAL TOOLBAR UNDO QUIRK USING ZOOM TO CHECK YOUR DOCUMENT USING PREPRINTED STATIONERY USING BORDERS INSERTING SMILEY FACE SYMBOL SHRINK-TO-FIT TEXT QUICK PARAGRAPH SELECTION EXCEL: COPYING DATA MAPS QUICK WORK COVER PAGE MAPPING NEW BORDERS VIEWING MULTIPLE WORD PAGES AINT NO REASON TO USE BAD GRAMMAR TAKE CTRL AND GO STRAIGHT TO THE TOP FORMAT PAINTER AUTOMATING AUTOCORRECT SUPERIMPOSE TEXT ON A PICTURE HOW TO USE AND MODIFY SPECIAL BULLETS ADD HANGING INDENTS TO PARAGRAPHS WACKY WINGDINGS MAKE MEMORABLE BULLETS MAKING A CASE FOR CHANGING CASES SEE BOTH DOC AND RTF FILES WHEN USING FILE, OPEN PICTURE FRAME HIGHLIGHT FEATURE LIGHTS UP YOUR DOCUMENTS AUTOCORRECT HANDLES CAPS LOCK PROBLEM WORDART, PAINT: SAVE ARTWORK AS A BITMAP FILE THE MOST RECENTLY USED FILE LIST POWERPOINT, WORD: ENABLE YOUR INNER PLACEHOLDER CUSTOM TOOLBARS WORD, EXCEL, POWERPOINT: THE PROBLEM WITH COMPRESSED GRAPHICS WORD, EXCEL, POWERPOINT: RESOLVING THE PROBLEM WITH COMPRESSED GRAPHICS CLEAR THE MOST RECENTLY USED FILE LIST CHANGING A FILENAMES EXTENSION REPAGINATE IN THE BACKGROUND--OR NOT MISSING WORD TEMPLATES LIMIT TO WORD COUNT SHADED BACKGROUND PRINTING PROBLEM PASTING BITMAPS BRING BACK A FAVORITE OLD TOOLBAR SPEED UP YOUR SPELLING CHECK BACK IT UP COMMAND LINE SWITCHES--PART 1 COMMAND LINE SWITCHES--PART 2 HIGHLIGHT IT A SHIFTY WAY TO CUT AND PASTE LOST FORMATTING WORD 7, EXCEL 7: CLEAR CUTTING INSERTING TABLES MACRO FOR RTF SPECIAL BULLETS MORE SPECIAL BULLETS WHICH FONT TO USE NON BREAKING HYPHENS INSERT A LINE HERE IN THE GUTTER SELECT A COLUMN OF TEXT HIDE THE DRAWINGS OPEN WITH NOTHING QUICK NAVIGATE AUTOCORRECT FORMATTING ADD TEXT INSIDE PICTURE CHECK YOUR GRAMMAR PRINT PREVIEW WHY USE SECTIONS WHERE THE DOLLAR GOES UPPER OR LOWER WHAT IS MY NAME COMING UNDONE WRAPMASTER A PERMANENT REPLACEMENT SPACE--THE FLANA FRONTIER ONLY THE FIRST PAGE INCOMPATIBILITY ERRORS
PARSING FILENAMES IN A MACROIs there an easy way to parse filenames in macros so you don't see the extension. You can do this by expanding on the macro we used in the last tip. To create the macro, choose Tools, Macro. When the Macro dialog box opens, type in a name ("Test" will do for this example macro). Now, click Create and then enter the macro. (If you have the Test macro from the last tip, you can click the name and then click Edit to modify the existing macro.) Enter the macro as shown here (Word will add the lines Sub MAIN and End Sub): Sub MAIN name$ = WindowName$() ' get the name ext = InStr(name$, ".") ' get the dot position name$ = Left$(name$, ext - 1) 'don't show the dot MsgBox name$ ' display the name End Sub Save the macro and then close it. Load a file and run the macro (choose Tools, Macro and click the macro name to select it). Now click Run to see how your new macro works.
HOW TO USE NONBREAKING HYPHENSA reader writes, "I have a problem with Word. When I enter my hyphenated last name, Word will often separate the name and place part of it on two lines. Is there a way to tell Word to keep the entire name together?" Sure. Let's say your name is Clarence Worthington-Smythe. All you would have to do is type in the name up to the hyphen and then press Ctrl-Shift- (hyphen) and type the second part of the name. You can use this technique even if your name is Clarence Worthington-Smythe-Rhys-Collins-Jones. Just use Ctrl-Shift- (hyphen) to enter the hyphens. Note: When you press Ctrl-Shift- (hyphen), the hyphen will look extra long, like an em dash. Don't worry--it will print just fine.
GETTING THE CURRENT FILENAME IN MACROS"I want to use Filename$() in a macro to return the current filename. The problem is that this function returns the entire path plus the filename. Is there a way to get Word to return only the filename?" The easiest way to get the filename from Word is to use the WindowName$() function. Let's create a simple macro to show how this works. To create the macro, choose Tools, Macro. When the Macro dialog box opens, type in a name ("Test" will do for this example macro). Now, click Create and then enter the macro as shown here: Sub MAIN MsgBox WindowName$() ' get the name and display it End Sub Note that the lines Sub MAIN and End Sub are furnished by Word--don't re-enter them. Now save the macro and close it. Next, load a file and choose Tools, Macro. When the Macro dialog box opens, click the new macro to select it and then click Run. The macro will open a small window displaying the filename.
USING THE CENTS SIGNThere's no cents sign on the keyboard, is there a way to make the cents sign in Word? Yes, there is. All you have to do is press Ctrl-/ (slash) and then press C. The most likely reason for the lack of a cents symbol on standard keyboards is that stating amounts in cents has never been acceptable in formal financial dealings. To express ten cents, one would write $0.10. In any case, it's getting harder and harder to find something that costs less than a buck these days.
SETTING PAGE MARGINS"When I print a Word document, the last line is often lost. Do you know why this happens?" Most likely the printer margins are set incorrectly. Most printers require a fixed minimum margin. The amount of margin is specific to the printer. This requirement is necessary because the entire sheet isn't available for printing; the printer's paper-handling mechanisms must have something to work with. Choose File, Page Setup and click the Margins tab. Now check your margins. Note that Word will try to protect you from this problem. To see what happens, make the bottom margin 0 (zero) and click OK. Word opens a dialog box telling you that your selection is outside the printer's range. If you click Fix, Word will set the bottom margin to the printer's requirement. If you click Ignore, Word will use your zero setting. Although Word will select the minimum requirement for you if you click Fix, you should add a bit to that. If Word selects 0.2 as the minimum, you should go for at least 0.3.
ADDING A WATERMARK TO A DOCUMENTIt's easy to add a watermark in Word 97, but can you add one in Word 95 or Word 6? A watermark is text or a picture you place beneath the text on your page. You might want to use a watermark to label a page "confidential" or "urgent." To add a watermark, first decide what you want the watermark to be. If you want to play along, you can use ClipArt for the example. You'll need the Drawing toolbar, so if it isn't visible, choose View, Toolbars, select Drawing, and click OK. Now, choose View, Header and Footer. When the Header and Footer window opens, click the Text box button in the Drawing toolbar. Use the mouse to draw a frame for your watermark. Now, choose Insert, Object, Microsoft ClipArt Gallery. Select a picture and click OK. Use the mouse to size and locate your watermark. Select the picture and then click the Send Behind Text button in the Drawing toolbar (the icon is a circle behind a page of text). Now, double-click in the document to close Header and Footer. To view your watermark, switch to Page Layout view (View, Page Layout) or choose File, Print Preview. Although Word will dim the watermark, we suggest that you avoid dark or very busy pictures for your watermarks.
WORKING WITH LISTSWhen you're working with lists in a Word document, you can use the right mouse button to manipulate the list. To try this, create a short list. Now, select the list and right-click it. You'll see a pop-up menu that contains the following helpful commands: Cut
PRINTING A SPECIAL FIRST PAGEMany Word users need to print the first page of a document on paper with a preprinted letterhead, and the remainder on standard paper. If your printer has more than one bin, you can put all the letterhead paper into one bin and the remainder of the paper into another bin. Now, choose File, Page Setup. When the Page Setup dialog box opens, click the Paper Source tab. In the First Page list box, select the tray that holds the preprinted letterhead paper, and in the Other Pages list box, select the tray that holds the blank paper. Click OK to close the dialog box and save your changes. If your printer doesn't have more than one tray, but does allow manual feed, you can choose Manual Feed for the first page.
CREATING NEW STYLESWhen you need a special style for a certain category of Word documents, it's not difficult to create your own. When you assign formatting to styles, you can easily apply that formatting to other paragraphs or entire documents. To create a style, choose Format, Style. When the Style dialog box opens, click New. Give your new style a name. A style name can be up to 253 characters in length, as long as you don't use backslashes, semicolons, or brackets. Select Add To Template and then click Format, Font. Choose the font and font size and click OK. Now, you can click Format again and this time choose Paragraph. Set up the paragraph the way you want and click OK. You can click the Format button and choose any of the selections that you might want to apply to your new style. When you get back to the Style dialog box after having made all your selections, click Apply.
AUTOMATICALLY SAVING WORD DOCUMENTSWhen you start a new document in Word, it's a good idea to name and save it as soon as you begin working. Since you're going to have to choose File, Save As and give the file a name anyway, why not let Word prompt you for a name? You can use a macro to ask for the name whenever you open a new document. To enter the macro, choose Tools, Macro and type in AutoNew Now click the arrow at the right side of the Macros Available In list box and select Normal.dot (Global Template). Click Create and type in the macro exactly as shown here (your best bet is to copy and paste directly from this tip): Sub MAIN End Sub Now when you open a new document, Word will prompt you for a name. Enter a name without the extension. Word will append the extension .DOC to your filename.
DANGERS OF WORD'S FIND AND REPLACE FEATUREAfter using Find and Replace, the entire document was turned into nothing but gibberish. We can only speculate about what might have happened to that document, but we can warn you about the dangers of using Find and Replace carelessly. Try this object lesson on a document you don't need. (Copy a document under a new name and use that.) Open Find and Replace (Ctrl-H) and click the Find What entry box. Choose Format, Style. Now choose the predominate style of your document (perhaps Normal). Don't enter any text in the entry box. Click on the Replace With entry box and type a few spaces. Click Replace All and then click OK. Now click Close. You've just destroyed your document by replacing all the Normal style text with spaces. If something like this happens to you, don't panic. Panicking can lead to permanent data loss. In this case, all you have to do is press Ctrl-Z and, thanks to Word's terrific Undo command, your document will magically reappear. The moral is, be careful with Replace All. Always check to make sure you don't have spaces in Replace With unless you're sure this is what you want. And never forget that wonderful Undo command.
EDITING IN WORD'S PRINT PREVIEW MODEThere's a widely circulated rumor that says you can't edit a Word document while it's in Print Preview mode. We're not sure about the origin of the rumor, but check out Print Preview mode for yourself. Open a document that you can afford to mess around with, and then choose Print Preview (click the toolbar button, or choose File, Print Preview). Use the magnifying glass cursor to zoom in on the page. Now, click the Magnifier on the toolbar (it looks like a small magnifying glass). At this point, you can add, delete, copy, and paste text. We're not suggesting that you use Print Preview mode for editing, but we do advise you to be careful when you're in Print Preview mode. You could lose something.
DRAG, DROP, AND PRINT WITH A DESKTOP PRINTER ICONLet's imagine that you need to print a few Word documents. Word isn't open right now, so you open Word by double-clicking the document file. Then you choose File, Print. Although this method works just fine, you don't have to open Word before you begin. If you place a shortcut to your printer on your desktop, all you have to do is drag a file's icon to the printer shortcut and drop it on top. Word will open the document, print it using the printer defaults, and close.
INSERTING EXISTING TEXT INTO A WORD TABLEWhen you select text in your Word document and then insert a table, Word will convert the selected text into a table without displaying the Insert Table dialog box. To check this out, select a section of text in any document. Now choose Table, Insert Table. The table will appear, and in the table, you'll find the text you selected. If this happens to you because you inadvertently left some text selected, just press Ctrl-Z (Undo) to remove the table. To create a desktop printer icon, choose Start, Settings, Printers. In the Printers window, find your printer's icon and drag it to the desktop. Click Yes in response to the warning box, and there's your shortcut.
OFFICE 95: LOCATING EXISTING WORD MACROSMicrosoft Office 95 Professional Version contains some Word macros that you may want to use. The only problem is that they aren't available to you unless you make them available. To locate the macros, choose Tools, Macro and click Organizer. When Organizer opens, you'll have two views of Normal.dot. Click the Close button on the left side of the dialog box to close Normal.dot. Now click Open and then go to the Office folder. In this folder, locate the Winword folder. Double-click Winword to open it. Now you should see a folder named Macros. Double-click it. In the Macros folder, you should see a list of macros: Convert7.dot, Layout7.dot, Macros7.dot, Present7.dot, and Tables7.dot. To work with these macros, click one to select it and click OK. Now click the macros inside the DOT files and click Copy to copy them to Normal.dot (on the right side of the Organizer dialog box). Repeat this process for each of the macro-containing DOT files in Winword\Macros. After you copy all the macros to Normal.dot, click Close in the Organizer dialog box. Now you can choose Tools, Macro, Macros to view the newly loaded macros. Select a macro and click Edit to see what the macro does.
NORMAL.DOT FILE BACKUPVersion 4.x, 95 In Office 4.x, you find Normal.dot in the \Winword\Template folder. To back it up, put a formatted floppy disk into drive A, open Windows Explorer, and click on your MSOffice folder. Now expand that folder and locate \Template. In \Template, locate Normal.dot and drag its icon to the floppy disk to copy it. In Office 95, you'll find the file in \MSOffice\Templates. Drag the file's icon to drive A to copy it to the floppy disk. Now, if you have problems, you can always copy Normal.dot back into its proper folder and continue your work. If you have other templates that you've modified, copy them to the floppy disk along with Normal.dot.
MODIFYING WORD'S GRAMMAR SETTINGSIf you'd like to stop all those grammar errors that get tagged as you write, why not just change the rules? If you're getting grammar errors where you think there should be none, your grammar checker may well be set to follow more stringent rules than necessary. For example, if it tags contractions, such as "we're" and "they're," you can make some simple setup changes to put a stop to those tags. Choose Tools, Options, and when the Options dialog box opens, click the Grammar tab. In the Writing Style box, choose For Casual Writing. Now click Customize Settings and select those items that you want the grammar checker to tag. Click OK to save your changes, and when you get back to the Options dialog box, click OK to close it.
POWERPOINT, WORD: PRESENTING A SLIDE SHOW ON PAPERYou want to share your PowerPoint slide show with your pals who don't have PowerPoint. What to do? One way to handle this problem is to import an entire slide show into a Word document. Once the slide show is in Word, you can print it and send it to people who need to view it. This is especially effective if you have access to a color printer. To put an entire slide show into a Word document, choose Tools, Write-Up. When the Write-Up dialog box appears, select the type of layout you want to use and click OK. Once the slide show is in a Word document, you can add whatever text and formatting you want.
REPEATING FIND IN WORDYou don't have to keep opening Find (Ctrl-F) to repeat a search. All you have to do is press Shift-F4, and Word will perform a search using the keyword (or phrase) most recently entered in Find. To check this out, press Ctrl-F to open Find. Enter a common word or phrase. Click Find Next to find the first occurrence, and then click Close. Now press Shift-F4, and Word will locate the next occurrence of your word or phrase.
STARTING WORD WITHOUT A DOCUMENTIs it possible to run Word without opening a blank document? Absolutely. We can't be sure how you start Word on your computer; we'll assume that you click Start, Programs, Microsoft Word. To run Word without opening a blank document, begin by right-clicking Start and choosing Open. Now double-click the Programs folder to open it. Next, right-click the Microsoft Word icon and choose Properties. Click the Shortcut tab and then click in the Target entry box. Move to the end of the existing command and type a space. Now add /n to the end of the line. Click OK to record the change and close the dialog box. The next time you start Word, it will open without any document at all. Note that we assumed a location for the icon you use to run Word. The procedure we described will work no matter where the icon is located. All you have to do is find your icon and right-click it. Then choose Properties and proceed as we described.
USING PICTURES IN WORD'S AUTOTEXTYou can use AutoText to insert pictures and other graphics into Word. Let's look at an example. Run Word and choose Insert, Object. When the Object dialog box opens, select Microsoft ClipArt (or Clip Gallery) from the list and click OK. Select a picture and click OK. Now that the picture is in place in Word, size it the way you want and then select it. Choose Edit, AutoText. The picture should appear in the Preview pane. Assign a name and click Add. To insert the picture, type in the name and then choose Edit, AutoText. Select the name and click Insert.
USING WORD'S EXTEND COMMANDIn a recent tip, we said that you could use the Extend command to help you select text more efficiently. To use Extend, double-click the EXT button at the bottom of the Word window--it's grayed out, but it will work. With Extend active, you can select text using the arrow keys--hands off (you don't have to hold down any keys). When you're finished with Extend, turn it off by pressing Esc. You can extend Extend even further. If you double-click EXT, open Find (Ctrl-F), and type in a word you want to search for, all the text between the current cursor position and the word located by Find will be selected.
WORD/EXCEL: START EXCEL VIA WORDDo you always start your day by loading Word and Excel? If so, why not let a Word macro start Excel for you? To do this, choose Tools, Macro. When the Macro dialog box opens, type in AutoExec and click Create. Now enter the following macro exactly as shown: Sub MAIN Shell "Excel.exe" End Sub Note that Word enters Sub MAIN and End Sub, so all you have to enter is the one remaining line. Choose File, Save to save the new macro. Since an AutoExec automatically runs, you don't need to assign a button or key to the new macro. All you have to do is close Word and then open it again. When you open Word with the macro in place, Excel will also open.
INSERTING A BLANK LINE IN BULLETED OR NUMBERED LISTSWhen you choose to use bullets or numbering in a Word document, a new bullet or number appears when you press Enter. But what if you want to insert a blank line between two bulleted or numbered lines? The first reaction is to simply press Enter to stop the bullets or numbering. This is unnecessary--all you have to do is press Shift-Enter. This inserts the blank. Now, to get to the next bulleted or numbered line, press Enter.
GOT TO GO HOME TO CHECK MY SPELLINGVersion 4.x, 95 This tip isn't exactly earthshaking, but it can save you a bit of time. Before you run a spelling check, press Ctrl-Home to move to the beginning of the document. This way, you won't get the dialog box asking if you want to continue checking the document from the top. And since you're trying to save some time, use the keyboard shortcut to run the spelling checker. Press Ctrl-Home and then press F7.
GET STYLE INFORMATIONIf you'd like to see what styles you have available in a Word document, you can choose Format, Style. When the Style dialog box opens, click on the style you'd like to examine. The dialog box will display data on the selected style. If you'd like some hard copy, choose File, Print. When the Print dialog box opens, click the arrow at the right of the Print What list box to expand the list. Select Styles from the list and then click OK. Word will print all the information on the current styles.
GAINING THE UPPER HAND WITH AUTOFORMATIf you don't want Word to automatically replace straight quotes with curly quotes, or stick symbols into your documents, you'll need to tell AutoFormat. To modify AutoFormat, choose Tools, Options and click the AutoFormat tab. This is where Word 95 is a little tricky. Before you make your new selections, make sure the radio button labeled AutoFormat As You Type is selected. Now make your choices by selecting and deselecting the appropriate check boxes. When you're finished, click OK.
FONT SUBSTITUTIONVersion 4.x, 95 If you get a Word document from someone and find that the font looks terrible on your computer, you may not have the font that the document's creator used. When this happens, Word will substitute a font that you do have for the one you don't. The problem is that the substitute font sometimes doesn't look very good in the document. If this is a problem that you encounter often, it may be worth purchasing the needed font. But an alternative approach is to reformat the document using a font that you have--ideally one that looks better than the one Word selected.
ELIMINATING THE TIP WIZARDVersion 4.x, 95 If you want to eliminate the Tip Wizard during a Word session, choose View, Toolbars, deselect the Tip Wizard check box, and click OK. However, this works for only one session. When you close Word and open it again, the Tip Wizard will reappear. To get rid of the Tip Wizard completely, choose Tools, Options and click on General. Deselect the Tip Wizard Active check box and click OK.
DOCUMENT STATISTICS MACROIn the last tip, we showed you how to locate macros that ship with Microsoft Office 95 Professional Version. This time, let's focus on one of the supplied macros. This one is called SuperDocStatistics. You'll find it in Macros7.dot. When run, SuperDocStatistics will tell you everything you could want to know about the currently open document. You'll get a report on the filename and folder, the time spent editing the document, and the number of words, characters, and paragraphs. SuperDocStatistics will also allow you to run a grammar check and look for any objects, tables, and links that your document is using. And you can even print a report. This is a macro that you'll probably find useful, so let's create a toolbar button for it. Choose View, Toolbars, and click Customize. When the Customize dialog box opens, locate Macros in the Categories list and select it. You'll see SuperDocStatistics in the Macros list. Drag SuperDocStatistics to the toolbar and release the mouse button over the location where you want the button to appear. Now you can assign the name or choose an icon--whichever you prefer. Click Close to close the dialog box and save your changes. With the SuperDocStatistics button in the toolbar, open a document and click the new button to see a report on the open document.
DELETING STYLESIs there an easy way to get rid of those extra styles without messing up Normal.dot. To delete a Word style, choose Format, Style. When the Style dialog box opens, locate and click the style you'd like to delete. When you click a style name, the Delete button will activate. To delete the selected file, click Delete. Now you can click Close to close the dialog box. Normal.dot protects itself by keeping the Delete button inactive when you select a style that Word needs. In other words, you can delete only the styles that you've created.
CREATING CUSTOMIZED COLUMN WIDTHSWhen you decide to use columns in a Word document, you can set the number of columns if you choose Format, Columns. When the Columns dialog box opens, you can select from one, two, or three columns. You'll notice that you can also choose a small column at the left or a small column at the right. If you like, you can set the column size yourself. Just deselect Equal Column Width and then set the size of each of your columns. After you finish setting up the columns, click OK to close the dialog box and save your changes.
CREATING BACKUP FILESNo matter how careful you are, there's always a chance that you could lose a document. Why not make the odds in your favor a little better by telling Word to always make backup files of your documents? Choose Tools, Options and click on the Save tab. Now select the Always Create Backup Copy check box and click OK. To retrieve a backed-up file, choose File, Open. When the dialog box opens, click on the arrow at the right side of the Files Of Type list box to expand the list. Select All Files (*.*) and look for files with your document's name but with a .wbk extension. Load the .wbk file.
CREATING A TOOLBAR BUTTON FOR YOUR TABLE MACROVersion 4.x, 95 In the last tip, we showed you a macro that you can use to create a table. This time, we'll show you how to make a toolbar button for the new macro (or any macro). Choose View, Toolbars and click Customize. When the Customize dialog box opens, click the Toolbars tab. Now scroll down until you locate Macros. Click it once to select it, and the macro list will appear on the right side of the dialog box. Use the mouse to drag your new macro to the toolbar. When you reach the macro's chosen location, release the mouse button. When the Custom Button dialog box opens, select a button or just use the suggested text name and click Assign. Now click Close and your new toolbar button should work just fine.
CREATING A SAVE, CLOSE, AND OPEN MACROOne way to make Word work more efficiently for you is to customize some of its commands. For example, Word includes a macro named FileSave. You could modify this macro to make FileSave save the current file, close it, and open a new blank document. However, if you simply modify the existing FileSave command, this will happen every time you use FileSave. So let's create a new macro that takes advantage of the existing FileSave command. Choose Tools, Macro. When the Macro dialog box opens, type in SaveAndClose and click Create. Now, enter the macro exactly as shown (Word supplies the Sub MAIN and End Sub statements). Sub MAIN FileSave FileClose FileNew End Sub Now choose File, Save to save the macro. To assign your new macro to a toolbar button, choose View, Toolbars and click Customize. When the Customize dialog box opens, scroll down through the Categories list and locate Macros. Select Macros, and your new macro will appear in the Macros list. Use the mouse to drag the macro to the toolbar. When you release the mouse button, the Custom Button dialog box will open. You can assign the macro name to the new button, or you can select one of the other buttons. After you make your choice, click Assign. When you get back to the Customize dialog box, click Close to close the dialog box. Now with just one button click, you can save the current document, close it, and open a new blank document.
CREATING A CUSTOM BUTTONIf the Word toolbar contains a button image that you'd like to use for a custom button, you can make a copy of the button and use its icon in your custom button. To do this, choose View, Toolbars and click Customize. Now click on the Toolbars tab. At this point, you can click (once) on the toolbar button you'd like to copy. Then choose Edit, Copy Button Image. Now you're ready to copy the image to a custom button. Create the new button by dragging a command to the toolbar (this could be a macro or a command). Click Assign and then choose Edit, Paste Button Image. Click Close to close the Customize dialog box. By the way, since the button image is on the Clipboard, you can paste it into your Word document if you like. Simply choose Edit, Paste.
CHANGING THE LINE SPACINGWhether you're writing a brochure, newsletter, report, or memo, you'll find that even a tiny bit of difference in the line spacing can make your document easier to read. Why not experiment with this a little? Print two or three versions of a document, each with a different line spacing, and then ask several people for their opinions. You'll probably find that there's a line spacing that people prefer. Let's try this. Let's make three documents all with the same text, but with different line spacing. For the original document, use the standard spacing. Choose File, Save to save the original document. Next, choose File, Save As and give the document a new name. In the new document, click in the body of the text and then choose Format, Paragraph. When the Paragraph dialog box opens, locate the two boxes labeled Line Spacing and At. In the At spin box, type .9 and click OK. Choose File, Save to save the document. This document is a bit more closely spaced than the standard single spacing. Now, choose File, Save As again and provide the document with a third name. Click in the body of the text and choose Format, Paragraph. This time, set the spacing to 1.1 and click OK. Save the new document (choose File, Save). Now print all three documents (or a portion thereof) and pass them out for comments. You'll probably find that people don't like the more closely spaced lines--even if they fail to actually notice the line spacing. Most people make little distinction between the 1.1-line spacing and the standard single spacing--although a few people may comment that the wider-spaced document seems easier to read.
CHANGING CELL SIZE IN TABLESWhen you work with Word tables, you can size individual cells. This can lead to problems if you don't select the cell or cells before you establish a new size. Try this: Open a Word document and choose Table, Insert Table. When the Insert Table dialog box opens, select 4 Rows and 4 Columns and click OK. Now select one cell (any cell) in the table and choose Table, Cell Height And Width. Set the width to a new value and click OK. You'll see that only the selected cell changed its width. The moral is this: Select what you want to change. If you want to change only one cell, select the cell. But if you really want to change the width of a column, make sure you select the column. One way to make sure the column is selected is to click a cell in the column and then choose Table, Select Column.
BREAKING A LINK IN YOUR DOCUMENTWhen you have a file linked to a Word document, the time may come when you want to break the link. For example, once you're sure the linked file will no longer change, there's not much point in maintaining the link. To break the link, choose Edit, Links. When the dialog box opens, click on Break Link. Word will ask if you're sure. Choose Yes. The object will remain in your Word document, but it will no longer be linked to its source file. Any changes you make to the object's file will not appear in the Word document.
AUTOMATIC LISTSVersion 95 If you want to let Word handle numbered lists for you, here's how to stay in control of what types of lists you get. If you want to use Roman numerals, enter I followed by a period, a space, and the text. When you press Enter, the next Roman numeral will appear. It should look like this: I. This is the first line If you want standard numbers, enter 1 followed by a period, a space, and your text. Now you'll get this: 1. This is first Want to use letters? Type A followed by a period, a space, and your text, like this: A. This is first You can also automatically create bulleted lists. Let's say you want to use a round bullet. Type * followed by a space or tab, then your text. When you press Enter, the bullet for the next item in the list will appear. You can also use angle brackets (greater-than and less-than signs) as bullets.
AUTOFORMAT HEADERSVersion 4.x, 95 Do you sometimes need to generate a document that has a repetitive style? Perhaps you need a header, followed by text, then another header, and so on. If so, this is a perfect time to use AutoFormat. Try this: Type in a header. Now press Enter twice--rapidly. The sentence should magically appear in Heading 1 style. If this doesn't happen, choose Tools, Options and click on AutoFormat. Select the radio button labeled AutoFormat As You Type. Now, under Apply As You Type, make sure Headings is selected. Click OK. Now type your header again and press Enter two times in rapid succession. You have to develop a touch for this. Note that the header style won't be applied to a sentence that includes punctuation at the end. If you type What, me worry the sentence will be converted to a heading. But if you type What, me worry? it won't be converted.
ANOTHER WAY TO PASTE THE CLIPBOARD CONTENTSYou know that you can paste Clipboard contents into Word by choosing Edit, Paste. You can also press Ctrl-V. And, although it seems to have been largely forgotten, you can press Shift-Insert. Word will even allow you to paste with only the Insert (or Ins) key. To see if you might like this arrangement, choose Tools, Options and click the Edit tab. Select the check box labeled Use The INS Key For Paste, and then click OK to save your changes and get rid of the dialog box. Now copy some text and then click on a blank spot in your document. Press Insert, and the copied text will appear.
AN UNDO TWISTSuppose you're working hard on a long Word document and you decide to delete (not cut) a paragraph. After a lot more serious editing, you decide that you really wish you hadn't deleted that paragraph. The thing is, you'd like to have that paragraph back, but you don't want all the other junk that you deleted along with the desired paragraph. Here's something to try: Choose File, Save As and save your document under a new name. Press Ctrl-Z (Undo) until the paragraph reappears. Select the paragraph and press Ctrl-C to copy it. Open your saved document, click where you want the paragraph to appear, and press Ctrl-V to paste it. It may seem like all that saving and opening is a lot of trouble, but it's a lot quicker than going through all that editing again.
AN INFORMATION-GATHERING MACROWhen you work with a Word document, the title bar displays the current file's name, but it doesn't show you the file's location. You can write a macro that will put the current file's name and complete path into the Word status bar. To enter the macro, choose Tools, Macro. In the Macro Name entry box, type GetPath and click Create. Now enter the macro as shown here. Note that Sub MAIN and End Sub are supplied by Word. Sub MAIN x$ = FileNameInfo$(FileName$(), 1) MsgBox(x$, - 1) End Sub This macro won't work in the toolbar. So, to use it, you need to put the command on one of the menus. Choose View, Toolbars and click Customize. When the Customize dialog box opens, click the Menus tab. Let's put the new command on the View menu. To do this, click the arrow at the right of the Change What Menu list box to expand the list. Select &View. Now click the arrow at the right side of the Position On Menu list box. Choose Bottom to place the command at the bottom of the menu. Now that you know where the new command will go, you have to locate the new command. Scroll down in the Categories list box and select Macro. Your new macro (GetPath) should appear under Commands. Select it and click Add. Click Close to close the dialog box and save your changes. With the new command in place, choose View, GetPath. The current file's full path and name will appear in the left side of the status bar at the bottom of the Word window.
ALERTING AUTOCORRECT TO YOUR HABITUAL ERRORSIf you like to use AutoCorrect, but don't have time to sit around trying to decide what to add to it, you can add words and phrases while you check your documents' spelling. When you do a spelling check, watch the Spelling And Grammar dialog box closely. When the spelling checker finds a misspelled word for which it has a correction, the AutoCorrect button becomes active (most of the time it's inactive and grayed out). If the mistake is one you commonly make, click AutoCorrect and the misspelled word and its correction will be entered.
ADJUSTING THE MOST RECENTLY USED LISTYou'll often want to start working on the last document you were working on when you left work the day before. Word has a neat little feature called the Most Recently Used list, but many Word users seem to ignore its presence. To access the list, choose File and you'll see the list at the bottom of the menu. Select the file you want to load and get back to work right where you left off. By default, the list holds the four most recently accessed files. You can change the number of files in the list, though. You can set it from zero to nine. Choose Tools, Options and click the General tab. Now use the spin box to indicate the number of filenames you want to retain in the list. After you make your selection, click Close to close the dialog box.
ADDING WORDS TO YOUR CUSTOM DICTIONARYIf you need to use a lot of words with strange capitalization, such as AutoCorrect, AutoFormat, and ClipArt, here's a tip that may save you some time and energy. When you run a spelling check, a word such as AutoCorrect will be tagged as incorrect if it appears as Autocorrect or AUTOCORRECT, because of the way the capitalization appears in the Custom dictionary. However, if such words are in the Custom dictionary in lowercase only, the case differences won't get tagged. So, if you have a long list of oddly capitalized words in your Custom.dic file, you can save yourself some time if you make them all lowercase. To do this, choose Tools, Options and click the Spelling tab. Now click Custom Dictionaries. With CUSTOM.DIC selected, click Edit. With your list of words available, you can either go through the list and make the necessary case changes, or you can make all the words lowercase. Just press Ctrl-A to select all the words and then choose Format, Change Case. When the Change Case dialog box opens, select Lowercase and click OK. Now choose File, Close to close the dictionary file. Select Yes in all the questions about saving. If asked about format, you want Text Only.
ADDING SHADING TO BORDERED TEXTVersion 4.x, 95 Note that you can also use the Shading dialog box to set the colors. If you use a color printer, you may want to try some colors to see how the printout looks. If you do decide to use colors, you'll soon find that Foreground doesn't refer to the text color; Foreground and Background refer to the colors that appear in your shading selection.
ADDING IMAGES TO MAILING LABELSVersion 4.x, 95 You know that you can insert images into a Word document. You can also insert images into the header and footer. But how about a mailing label? Why not put an image in a mailing label, too? You can do this, but the method isn't quite as obvious as the method for inserting pictures into documents and headers and footers. Here's what to do. Locate a BMP file that you'd like to use in your labels. Now choose Tools, Envelopes And Labels. When the dialog box opens, click Labels. Now click in the Address box. Press Ctrl-F9 to create a field. Enter into the field IncludePicture C:\\windows\\MyOwn.bmp where the picture is in the Windows folder and MyOwn.bmp is the filename. Make sure you use the double slashes (c:\\) as shown for every subdirectory when you enter the filename. Now, while the cursor is still in the field, press F9. The picture will load and appear in the label. If the picture is too large, use the mouse to size it. This insertion technique works best with small, simple figures. For example, inserting a small company logo should work well. Try to size the picture before you insert it into the label. If the picture doesn't look good at a reduced size, then it certainly won't look good in the label. If you use a black-and-white printer, you need to make sure the picture you intend to insert into the label will print well on your printer.
ADDING A FRAME TO YOUR WORDART OBJECTWhen you insert a WordArt object into a Word document, you don't automatically get a frame. Your text won't do the old wraparound trick until you insert a frame. Just right-click the WordArt and choose Frame Picture. Now right-click the framed WordArt and choose Format Frame. Make your wrapping choices and click OK.
LINKED AND UNLINKED PICTURESIs there a way to insert pictures and still keep the Word file a reasonable size? Yes, you can reduce the size of the Word document and, although that picture file has to reside somewhere, you'll experience a net saving in disk space. Locate a picture (a rather large one) and choose Insert, Picture. Select the picture you want to insert and click OK. Now choose File, Save (or Save As) to save your document. Close Word (File, Exit) and then run Windows Explorer. Locate your document file and click it. Explorer will show you the file size. In our case, the picture file size was 160 KB; with the picture inserted, the Word document file size was 370 KB. Run Word and open your document again. Click the picture to select it and then press Delete to delete the picture. Now choose Insert, Picture again. Locate and select the same picture. This time, select the check box labeled Link To File and deselect the check box labeled Save With Document. Now save your file and close Word (File, Exit). Check the file size in Windows Explorer again. This time, the file will be much smaller. Ours was 45 KB. With the picture inserted into the Word document (and saved with it), the file size was 370 KB. Without the inserted file saved with the document, the size was 45 KB. The total file space required is 205 KB for the linked picture and 370 KB for the inserted picture. There are some problems with linking the files this way and then sending them to someone else on a floppy disk. We'll cover these problems in the next tip.
KEYBOARD SHORTCUT TO STYLE LIST BOXVersion 4.x, 95 When you want to select a new style in Word, you can move up to the toolbar, click on the down arrow next to the Style list box, and select the new style. You can do the same using the keyboard. Press Ctrl-Shift-S. This highlights the Style list box. Use the arrow key to move through the list. When the style you want is highlighted, press Enter.
KEEPING LINKED PICTURES TOGETHER WITH THEIR FILESIn the last tip, we discussed the difference between linking and inserting pictures into a Word document. You'll gain a net saving in disk space if you link the pictures and then save the pictures and the Word files on a floppy disk. However, there are some sticky problems with this approach. The problems all come about because the link to the picture will point to a specific folder--the folder in which the picture resided when you created the link. If you copy a Word file and its linked picture to a floppy, the link will be broken. A remote user could see the picture only if it is copied into a folder of the same name as the original folder. Although you could send along instructions on how to create and name the folder, you're asking for trouble. Try this instead: Copy the Word file and the picture file to a blank floppy disk. When the floppy arrives at the remote location, ask the user to load the Word file from the floppy disk. Now the user will need to choose Edit, Links. When the Links dialog box opens, click Change Source. Now locate the picture file on the floppy disk and select it. Click OK, and the picture will appear in the document. All this is probably more trouble than it's worth. Unless you have a really good reason for needing to keep those Word files short, insert the picture and save it along with the Word file. You'll save everyone (including yourself) a lot of headaches.
TROUBLESHOOTING WORD SEARCHESVersion 4.x, 95 Suppose you'd like to locate a specific word in a Word document. Let's say you'd like to locate the next occurrence of the word "this." You open Find and start a search. The search finds nothing. Now, you know you've used the word "this," so what's wrong? If you encounter this problem, open Find and see if there's a formatting style attached to the word for which you're searching. If so, click No Formatting and then continue your search.
THE DIFFERENCE BETWEEN FAST AND SAFE SAVESWhen it comes to saving Word documents, you can choose between fast and safe. If you want to be safe, choose Tools, Options. Click the Save tab and then select the check box labeled Always Create Backup Copy. Click OK to save your choice and close the Options dialog box. If you'd like to use fast saves, choose Tools, Options, click Save, and select the Allow Fast Saves check box. You'll notice that this automatically turns off Always Create Backup Copy. You have to choose between the two. After you make up your mind, click OK to get back to work.
TAKE ME TO YOUR LEADERDo you sometimes need to use leaders? Leaders are those little dots leading up to some text, like this: ...............Text Leaders. To set up leaders, choose Format, Tabs. When the dialog box opens, enter the tab position you want to use (in inches). Next, look under Leader. Select the radio button associated with the type of leader you want (they don't always have to be little dots) and then click Set. Click OK to record your selection and close the dialog box. Now when you use the Tab key, the tab location you entered will display the leader.
SHORTCUT TO CHANGING SENTENCE CASEIf you'd like to change the case of a sentence quickly, try this: Select the sentence and press Shift-F3. The first time you press Shift-F3, the sentence will turn to all caps. The next time you press the combination, the sentence will turn to all lowercase. When you press Shift-F3 once more, the sentence will display standard capitalization (it begins with a cap and other letters are in lowercase).
SHORTCUT KEY FOR TRUE APOSTROPHEVersion 4.x, 95 Choose Insert, Symbol and click the Special Characters tab. Now locate Single Closing Quote and select it. Click Shortcut Key and then click in the Press New Shortcut Key text box. Press Ctrl-Alt-' (apostrophe), click Assign, and click Close. Click Close again in the Symbol dialog box. From now on, you can insert the apostrophe by pressing Ctrl-Alt-'.
SELECTING PARAGRAPH MARKSVersion 4.x, 95 In the last tip, we suggested that you select the paragraph mark along with the numbered list item before making a drag-and-drop text move. This technique applies to many drag-and-move operations that have nothing to do with numbered lists. The paragraph mark contains the formatting information for the text. So anytime you want to make a move and retain the formatting, include the paragraph mark in the selection. An easy way to select the paragraph mark along with a single paragraph sentence is to hold down the Ctrl key and double-click the sentence to select it. Then, with the sentence still selected, release the Ctrl key and press the Shift key. While holding down the Shift key, press the right arrow once. This will move the selection one place to the right and will select the paragraph mark. This technique won't work with sentences in the middle of a paragraph because there's no paragraph mark there.
SELECTING ALL THE TEXT IN A DOCUMENTVersion 4.x, 95 This is another one of those tips that's of questionable usefulness but fun to relate. As you know, there are a number of ways to select an entire Word document: You can choose Edit, Select All.
SELECTING A BLOCK OF TEXTHow do you select a block of text in a document? That is, select a block of text without regard to individual sentences, paragraphs, or page breaks? Hold down the Alt key while using the mouse to select a portion of the document.
RESUMING A FIND OR FIND AND REPLACE OPERATIONIf you need to interrupt a Word Find or Find and Replace operation before you're finished, you can resume the Find by pressing F4. To try this, start a Find and Replace and then click Close. Now press F4 to continue with the operation. Word will pick up in the same spot where you stopped, unless you moved your cursor.
PRODUCING A TRUE APOSTROPHEVersion 4.x, 95 There's another way to create a true apostrophe: Hold down Ctrl and press the apostrophe key. Now release Ctrl and press the apostrophe key again.
PLACING PICTURES IN A TWO-COLUMN NEWSLETTERVersion 4.x, 95 In the last tip, we talked about setting up columns in Word and using section breaks as a way to place large headlines over a two-column layout. This time, let's look at how we can add pictures to a two-column newsletter. Let's say you'd like to place a picture right in the center of a two-column page. To begin, choose View, Page Layout so you can view your two-column document in the form in which it will print. Next, add the picture by choosing Insert, Picture and then locating and selecting the picture you want to include. After you select the picture file, click OK. Once the picture is in the document, don't worry about its placement just yet. Right-click the picture and choose Frame Picture. With the picture framed, you can drag it anywhere in the document--even between the two columns. You can also size the picture now. The text should flow around the frame. If it doesn't, right-click the picture and choose Format Frame. Make sure you select Around and click OK. You can also use this dialog box to set the distance between the text and the frame. The default is 0.13 inch. Reduce that number to place the text closer to the frame. After you enter the new number, click OK.
PASTING CLIPBOARD DATA INTO A DOCUMENTWord offers a number of ways to paste data from the Clipboard to an open document. There's the usual way--choose Edit, Paste. Or, you can use its keyboard shortcuts: Ctrl-V or Alt, E, P. Here's another method that you may not know about: You can press Shift-Insert to paste that Clipboard data.
MOVING NUMBERED LIST ITEMSVersion 4.x, 95 You've generated a rather long numbered list, and now you see that you'd like to organize the list a bit differently. So you select the text in one of the entries and then use the mouse to drag it to a new location. It doesn't work. How come? When you want to move selected text from a numbered list, you need to select the paragraph mark and drag it to the new location along with the text. If the paragraph marks don't show up in your document, choose Tools, Options and click on View. Select the Paragraph Mark check box and then click OK.
MODIFYING THE SAVEANDCLOSE MACRORecently, we showed you a macro designed to save the current document, close it, and open a new blank document. This time, let's modify that macro. Since you may not always want to open a new document after you close the current one, this version of the macro uses a message box to give you the option of opening a new document or simply saving and closing the current document. Choose Tools, Macro. When the Macro dialog box opens, enter SaveAndClose If you've already written the SaveAndClose macro described previously, click Edit. If not, click Create. In either case, enter the following: Sub MAIN MyChoice = MsgBox("Do you want to open a new document?", 4) If MyChoice = 1 Then FileSave FileClose FileNew ElseIf MyChoice = 0 Then FileSave FileClose EndIf End Sub Now choose File, Save to save the macro. To assign your new macro to a toolbar button (if you haven't already done this), choose View, Toolbars and click Customize. When the Customize dialog box opens, scroll down through the Categories list and locate Macros. Select Macros and your new macro will appear in the Macros list. Use the mouse to drag the macro to the toolbar. When you release the mouse button, the Custom Button dialog box will open. You can assign the macro name to the new button, or you can select one of the other buttons. After you make your choice, click Assign. When you get back to the Customize dialog box, click Close to close the dialog box. If you've already assigned SaveAndClose to a button, the button will function with the modified macro. When you click the SaveAndClose button, the macro will give you the option of saving and closing the file and opening a new document (click Yes), or saving and closing without opening a new document (click No).
MODIFYING THE FILECLOSE COMMANDIn the last tip, we discussed how to combine Word commands into a macro. We mentioned that you can modify existing Word macros to make them suit your needs. This time, let's look at how to modify one of those commands. Let's consider the FileClose command. When you choose File, Close, Word will ask if you want to save the file. But a safer way to handle a file closing might be to always save the file. If you do this, you'll never have to work at recovering an unsaved document. So why not modify the command? To modify the FileClose command, choose Tools, Macro. When the Macro dialog box opens, type in FileClose and click Create. You'll find that the macro (shown below) consists of only one command. Sub MAIN FileClose End Sub To make the macro always save a file before closing it, modify the macro as shown here: Sub MAIN FileSave FileClose End Sub Choose File, Save to save the modified macro. Then choose File, Close to close the macro. From now on, when you choose File, Close, Word will first save the document and then close it. If the document has no name, Word will prompt you for one. Of course, if you commonly create a lot of test documents you don't plan to save, this is not the macro for you.
MAKING A BOOKLETIf you'd like to make a booklet, all you need is Word and some standard 8.5- by 11-inch paper. The trick is setting up the printer and visualizing where the pages will appear. To make a four-page booklet, you'll fold the paper in half. Give this a try now, before you even think about writing and printing the booklet. Fold the paper and then place it on the desk with the inside of the fold upward. You're looking at page two and page three. The back of page two is page one, and the back of page three is page four. Now you can create a document. Choose File, Page Setup. When the dialog box opens, click the Paper Size tab and select Landscape. Click OK to exit the dialog box and record the change. Next, choose Format, Columns. When the Columns dialog box opens, click Two columns and then click OK. Choose View, Page Layout so you can see what's going on in both columns. Now write your document, remembering that pages one and four will appear on one Word page, and pages two and three will appear on another Word page. Let's assume that booklet pages one and four are on Word page one. To print your booklet, choose File, Print. When the dialog box opens, select Pages and type in 1 Click OK to print. Now remove the printed page from the printer and insert it in the paper tray with the printed side up (in most printers). Choose File, Print and select Pages. Type in 2 and click OK to print the other side of the paper. With both sides of the page printed, you can now fold the paper to make your booklet. Note: Not all printers feed the paper the same way. You need to determine how your printer works.
USING BOLD, UNDERLINED, OR ITALIC TEXT FORMATTINGMaking text bold (or underlining or italicizing it) isn't a problem in Word. To make all subsequent text appear in bold, press Ctrl-B and start typing. For underlined text, press Ctrl-U. And, to set the text in italics, press Ctrl-I. You can toggle off all of these commands by repeating them. If you need to change the format of existing text, select the text and then choose the appropriate command to change its formatting.
USING A TABLE MACROVersion 4.x, 95 If you frequently insert a specific size and type of table into your Word documents, here's a macro that can do the job for you. Of course, the table we're creating with AddTable might not be the one you need, so you'll have to edit the macro a little. TableInsertTable .ConvertFrom = "", .NumColumns = "8",.NumRows = "2", .InitialColWidth = "Auto", .Format = "7",.Apply = "167" Macros just don't get any simpler than this. To get the macro into Word, choose Tools, Macro. In the Macro Name text box, type AddTable and click Create. Now type in the macro as shown above. Choose File, Save to save the new macro. To change the table parameters, change NumRows and NumColumns. To choose a different table format, change the Format value. The number corresponds to a table format listed in the AutoFormat dialog box. To get there, choose Table, Insert Table and click on AutoFormat. Unfortunately, you're forced to count down the list to figure out which number goes with which table format--the first format, (None), is zero; Simple 1 is number one; Classic 1 is number four; and so on. Our number 7 corresponds to the Classic 4 format. After you finish looking over the table formats, click Cancel and then click Cancel again. To use the new macro, choose Tools, Macro. Click AddTable to select it and then click Run.
USING A DIFFERENT HEADER FOR EACH SECTION IN A DOCUMENTWhen you place a header or footer into a Word document, the header or footer applies to the entire document--unless you separate the document into sections, in which case you can use a different header and footer for each section. Open a blank Word document and choose View, Header And Footer. Insert something into the header. Now, press Enter until you get to a new page. Choose File, Print Preview. If you zoom in, you'll see that the header appears on both pages. Now, go back to Page 1, about halfway down the page. Choose Insert, Break. When the Break dialog box appears, select Continuous and then click OK. Click in the new section and choose View, Header And Footer. Enter your new header (or footer) text. Make sure the Same As Previous button is NOT selected (it's the fourth button from the left in the Header And Footer floating toolbar). Click Close, and your new header will take effect. To view the headers, choose File, Print Preview and zoom in if necessary.
USE COLUMNS FOR TEXT APPEALVersion 4.x, 95 If you've been appointed to produce a newsletter for your organization, club, or church, you can use columns to make the newsletter look more professional. Columns are much easier to deal with than most people imagine. Let's say you decide to create a two-column newsletter. This isn't a problem at all. Simply choose Format, Columns. Click Two and click OK. To view the document properly in two columns, choose View, Page Layout. People sometimes run into problems when they want to use a full-width banner headline over a two-column page. But you can do this fairly easily. Go to the very top of the document and choose Insert, Break. When the dialog box opens, select Continuous and click OK. This inserts a section break. Now click above the section break line and choose Format, Columns. Click One and click OK. Type in your headline and make it long enough to cover the entire width of the page, if that's what you want. In any case, you can center it on the page by clicking the Center Text button in the Word toolbar. Another problem people encounter is trying to place graphics or pictures in the columns. We'll discuss that in the next tip.
UNSHRINKING DOCUMENTS MANUALLYIn a previous tip, we mentioned that you can shrink text in Word's Print Preview mode. For example, if you have only one or two sentences on the next page of a document, you can use Shrink To Fit to make all the text fit on the same page. Several readers have asked about unshrinking a document. Well, here's the bad news--if you've already saved the document, there really isn't any good way to unshrink it. What you can do is open the document and press Ctrl-A to select all the text. Next, choose Format, Font and set the font size back to the original size. This will remove the shrink, but not automatically. You'll still have to go through the entire document and reformat any headings (or other elements) that you used in the original document. Of course, if you just shrunk the document, and have now decided that you'd rather not, just press Ctrl-Z to undo the shrink. You can avoid this dilemma altogether by saving a backup copy of your file. Before shrinking the document, use the File, Save As command.
TURNING YOUR TABLE GRIDLINES ON AND OFFWhen you create a table in Word, the table will appear in the document with gridlines. However, the gridlines won't appear on the printed sheet. If you'd prefer to work without the gridlines, you can choose Table, Gridlines. This is a toggle--so to turn the gridlines back on, choose the same command. If you want the gridlines to appear in the printed document, select the table and choose Format, Borders And Shading. When the dialog box opens, click Grid and then click OK. The gridlines will appear both in your document and in the printout.
WRAPPING TEXT AROUND CALLOUTSVersion 4.x, 95 Some subscribers have asked about using callouts in text. Is there a way to make the primary text wrap around callout text? Yes, there is--well, sort of. What you can do is insert a frame (Insert, Frame) and then draw a callout inside the frame. Before you insert the callout, place the frame where you want it to appear when finished (at least as close as possible). If you don't see the Drawing toolbar, choose View, Toolbars and select Drawing. Once the toolbar is visible, click the Callout button (it looks like one of the speech bubbles you see in a comic strip) and draw the callout inside the frame. Now you can right-click the frame and choose Format Frame. In the Frame dialog box, choose to have text wrap around the frame, then click OK. At this point, you can enter your callout text. If you need to change the placement of your callout, move the frame and then move the callout back inside it.
VERTICAL TOOLBAR UNDO QUIRKVersion 4.x, 95
USING ZOOM TO CHECK YOUR DOCUMENTWhen you want to get a quick idea of the look and feel of a document--see how its layout looks--choose File, Print Preview and then click the arrow at the right side of the Zoom list box to expand the list. Select 25%. You won't be able to read the text, but you'll get a very good idea of the overall appearance of your page layout.
USING PREPRINTED STATIONERYIf you use preprinted stationery, you probably want to use that paper for only the first page of a multipage document. Word makes it easy to use a different sheet for the first page. Choose File, Page Setup and click the Paper Source tab. You'll notice that you can choose the feed source for the first page and the other pages separately. This is so you can use that preprinted letterhead. If you select Manual Feed for the first page and the default tray for the other pages, Word will pause for you to insert that specially printed paper to print the first page. After that page finishes, the document will continue to print on the standard paper in the default bin.
USING BORDERSVersion 4.x, 95 Borders can really spruce up your Word documents. Suppose you have some text you'd like to set apart from the rest of a document. Go ahead and type in the paragraph, and with the cursor set somewhere in (or at the end of) the paragraph, choose Format, Borders And Shading. When the dialog box opens, click on the Borders tab and then click on either Box or Shadow. Click OK, and a border will appear around your paragraph. If you decide you don't want the border after all, click inside the bordered paragraph, choose Format, Borders And Shading, and again click the Borders tab. This time select None and click OK.
INSERTING SMILEY FACE
SYMBOL
|