-
WSSupport4John
AskWoody LoungerHi Brian
Thanks for response.
I tried following code:
addr_no_p: Space(9-Len([strLocStreetNo])) & [strLocStreetNo] & ” ”
Works fine except:
There are 6410 records in the append query.
I Get Error Message:
Insert set 785 field(s) to Null due to a type conversion error.
There are 785 blank strLocStreetNo fields
Is there a way to test and eliminate this error message?
Thanks, John Graves
-
WSSupport4John
AskWoody LoungerCould you point me to:
discussion on building public functions
-
WSSupport4John
AskWoody LoungerCan you do this in a2k
-
WSSupport4John
AskWoody LoungerHi Charlotte
Sorry you had to see that table. It is a transition table from a legacy to access database. Was able to drop 10 fields. It then exports OK, and can be maintained/saved in its new location.
Thanks for your help.
John Graves
-
WSSupport4John
AskWoody Lounger -
WSSupport4John
AskWoody LoungerHi Leif
Sorry!
You have the correct link.
John Graves
-
WSSupport4John
AskWoody Lounger -
WSSupport4John
AskWoody LoungerYou Said
As a newbie I was taught this and using it extensivily through my tables.
Do you remove table lookups after you build your forms with wizzard?
Or do you build your form combo boxs from scratch?
John Graves
-
WSSupport4John
AskWoody LoungerHi Mark
Your right, DAO 3.6 was not checked.
Your code worked perfectly.
Do you know of any front-end code that would allow the developer to open a unbound form combo box and display a user relationship table as follows:
tblRelationshipsBP
strTable
strOneFeild
strForeignTable
strManyFeild
ysnEnforceRefInt
ysnCascadeUpdate
ysnCascadeDelete
strJoinType 1, 2, or 3
ysnSetRelationship Include this relationship in the batch
(don’t know if I’m missing something)The developer would Ctrl Click all the relationship records that would be included in the batch.
The code would then perform all the relationships that were selected.
I’m not quite sure of the code required to cycle through the record selected and feed them to your CreateRelationship function.
Thanks, John Graves
NBS7335
-
WSSupport4John
AskWoody LoungerHi Mark
I get the following error when running CreateRelationship code. I’m very new to access & it’s probably somthing missing on my end.
Dim db As DAO.Database (Compile error – User-defined type not defined)
Thanks, John Graves
————————
‘ button on form
Private Sub Set_Relationships_Click()
On Error GoTo Err_Set_Relationships_ClickDim strTable As String, strOneField As String
Dim strForeignTable As String, strManyField As StringstrTable = “tblBPermit”
strOneField = “lngBPermitID”
strForeignTable = “tblBPFees”
strManyField = “ingBPermitID”Call CreateRelationship(strTable, strOneField, strForeignTable, strManyField)
DoCmd.CloseExit_Set_Relationships_Click:
Exit SubErr_Set_Relationships_Click:
MsgBox Err.Description
Resume Exit_Set_Relationships_ClickEnd Sub
————————-
‘ your code
Option Compare Database‘MarkJ replied to your post on the Access board at the Woody’s Lounge site:
‘Re: VBA CODE TO EST RELATIONSHIPS – NBS’.
‘http://www.wopr.com/cgi-bin/w3t/showthread…cc&Number=44019
‘Sorry for the delay. This should work for you:Function CreateRelationship(strTable As String, _
strOneField As String, _
strForeignTable As String, _
strManyField As String)‘=================================================
‘Created by Mark S. Johnston
‘MarkjSC@yahoo.com
‘ http://www.geocities.com/MarkjSC
‘
‘Adapted from MSDN Library article:
‘ http://msdn.microsoft.com/library/default.asp ? _
‘URL=/library/books/dnjet/c3_body_37.htm
‘=================================================Dim strRelationName As String
Dim db As DAO.Database
Dim rln As DAO.Relation
Dim fld As DAO.FieldSet db = CurrentDb()
‘Destroy any currently existing relationships between
‘the two tables
For Each rln In db.Relations
If rln.Table = strTable And rln.ForeignTable = strForeignTable Then
db.Relations.Delete rln.Name
End If
Next ‘rlnstrRelationName = strTable & “_” & strForeignTable
‘Create the Relationship
Set rln = db.CreateRelation(strRelationName)‘Set the properties of the Relationship
With rln
.Table = strTable
.ForeignTable = strForeignTable‘Relationship will be Cascade Update and Cascade Delete
.Attributes = dbRelationUpdateCascade + dbRelationDeleteCascade
End With‘Set the Field of the Relation object
Set fld = rln.CreateField(strOneField)
fld.ForeignName = strManyField‘Add the Field to the Relation object
rln.Fields.Append fld‘Add the Relation to the Databse
db.Relations.Append rln‘destroy the evidence ;^)
Set fld = Nothing
Set rln = Nothing
Set db = NothingEnd Function
‘Post back if there are any problems.
‘MarkJ – http://www.geocities.com/MarkjSC
‘http://www.wopr.com/w3tuserpics/MarkJ_sig.gif -
WSSupport4John
AskWoody LoungerInteresting
I Imported tblBPermit as you suggested, at just about completion of building indexes, received “The operation failed. There are too many indexes on table tblBPermit OK” message
I had to click OK 5 times to clear dialog box.
There are 8 legitimate indexes in the source tblBPermit table, after viewing destination tblBPermit table Indexes, it revealed 32 indexes (the max). It automatically created an index for any non-indexed field that has ID or Code in the field name.
Is there a way to turn off this feature? DUH, yes there is!
Tools, Options, Tables/Queries, AutoIndex on Import/Create (I cleared this)
This (index creation) was happening on 42 other tables.
Needless to say my performance is better, and my database when from 53 MB to 39 MB
After all this, including Detect & Repair, I get the same “PROPERTY VALUE IS TOO LARGE” MESSAGE – Error 3309 as described above.
I did notice when I get “Property Value is too Large OK” message. I Click OK
I get “Errors encountered during the save operation OK” message. I Click OK, exit Design View again, say No to Save Change message, go back into design view and my changes are there.
What next?
PS: I attached tbpBPermit for your review.
-
WSSupport4John
AskWoody LoungerHi Charlotte
When I open Build_BE.mdb tblBPermit in Design View, make change (just press the space bar) in Description field (property), and save I get “Property Value is too Large” message.
When I go back and open BuildCvt.mdb tblBPermit in Design View, make change to Description field or add additional fields, and save, it saves OK
John Graves
-
WSSupport4John
AskWoody LoungerThanks, the link worked.
John Graves
-
WSSupport4John
AskWoody LoungerHow about
Private Sub Command11_Click()
Me.Filter = “”
End Sub
John Graves
-
WSSupport4John
AskWoody LoungerHi Charlotte
Thanks for all the access refreence info, still can’t find orders9.mdb as described in Q248674, says site cannot be found/loaded.
Just subscribed to Access-VB-SQL Advisor.
Is there another site I can find and download orders9.mdb?
John Graves
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
ATT/Yahoo Secure Mail Key
by
Lil88reb
3 hours, 16 minutes ago -
Devices with apps using sprotect.sys driver might stop responding
by
Alex5723
7 hours, 38 minutes ago -
Neowin – 20 times computers embarrassed themselves with public BSODs and goofups
by
EP
16 hours, 13 minutes ago -
Slow Down in Windows 10 performance after March 2025 updates ??
by
arbrich
1 hour, 39 minutes ago -
Mail from certain domains not delivered to my outlook.com address
by
pumphouse
36 minutes ago -
Is data that is in OneDrive also taking up space on my computer?
by
WShollis1818
11 hours, 16 minutes ago -
Nvidia just fixed an AMD Linux bug
by
Alex5723
2 days, 2 hours ago -
50 years and counting
by
Susan Bradley
38 minutes ago -
Fix Bluetooth Device Failed to Delete in Windows Settings
by
Drcard:))
1 day, 9 hours ago -
Licensing and pricing updates for on-premises server products coming July 2025
by
Alex5723
2 days, 14 hours ago -
Edge : Deprecating window.external.getHostEnvironmentValue()
by
Alex5723
2 days, 14 hours ago -
Rethinking Extension Data Consent: Clarity, Consistency, and Control
by
Alex5723
2 days, 14 hours ago -
OneNote and MS Word 365
by
CWBillow
2 days, 15 hours ago -
Ultimate Mac Buyers Guide 2025: Which Mac is Right For You?
by
Alex5723
2 days, 16 hours ago -
Intel Unison support ends on Windows 11 in June
by
Alex5723
2 days, 16 hours ago -
April 2025 — still issues with AMD + 24H2
by
Kevin Jones
7 hours, 46 minutes ago -
Windows 11 Insider Preview build 26200.5518 released to DEV
by
joep517
3 days, 4 hours ago -
Windows 11 Insider Preview build 26120.3671 (24H2) released to BETA
by
joep517
3 days, 4 hours ago -
Forcing(or trying to) save Local Documents to OneDrive
by
PateWilliam
3 days, 12 hours ago -
Hotpatch for Windows client now available (Enterprise)
by
Alex5723
3 days ago -
MS-DEFCON 2: Seven months and counting
by
Susan Bradley
2 days, 1 hour ago -
My 3 monitors go black & then the Taskbar is moved to center monitor
by
saturn2233
3 days, 21 hours ago -
Apple backports fixes
by
Susan Bradley
3 days, 4 hours ago -
Win 11 24H2 will not install
by
Michael1950
2 days, 2 hours ago -
Advice to convert MBR to GPT and install Windows 11 Pro on unsupported PC
by
Andy M
19 hours, 50 minutes ago -
Photos from iPhone to Win 10 duplicating/reformatting to .mov
by
J9438
2 days, 10 hours ago -
Thunderbird in trouble. Here comes Thundermail
by
Alex5723
22 hours, 19 minutes ago -
Get back ” Open With” in context menus
by
CWBillow
4 days, 12 hours ago -
Many AMD Ryzen 9800X3D on ASRock have died
by
Alex5723
3 days, 4 hours ago -
simple general stupid question
by
WSaltamirano
4 days, 10 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.