A family of Microsoft word processing software products for creating web, email, and print documents.
- Language is a character property in Word. Here is how to tell which language has been applied to a selection in Word 2007: Click the Review tab, and then click Set Language. While the Language dialog box is open, clear the "Detect language automatically" option; this prevents Word from trying to guess the language at the insertion point based on what you type.
- The macro would be used instead of AutoComplete. You would attach it to a keyboard shortcut and/or a button on your Quick Access Toolbar and run it as desired. For example, you can use this macro (suggested by Greg Maxey in the thread at http://answers.microsoft.com/en-us/office/forum/office_2007-word/insert-date-and-time-in-word/17bee601-80b6-4a52-92e2-65c720db1a91).
Sub DateLongStamp()
'Inserts current date
Selection.InsertDateTime _
DateTimeFormat:="dddd, MMMM d, yyyy", _
InsertAsField:=False
End Sub
Save the macro to the Normal template. For installation instructions, see http://www.gmayor.com/installing_macro.htm.