473,394 Members | 1,709 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

A97 - I cannot prevent Access from changing (c) to a copyright symbol when typing into a memo field

MLH
I'm trying to type

(a), (b) or (c)

into an Access 97 memo field.
Access keeps turning it into a copyright symbol ( © )
How can I override that? I don't want a copyright symbol.
Nov 13 '05 #1
3 3231
Change it in AutoCorrect or turn AutoCorrect off.

Nov 13 '05 #2
MLH
Thx pietlinden.

I always seem to forget about that.

Nov 13 '05 #3
MLH <CR**@NorthState.net> wrote in
news:pn********************************@4ax.com:
I always seem to forget about that.


Well, it was bloody stupid of Microsoft to enable AutoCorrect by
default in all fields in a frigging *DATABASE* application.

Data validation is everything in a data base, and having a component
that is contollable from many different applications other than
Access and that the developer has no control over means that there's
a validation step going on that a developer has no control over.

To that end, I use the code at the end of my signature to turn off
AutoCorrect in all fields in all forms in an MDB.

This is an example of bloody idiocy on Microsoft's part, where
fidelity to the Office product line's normal featureset is in
contradiction to the basic purpose of the Access.

--
David W. Fenton http://www.bway.net/~dfenton
dfenton at bway dot net http://www.bway.net/~dfassoc

Public Sub GetRidOfAutoCorrect()
' Turns off AutoCorrect for all text boxes and
' combo boxes on all forms in an MDB
Dim cnt As Container
Dim doc As Document
Dim strForm As String
Dim frm As Form
Dim ctl As Control

For Each cnt In CurrentDb.Containers
If cnt.name = "Forms" Then
For Each doc In cnt.Documents
strForm = doc.name
DoCmd.OpenForm strForm, acDesign
For Each ctl In Forms(strForm).Controls
If ctl.ControlType = acTextBox _
Or ctl.ControlType = acComboBox Then
ctl.AllowAutoCorrect = False
End If
Next ctl
DoCmd.Close acForm, strForm, acSaveYes
Next doc
End If
Next cnt

Set cnt = Nothing
Set doc = Nothing
Set ctl = Nothing
End Sub
Nov 13 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
by: baustin75 | last post by:
Posted: Mon Oct 03, 2005 1:41 pm Post subject: cannot mail() in ie only when debugging in php designer 2005 -------------------------------------------------------------------------------- ...
3
by: Bugga Bugga | last post by:
The letter or symbol " ì " appears in the memo field of my Access database. I tried to use search and replace to delete it, but even though I can see it the search and replace feature can not...
4
by: intl04 | last post by:
I have a memo field that is included in some Access reports I created. Is there some way for the memo field to display nicely formatted text, with line breaks between paragraphs? Or is it necessary...
32
by: deko | last post by:
I have a popup form with a textbox that is bound to a memo field. I've been warned about memo fields so I'm wondering if I should use this code. Is there any risk with changing the form's...
9
by: RMC | last post by:
Hello, I'm looking for a way to parse/format a memo field within a report. The Access 2000 database (application) has an equipment table that holds a memo field. Within the report, the memo...
13
by: Owen Jenkins | last post by:
Following on from an earlier post... I can reliably corrupt a record by doing the following ... Open two separate but identical front ends on one PC each linking to the same back end. Edit a...
2
by: steph | last post by:
I have a table with 250 fields. Of course you are wondering why 250 fields... what could I possibly be storing in so many fields? I am using this table as a general import table for files that...
1
by: jollyroger | last post by:
I have searched the web forums, and can't seem to find an answer to this particular problem I have. In an excel sheet, cells in one column have formatted text in the "wrapped" cells. For many of...
2
by: Tintin | last post by:
In a report in Access (11.65566.8821 SP2) I receive what appears to be Chinese characters for one field only. I can't find the setting that made that happen, I'd like to return that field to...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.