I'm also curious how to permanently turn the autocomplete for dates
off now that the option was removed from the preferences in Word 2007.
I looked at the link for installing macros to remove autocomplete.
There are different ways to implement the macro and I guess the
section "Auto... macros" should be used: "AutoExec - runs when Word is
started or a global template is loaded" - will this be the macro I
need to edit? and where do I edit/create this macro in Word 2007?
Yes, you would place the line
Application.DisplayAutoCompleteTips = False
in a macro named AutoExec in a module in your Normal.dotm template, by
itself or with other code you want to run on every startup. (That line is
courtesy of Herb Tyson at
http://word2007bible.herbtyson.com/2007/05/28/turning-off-date-autocomplete-in-word-2007/.)
In order to edit macros in Word 2007, first go to Office button > Word
Options and check the option to display the Developer tab on the ribbon. You
only have to do that once. On the developer tab, you'll find a button at the
left to open the VBA editor (or you can press Alt+F11, regardless of whether
the Developer tab is enabled). The VBA editor in 2007 is the same as that in
earlier versions, so you can follow the instructions at
http://www.gmayor.com/installing_macro.htm for creating the macro.
--
Regards,
Jay Freedman
Microsoft Word MVP
Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.