473,508 Members | 2,457 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Is Name Autocorrect fixed in Access 2003?

Just got my copy of Access 2003. Is the 'Name Autocorrect' feature in
Access 2003 fixed yet, or is it still 'Name Autocorrupt', as many in
this newsgroup reported in the past.

I would like to finally clean up poor field names I put in my
application in 1994 (when I was young and foolish). For example, I used
"Date" as a name in eight different tables. I need to fix this. The
"Autocorrect" feature sounds like it is designed to make global changes
based on dependencies and relationships... That is just what I need.
The tangled web I need to fix feels too complex for a simple search and
replace engine (Speed Ferret found 450 uses of the field "Date" in my
queries alone.) I would like to make the changes globally, but limit
them using dependencies.

Is it worthwhile to try this - or is Autocorrect still terrible...

Thanks in advanve for you advice

Nov 13 '05 #1
4 2337
Although MS fixed a couple of the issues, Name AutoCorrect is still a very
good way to corrupt your database in A2003.

The feature does not perform the rename anyway, so it can't do what you ask.
There is a new feature in A2003 which traces dependencies. I tried that once
in a database where we knew the queries referred to tables that no longer
existed, hoping to trace the broken dependencies, so we tried some code that
used DependencyObjects, DependencyInfo etc. However, we never did manage to
get the code to run to completion. A2003 constantly crashed (shut down by
Windows), so we eventually gave up on this approach as unworkable.

--
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.

"Jim M" <ma*****@rci.rutgers.edu> wrote in message
news:11*********************@g44g2000cwa.googlegro ups.com...
Just got my copy of Access 2003. Is the 'Name Autocorrect' feature in
Access 2003 fixed yet, or is it still 'Name Autocorrupt', as many in
this newsgroup reported in the past.

I would like to finally clean up poor field names I put in my
application in 1994 (when I was young and foolish). For example, I used
"Date" as a name in eight different tables. I need to fix this. The
"Autocorrect" feature sounds like it is designed to make global changes
based on dependencies and relationships... That is just what I need.
The tangled web I need to fix feels too complex for a simple search and
replace engine (Speed Ferret found 450 uses of the field "Date" in my
queries alone.) I would like to make the changes globally, but limit
them using dependencies.

Is it worthwhile to try this - or is Autocorrect still terrible...

Thanks in advanve for you advice

Nov 13 '05 #2
Thanks muchly for the warning. I read the MS literature, and was ready
to give it a try. It mostly listed limitations of Autocorrect in 2003:
I.e It won't work for Microsoft Access projects, replicated databases;
Pass-through, data-definition, and union queries; Data access pages,
macros, and modules, or objects from linked tables. It does not warn
about data corruption... If you won't use it, then I won't dare to try.

I thought I could use to to cut down on some of my 450 uses of 'Date'
in my queries, and then run Speed Ferret on the rest. Speed Ferret does
not pay attention to dependencies, only names and properties. Are there
any other third party or shareware/freeware products that traces and
renames dependencies?

By the way, I have found the code samples and examples from your web
site tremendously helpful over the years - I appreciate you taking the
time to help the rest of us, especially people like myself who have a
lot to learn.

Regards,
Jim Mandala

Nov 13 '05 #3
Perhaps someone else can suggest other dependency tracers.
I've not had occassion to test them.

It may be possible to trace some of these dependencies yourself.
For example, this query shows which queries depend on other queries:
SELECT MSysObjects.Name FROM MSysQueries INNER JOIN
MSysObjects ON MSysQueries.ObjectId = MSysObjects.Id
WHERE MSysQueries.Expression Like "*" & [qryName] & "*"
GROUP BY MSysObjects.Name;

--
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.

"Jim M" <ma*****@rci.rutgers.edu> wrote in message
news:11*********************@g49g2000cwa.googlegro ups.com...
Thanks muchly for the warning. I read the MS literature, and was ready
to give it a try. It mostly listed limitations of Autocorrect in 2003:
I.e It won't work for Microsoft Access projects, replicated databases;
Pass-through, data-definition, and union queries; Data access pages,
macros, and modules, or objects from linked tables. It does not warn
about data corruption... If you won't use it, then I won't dare to try.

I thought I could use to to cut down on some of my 450 uses of 'Date'
in my queries, and then run Speed Ferret on the rest. Speed Ferret does
not pay attention to dependencies, only names and properties. Are there
any other third party or shareware/freeware products that traces and
renames dependencies?

By the way, I have found the code samples and examples from your web
site tremendously helpful over the years - I appreciate you taking the
time to help the rest of us, especially people like myself who have a
lot to learn.

Regards,
Jim Mandala

Nov 13 '05 #4
This code traces dependencies of any string search in a query, and
prints them out nicely for you in a tree. I haven't gotten around to
writing the replace version of it, mainly because I usually find I like
to watch. It's not much of a leap, though, from find to replace, as
the little ReplaceMe bit should show you.

*** CODE START ***
Public Function uFindStringInAllQries(pstrFind As String, _
Optional pblePrintToScreenNow As Boolean =
True, _
Optional pbleRecurse As Boolean = True, _
Optional pbytRecursionLevel As Byte = 0)
As String
On Error GoTo HandleErrors

Dim db As DAO.Database
Dim qdf As DAO.QueryDef

Dim i As Integer
Dim strSQL As String
Dim strFound As String
Dim strDebug As String

Dim bleForQry As Boolean

Const DBL_QT As String = """"

Set db = CurrentDb
db.QueryDefs.Refresh

If pbleRecurse = True And pbytRecursionLevel = 0 Then
If Right(pstrFind, 1) = "." Then
bleForQry = IsQuery(ReplaceMe(pstrFind, ".", ""))
Else
bleForQry = IsQuery(pstrFind)
End If
End If
If bleForQry Then pbytRecursionLevel = 1

For Each qdf In db.QueryDefs
If pstrFind <> qdf.Name Then
strSQL = qdf.SQL
strSQL = ReplaceMe(strSQL, "[", "")
strSQL = ReplaceMe(strSQL, "]", "")

i = InStr(1, strSQL, pstrFind, vbTextCompare)
If i > 0 Then
strFound = strFound & vbNewLine & Space(4 *
pbytRecursionLevel) & qdf.Name
If pbleRecurse = True Then
strFound = strFound & vbNewLine & strFound &
uFindStringInAllQries(pstrFind:=qdf.Name & ".", pbleRecurse:=True,
pbytRecursionLevel:=pbytRecursionLevel + 1)
End If
End If
End If
Next qdf

If pblePrintToScreenNow = True And (pbytRecursionLevel = 0 Or
bleForQry = True) Then
If Len(strFound) > 0 Then
strDebug = "The following queries contain the test value "
& DBL_QT & pstrFind & DBL_QT & "." & vbNewLine & strFound
Else
strDebug = DBL_QT & pstrFind & DBL_QT & " not found in this
file's queries."
End If

Debug.Print strDebug
End If

If bleForQry = True And Len(strFound) > 0 Then strFound = pstrFind
& vbNewLine & strFound

uFindStringInAllQries = strFound

ExitHere:
Set qdf = Nothing
Set db = Nothing
Exit Function

HandleErrors:
'etc.
Resume ExitHere

End Function

Public Function ReplaceMe(ByVal varValue As Variant, _
strFind As String, _
strReplace As String) As Variant

Dim intLenFind As Integer
Dim intLenReplace As Integer
Dim intPos As Integer

If IsNull(varValue) Then
ReplaceMe = Null
Else
intLenFind = Len(strFind)
intLenReplace = Len(strReplace)

If Len(strFind) > 0 Then
intPos = 1
Do
intPos = InStr(intPos, varValue, strFind)
If intPos > 0 Then
varValue = Left(varValue, intPos - 1) & strReplace
& Mid(varValue, intPos + intLenFind)
intPos = intPos + intLenReplace
End If
Loop Until intPos = 0
End If
End If

ReplaceMe = varValue
End Function

Public Function IsQuery(pstrQryNmOrSQL As String) As Boolean
On Error Resume Next

Dim qdf As DAO.QueryDef

Set qdf = CurrentDb.QueryDefs(pstrQryNmOrSQL)
IsQuery = (Err = 0)

ExitHere:
Set qdf = Nothing
Exit Function

End Function
*** CODE END ***

Nov 13 '05 #5

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

Similar topics

9
1409
by: MLH | last post by:
Microsoft Office Professional Edition 2003 - Retail I've seen the above product advertised for $380. Are there enough developers world wide to make microsoft the following offer... If they...
3
2973
by: Regnab | last post by:
I'm not sure if this is some random bug in the system, but I keep getting the #Name? error on one of my forms when I try to link one field to another. For example, I have one field called...
4
2264
by: sara | last post by:
I have an A2K database that has links to 3 of my other databases (external links) to run some reports. The coding in any of the 4 is pretty simple. Recently when we make a new .mde for the...
2
2471
by: Spawn666948 | last post by:
Hey, do you guys know how to set the Name Autocorrect to unchecked by default. Name Autocorrect is more trouble than its worth. I know I can go to Tools/General, but, I'd rather have it unchecked...
1
9904
by: ApexData | last post by:
WatchOut for "Allow AutoCorrect" in your unbound combobox lookups. I am building a personnel database, and the last name of Ballance was causing the following message to popup, prohibiting me from...
7
2761
by: Mary | last post by:
I have a student who has a hyphenated first name. If I concatenate the name like this: StudentName:( & ", " & ), it works as expected. If, however, I try to get the first name first by...
15
6469
BradHodge
by: BradHodge | last post by:
I am being stricken with the A2K Name AutoCorrect bug with regards to reports changing margins and orientation. I understand that you can turn this feature off when creating objects, but I am...
0
1202
by: =?Utf-8?B?TG92ZSBCdXp6?= | last post by:
Good day all. I am trying to set up MS Access to replace data in a cell using the AutoCorrect feature in Access. However, when I import a text file (.csv), it doesn't replace the cell as I have...
6
6754
by: nagar | last post by:
I need to get the list of Autocorrect entries in word. Is there a way to do it without connecting to Word? Is the list saved somewhere? If I need to connect to Word, how can I detect if it's...
0
7323
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7379
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
7493
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...
0
5625
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
5049
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
3192
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
3180
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1550
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
0
415
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

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.