A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook - General Queries
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

How Can I turn off Date Autocomplete in Outlook 2007



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old July 25th 07, 07:25 PM posted to microsoft.public.outlook
Nigel Freeney[_2_]
external usenet poster
 
Posts: 25
Default How Can I turn off Date Autocomplete in Outlook 2007

I don't like the way that when I type in a date like 25th July 2007 in Word
and Outlook 2007 it insists on offering me 2007-07-25 autocomplete if I
press the enter key. I usually create a juornal entry and then hit enter to
move down to a new line so this is a right pain. Herb Tyson came up with
the following Macro for Word 2007 on his Word 2007 Bible Blog

*To simply turn it off*
Sub TurnOffAutoComplete()
Application.DisplayAutoCompleteTips = False
End Sub

*To toggle it on or off*
Sub TurnOffAutoComplete()
Application.DisplayAutoCompleteTips = Not
(Application.DisplayAutoCompleteTips)
End Sub

Unfortunately of course this doesn't work in Outlook
Run-time Error 438
because the object doesn't support this property or method

Can anyone fix this for Outlook or now of another way to sort this out?

Thanks,

Nigel

Ads
  #2  
Old July 25th 07, 07:37 PM posted to microsoft.public.outlook
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default How Can I turn off Date Autocomplete in Outlook 2007

You'd need to get a Word.Application object for the current message. There's no such global setting. My blog post at http://turtleflock-ol2007.spaces.liv...E3D8!579.entry shows how to get a Word.Document object from a message. It would be just one more step to get the Document.Application object from that Document. Whether Herb's technique would work, though, is something you'll have to test to find out.

--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Nigel Freeney" wrote in message ...
I don't like the way that when I type in a date like 25th July 2007 in Word
and Outlook 2007 it insists on offering me 2007-07-25 autocomplete if I
press the enter key. I usually create a juornal entry and then hit enter to
move down to a new line so this is a right pain. Herb Tyson came up with
the following Macro for Word 2007 on his Word 2007 Bible Blog

*To simply turn it off*
Sub TurnOffAutoComplete()
Application.DisplayAutoCompleteTips = False
End Sub

*To toggle it on or off*
Sub TurnOffAutoComplete()
Application.DisplayAutoCompleteTips = Not
(Application.DisplayAutoCompleteTips)
End Sub

Unfortunately of course this doesn't work in Outlook
Run-time Error 438
because the object doesn't support this property or method

Can anyone fix this for Outlook or now of another way to sort this out?


  #3  
Old July 25th 07, 07:55 PM posted to microsoft.public.outlook
Diane Poremsky
external usenet poster
 
Posts: 2,402
Default How Can I turn off Date Autocomplete in Outlook 2007

I just ignore it and keep typing and it goes away - it will not apply the
style it offers if you either keep typing, or if you are done typing, press
space twice.



--
Diane Poremsky [MVP - Outlook]
Author, Teach Yourself Outlook 2003 in 24 Hours
Need Help with Common Tasks? http://www.outlook-tips.net/beginner/
Outlook 2007: http://www.slipstick.com/outlook/ol2007/

Outlook Tips by email:


Outlook Tips:
http://www.outlook-tips.net/
Outlook & Exchange Solutions Center: http://www.slipstick.com
Subscribe to Exchange Messaging Outlook newsletter:



"Nigel Freeney" wrote in message
...
I don't like the way that when I type in a date like 25th July 2007 in Word
and Outlook 2007 it insists on offering me 2007-07-25 autocomplete if I
press the enter key. I usually create a juornal entry and then hit enter to
move down to a new line so this is a right pain. Herb Tyson came up with
the following Macro for Word 2007 on his Word 2007 Bible Blog

*To simply turn it off*
Sub TurnOffAutoComplete()
Application.DisplayAutoCompleteTips = False
End Sub

*To toggle it on or off*
Sub TurnOffAutoComplete()
Application.DisplayAutoCompleteTips = Not
(Application.DisplayAutoCompleteTips)
End Sub

Unfortunately of course this doesn't work in Outlook
Run-time Error 438
because the object doesn't support this property or method

Can anyone fix this for Outlook or now of another way to sort this out?

Thanks,

Nigel


  #4  
Old July 25th 07, 11:35 PM posted to microsoft.public.outlook
Nigel Freeney[_2_]
external usenet poster
 
Posts: 25
Default How Can I turn off Date Autocomplete in Outlook 2007

Hi Diane,

As I said in the original post this is irritating because it occurs in a
journal entry which is in the format of date carraige return next line. I
get the carraige return by pressing enter which then leads to the autodate
replacing the date format I want.

Thanks,

Nigel

"Diane Poremsky" wrote in message
...
I just ignore it and keep typing and it goes away - it will not apply the
style it offers if you either keep typing, or if you are done typing, press
space twice.



--
Diane Poremsky [MVP - Outlook]
Author, Teach Yourself Outlook 2003 in 24 Hours
Need Help with Common Tasks? http://www.outlook-tips.net/beginner/
Outlook 2007: http://www.slipstick.com/outlook/ol2007/

Outlook Tips by email:


Outlook Tips:
http://www.outlook-tips.net/
Outlook & Exchange Solutions Center: http://www.slipstick.com
Subscribe to Exchange Messaging Outlook newsletter:



"Nigel Freeney" wrote in message
...
I don't like the way that when I type in a date like 25th July 2007 in
Word and Outlook 2007 it insists on offering me 2007-07-25 autocomplete if
I press the enter key. I usually create a juornal entry and then hit enter
to move down to a new line so this is a right pain. Herb Tyson came up
with the following Macro for Word 2007 on his Word 2007 Bible Blog

*To simply turn it off*
Sub TurnOffAutoComplete()
Application.DisplayAutoCompleteTips = False
End Sub

*To toggle it on or off*
Sub TurnOffAutoComplete()
Application.DisplayAutoCompleteTips = Not
(Application.DisplayAutoCompleteTips)
End Sub

Unfortunately of course this doesn't work in Outlook
Run-time Error 438
because the object doesn't support this property or method

Can anyone fix this for Outlook or now of another way to sort this out?

Thanks,

Nigel



  #5  
Old July 26th 07, 11:19 AM posted to microsoft.public.outlook
Nigel Freeney[_2_]
external usenet poster
 
Posts: 25
Default How Can I turn off Date Autocomplete in Outlook 2007

Hi Sue,

I don't have enough experience with VBA to work it out for myself - but
thanks for taking a look.

In my frustration I have discovered a more lateral solution to the problem.

If I press SHIFT+ENTER then the autocomplete is ignored and I can carry on
with the date as I have written it without breaking the work flow. This is a
useable solution.

Of course if anyone can come up with the macro fix or a registry hack I
would be grateful.

Thanks,

Nigel

"Sue Mosher [MVP-Outlook]" wrote in message
...
You'd need to get a Word.Application object for the current message. There's
no such global setting. My blog post at
http://turtleflock-ol2007.spaces.liv...E3D8!579.entry
shows how to get a Word.Document object from a message. It would be just one
more step to get the Document.Application object from that Document. Whether
Herb's technique would work, though, is something you'll have to test to
find out.

--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Nigel Freeney" wrote in message
...
I don't like the way that when I type in a date like 25th July 2007 in Word
and Outlook 2007 it insists on offering me 2007-07-25 autocomplete if I
press the enter key. I usually create a juornal entry and then hit enter
to
move down to a new line so this is a right pain. Herb Tyson came up with
the following Macro for Word 2007 on his Word 2007 Bible Blog

*To simply turn it off*
Sub TurnOffAutoComplete()
Application.DisplayAutoCompleteTips = False
End Sub

*To toggle it on or off*
Sub TurnOffAutoComplete()
Application.DisplayAutoCompleteTips = Not
(Application.DisplayAutoCompleteTips)
End Sub

Unfortunately of course this doesn't work in Outlook
Run-time Error 438
because the object doesn't support this property or method

Can anyone fix this for Outlook or now of another way to sort this out?


  #6  
Old July 26th 07, 01:12 PM posted to microsoft.public.outlook
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default How Can I turn off Date Autocomplete in Outlook 2007

I usually just ignore by continuing to type.

--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Nigel Freeney" wrote in message ...
Hi Sue,

I don't have enough experience with VBA to work it out for myself - but
thanks for taking a look.

In my frustration I have discovered a more lateral solution to the problem.

If I press SHIFT+ENTER then the autocomplete is ignored and I can carry on
with the date as I have written it without breaking the work flow. This is a
useable solution.

Of course if anyone can come up with the macro fix or a registry hack I
would be grateful.

Thanks,

Nigel

"Sue Mosher [MVP-Outlook]" wrote in message
...
You'd need to get a Word.Application object for the current message. There's
no such global setting. My blog post at
http://turtleflock-ol2007.spaces.liv...E3D8!579.entry
shows how to get a Word.Document object from a message. It would be just one
more step to get the Document.Application object from that Document. Whether
Herb's technique would work, though, is something you'll have to test to
find out.

--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Nigel Freeney" wrote in message
...
I don't like the way that when I type in a date like 25th July 2007 in Word
and Outlook 2007 it insists on offering me 2007-07-25 autocomplete if I
press the enter key. I usually create a juornal entry and then hit enter
to
move down to a new line so this is a right pain. Herb Tyson came up with
the following Macro for Word 2007 on his Word 2007 Bible Blog

*To simply turn it off*
Sub TurnOffAutoComplete()
Application.DisplayAutoCompleteTips = False
End Sub

*To toggle it on or off*
Sub TurnOffAutoComplete()
Application.DisplayAutoCompleteTips = Not
(Application.DisplayAutoCompleteTips)
End Sub

Unfortunately of course this doesn't work in Outlook
Run-time Error 438
because the object doesn't support this property or method

Can anyone fix this for Outlook or now of another way to sort this out?


 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I turn on Date Navigator in Outlook 2002? Zorcon Outlook - Calandaring 7 May 23rd 07 08:17 AM
Wahy to turn off attachment warning in Outlook 2007 Tom Outlook - General Queries 4 May 12th 07 11:46 AM
How to turn off instant search in Outlook 2007 Sjakie Apenhaar in KL Outlook - Installation 0 July 10th 06 10:41 AM
autocomplete list in outlook beta 2007 eddie koch Outlook - Using Contacts 1 June 20th 06 10:43 AM
Outlook 2003 - Turn Off 'Group by Date' in Mail Folders? Tony Outlook - General Queries 2 February 9th 06 07:49 PM


All times are GMT +1. The time now is 08:58 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.