Labels: Microsoft Word, text, vertical
Categories:Uncategorized
Labels: checkbox, Microsoft Word, special symbols.
Categories:Uncategorized
Labels: Microsoft Word, split
Categories:Uncategorized
I like Word smart quotes most of the time but sometimes, like when I’m preparing an email or some code, they’re not needed and can make a mess of the project.
You can, quite easily, stop this happening if you choose Tools, AutoCorrect Options, AutoFormat as you Type tab and disable the checkbox for “Straight quotes” with “smart quotes” and click Ok. Now you’ll have straight quotes in your document.
Reverse the process to get them back.
This simple macro, attached to a toolbar button can do the toggling work for you (just make sure you put everything between the Sub and End statements appears on one line:
Sub changeQuotes()
Options.AutoFormatAsYouTypeReplaceQuotes = Not (Options.AutoFormatAsYouTypeReplaceQuotes)
End Sub
Labels: Microsoft Word, Smart Quotes, Straight Quotes
Categories:Uncategorized
In recent implementations of Word they broke the image insertion tool. When you insert an image it comes in as “Inline with text” which means it won’t move, it breaks up lines and, in general, looks awful.
Luckily it’s fixable and permanently so. To do this, choose Tools, Options, Edit tab. From the Insert/Paste pictures as dropdown list choose something like Square or In front of Text (in fact anything other than In line with text). Click Ok and the change will be permanent. Although you can, of course, always change the setting for any inserted image if you really do want to put it inline with text by selecting the option from the Picture toolbar on an image by image basis. My bet is you won’t ever do it though!
Labels: image, insert, Microsoft Word
Categories:Uncategorized
You already know that you can simply double click anywhere in the Word editing window and immediately the cursor appears ready for you to start typing. But clicks elsewhere do practical and timesaving things too:
and, finally for today at least:
Labels: dialogs, double click, Microsoft Word, table data
Categories:Uncategorized
Yesterday I explained how to use AutoText entries to speed up entering data. Today, I’ll show you how to organize your AutoText entries into groups on the menu using Styles:
You create or add an entry to AutoText groups on the AutoText menu by saving an AutoText entry formatted using a style with the name you want to be added to the menu. For example, to add an AutoText entry to the Closing group, type the text, select it and format it with a style called closing (or create a style with that name). Then save the text as an AutoText entry.
When an AutoText entry is saved that is formatted with a style a new entry with that style name appears on the AutoText menu or the item is added to the submenu if it already exists. So, to enter something on the closing submenu, format it with a style that you have called Closing before creating it.
Labels: AutoText., Microsoft Word
Categories:Uncategorized
The AutoText tool in Word can help speed up your work by automatically inserting pieces of text and images. Here’s how to use it:
Step 1
To create an AutoText entry, type and then select the text to save and choose Insert > AutoText > New, type the name for the entry and click Ok. You can also do the same thing with images inserted into a document and create an AutoText entry from one.
Step 2
To later use a saved AutoText entry, type the name of the entry. When you have typed sufficient letters to uniquely identify the entry (at least four), Word will prompt you with the AutoText name. Press Enter to insert the AutoText entry. You can also type the name and press F3 or select the entry by choosing Insert, AutoText, AutoText and choose it from the dialog.
tomorrow… how to create your own groups in AutoText to organize entries.
Labels: AutoText., Microsoft Word
Categories:Uncategorized
Word does not contain any option for automatically numbering a series of documents with a consecutive number. The solution is to create a macro to do the work for you. Start with a template that has a macro that runs when ever the template is used for a new document. The macro should read a number stored in a file on your drive, add it to your document and then, to prepare the number for the next time it’s required, the number should be incremented by one and be written back into the file.
To create the solution, create a new document (or open an existing one to use as a template) and click where you want the sequential number to appear, and choose Insert, Bookmark, type docNum in the Bookmark name area and click Add.
Save this file as a template by choosing File, Save As, from the Files as type list choose Document Template (*.dot), give the file a name and click Save. With the file still open, choose Tools, Macro, Macros and type the name of the macro docNum and, from the Macros In list choose the template file name for the file you just saved and choose Create.
Type this macro as shown, the sub and end sub lines should be there already:
Sub docNum()
Dim MyString, docNumber
FileToOpen = “c:\windows\docNumfile.txt”
Open FileToOpen For Input As #1
Input #1, docNumber
Close #1 ‘ Close file
ActiveDocument.Bookmarks(“docNum”).Select
Selection.InsertAfter Text:=docNumber
docNumber = docNumber + 1
Open FileToOpen For Output As #1
Write #1, docNumber
Close #1 ‘ Close file.
End Sub
Now choose File, Close and Return to Microsoft Word. With the template on the screen, choose File, Close and answer Yes when prompted to save your changes.
Now open Notepad and type a number 4 or 5 numbers less than the number of the first quote you want to use. So, if you want to start numbering at 200, type 195 so you have a few numbers to use to test the process. Choose File, Save As and save the file as a text file, calling it docNumfile.txt and save it to this folder: C:\windows. Close Notepad
To test the process, choose File, New, choose the template file and click OK. Now run the macro by choosing Tools, Macro, Macros, docnumb, Run. If you have everything right the document number will be inserted in the document.
When this is working fine, alter the macro so this process of inserting the document number happens automatically whenever you create a new document based on this template. To do this, choose Tools, Macro, Macros, click on docnumb and click Edit. Change this macro’s procedure name by altering this line of code:
Sub docnumb()
to read
Sub AutoNew()
Choose File, Close and Return to Microsoft Word. With the template on the screen, choose File, Close. Say No to saving your changes to this file but answer Yes to save the changes to your template file.
Now test again by creating a new file using File, New, choose your template and click OK. The document number should be added automatically to the new document.
If, in the process of testing you find you go past your starting document number, open Notepad and open the file docnumfile.txt, type a new starting number and save it again.
Labels: automatic numbering, Macro, Microsoft Word
Categories:Uncategorized
When you’re working with large pieces of text in Microsoft Publisher, you may find it easier to work in Word rather than Publisher. This way you can concentrate on your text without having to deal with layout issues.
Then, when you have finished settling your text, import it into a Publisher text box by clicking in the text box and choose Insert, Text file and browse to locate and import your file.
On the other hand, you can edit a piece of text in Word from inside Publisher if you right click a text frame in Publisher and choose Change Text, Edit Story in Microsoft Word to export it to Word. When you’re done, choose File, Close & Return to return to Publisher.
Labels: editing, Microsoft Publisher, Microsoft Word, text
Categories:Uncategorized