> Hi Allen,
>
> I added this code to my Access database but it does not seem to work. Even
> if I just use this code
> db.Properties("Perform Name AutoCorrect") = False
> db.Properties("Track Name AutoCorrect Info") = False
>
> When I go to a text box and typw something like this OSI-LB10-NWE the
> AutoCorrect still changes it to OSI-LB10-NEW
>
> I want to disable the Replace text as you type.
>
> Any suggestions?
>
> Thanks Again,
> Lou
>
> "Allen Browne" <AllenBrowne[ at ]SeeSig.Invalid> wrote in message
> news:eiH34T$rGHA.2124[ at ]TK2MSFTNGP03.phx.gbl...
>> Something like this:
>> Dim db As DAO.Database
>> Set db = CurrentDb()
>> If db.Properties("Perform Name AutoCorrect") Then
>> db.Properties("Perform Name AutoCorrect") = False
>> End If
>> If db.Properties("Track Name AutoCorrect Info") Then
>> db.Properties("Track Name AutoCorrect Info") = False
>> End If
>> Set db = Nothing
>>
>> --
>> Allen Browne - Microsoft MVP. Perth, Western Australia.
>> Tips for Access users -
http://allenbrowne.com/tips.html>> Reply to group, rather than allenbrowne at mvps dot org.
>>
>> "Lou Civitella" <lou[ at ]webersystems.com> wrote in message
>> news:erAKXP$rGHA.1796[ at ]TK2MSFTNGP03.phx.gbl...
>>> How can I programmactically turn off the autocorrect feature?
>>
>>
>
>