Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default Turn off AutoCorrect in Excel via VBA?

Can I turn off the AutoCorrect Options in Excel via VBA script?

Thanks,
Tom

--
Thanks,
Tom

Message posted via http://www.officekb.com

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 791
Default Turn off AutoCorrect in Excel via VBA?

sub turnoffacorr()
With Application.AutoCorrect
.TwoInitialCapitals = False
.CorrectSentenceCap = False
.CapitalizeNamesOfDays = False
.CorrectCapsLock = False
.ReplaceText = False
.DisplayAutoCorrectOptions = False
End With
Application.AutoCorrect.AutoExpandListRange = False


End sub

--
If this posting was helpful, please click on the Yes button.
Regards,

Michael Arch.




"TomK via OfficeKB.com" wrote:

Can I turn off the AutoCorrect Options in Excel via VBA script?

Thanks,
Tom

--
Thanks,
Tom

Message posted via http://www.officekb.com


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default Turn off AutoCorrect in Excel via VBA?

Thanks, Michael! I just stumbled over the right keywords in my searching to
find something close to that, except for the "Application.AutoCorrect.
AutoExpandListRange = False" line. What does that do?

Thanks,
Tom

--
Thanks,
Tom

Message posted via OfficeKB.com
http://www.officekb.com/Uwe/Forums.a...mming/200710/1

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Autocorrect on Excel 2003 Andy Excel Discussion (Misc queries) 0 September 16th 09 02:36 PM
turn off autocorrect in excel 2007 Chaz New Users to Excel 1 July 11th 09 09:53 PM
How do I turn off Autocorrect in Excel 2007 Turk[_2_] New Users to Excel 2 November 19th 08 12:02 AM
Excel AutoCorrect Formatting Rainaelan Excel Discussion (Misc queries) 3 March 15th 07 10:45 PM
AutoCorrect Error in (my?) Excel Lee Meadowcroft Excel Discussion (Misc queries) 2 August 16th 06 06:34 AM


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

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"