Valuable members of this board,
does tabledef’s Connect property always return a 8-char-abbreviated path (but the file name in full)? How do you get a full path? For example…
For this backend path:
…so_ClusterDatabankenWater_SubsLongBackendName.mdb
the connect property yields:
…SO~B1WY7WA~B21S5LongBackendName.mdb
I tried a couple of different approaches, got for a short while some wacko results which fortunately disappeared but still, with my Access 97 ‘stabilised’ again, I can’t get it right. Some searches didn’t provide any solution & I can’t motivate myself to further examine that flood of threads, FAQ’s & articles about using VBA to retrieve a linked table’s source file, as this is so specific…
![]() |
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 |
-
TableDef.Connect retuns no full path (97)
Home » Forums » AskWoody support » Productivity software by function » MS Access and database help » TableDef.Connect retuns no full path (97)
- This topic has 12 replies, 2 voices, and was last updated 20 years, 6 months ago.
AuthorTopicWShasse
AskWoody LoungerNovember 24, 2004 at 1:28 pm #412671Viewing 1 reply threadAuthorReplies-
WSHansV
AskWoody LoungerNovember 24, 2004 at 1:44 pm #904490I don’t remember how it was in Access 97, and whether it depends on the Operating System. In Access 2002 on Windows XP, the Connect property stores the long path and file name.
You can use the GetFullPathName API function to retrieve the long path name belonging to a short one.
-
WShasse
AskWoody LoungerNovember 24, 2004 at 7:45 pm #904686(Edited by hasse on 24-Nov-04 20:45. Applied code formatting to Code line)
Hans,
I guess it’s the Office version (97) and not the Operating System (NT), and that ‘back then’ the Connect property stored no full path yet: on the same site you refer to, I bumped in PromptFileName(), another API-function which yields the actual file’s full path using from the Open File Dialog (no add-ins or whatever needed – might be a good start for a workaround, if ever…). I assigned the resulting ‘fresh’ full path to the Connect property, retrieved the property’s value immediately afterwards and… found the full path ‘lost’ again:Public Sub test() MsgBox "Original MyTable.Connect = " & GetLinkedDBName("MyTable") '=> abbreviated path CurrentDb.TableDefs("MyTable").Connect = PromptFileName() '=> Function includes added Msgbox yielding full path MsgBox "New MyTable.Connect = " & GetLinkedDBName("MyTable") 'abbreviated path (again) End Sub
(Or am I misinterpreting this?)
Also using your suggestion, I get the same result: no full path. I might have made a mistake though, as I’m no ‘educated’ programmer (not speaking of API). So… did I do it correctly like this…?
I created a new function (GetFullLinkedDBName) in which I ‘feed’ the path string yielded by the original function (GetLinkedDBName) as a variable to the API-function (GetFullPathName):GetFullLinkedDBName = GetFullPathName(GetLinkedDBName(TableName), 255, Buffer, "")
Attachment: complete code used, with ‘test’ function for try-out (replacing “MyTable” with…)
If my code is OK, the problem remains unsolved (but is was certainly a nice try, so still). Then, I will ask no further, as I have to put this aside for higher priorities… This swallowed too much of my time already.
But if not, please let me know the correct application of the function – then I’ll give it a last try. -
WSHansV
AskWoody LoungerNovember 24, 2004 at 7:30 pm #904696If Access 97 stores a “short path” in the Connect property, no API function is going to change that – even if you feed it a “full path”, Access will convert it to a “short path”. I meant that if you ever needed to reconstruct the “full path” from the abbreviated version, you could use an API function.
-
WShasse
AskWoody LoungerNovember 24, 2004 at 8:02 pm #904730Sorry for not making myself clear…
Hans, I think I got your point, even though I needed that other API-function to make me realise this.Actually, my question was: why does this API-function fail in my code? As I can’t find what might have escaped me… (cf. previous post): the custom GetLinkedDBName function yields the “short path” from the Connect property value. This value is passed to the GetFullPathName API-function, which should reconstruct the “full path” from that “short path”. But… it doesnt
.
-
WSHansV
AskWoody LoungerNovember 24, 2004 at 8:16 pm #904752I’m sorry, I hadn’t actually tested it myself
You will find a working function fGetLongName (I tested it this time) in API: Get Short and Long file names on the Access Web.
-
WShasse
AskWoody Lounger -
WShasse
AskWoody Lounger -
WSHansV
AskWoody LoungerNovember 24, 2004 at 8:16 pm #904753I’m sorry, I hadn’t actually tested it myself
You will find a working function fGetLongName (I tested it this time) in API: Get Short and Long file names on the Access Web.
-
-
WShasse
AskWoody LoungerNovember 24, 2004 at 8:02 pm #904731Sorry for not making myself clear…
Hans, I think I got your point, even though I needed that other API-function to make me realise this.Actually, my question was: why does this API-function fail in my code? As I can’t find what might have escaped me… (cf. previous post): the custom GetLinkedDBName function yields the “short path” from the Connect property value. This value is passed to the GetFullPathName API-function, which should reconstruct the “full path” from that “short path”. But… it doesnt
.
-
-
WSHansV
AskWoody LoungerNovember 24, 2004 at 7:30 pm #904697If Access 97 stores a “short path” in the Connect property, no API function is going to change that – even if you feed it a “full path”, Access will convert it to a “short path”. I meant that if you ever needed to reconstruct the “full path” from the abbreviated version, you could use an API function.
-
-
WShasse
AskWoody LoungerNovember 24, 2004 at 7:45 pm #904687(Edited by hasse on 24-Nov-04 20:45. Applied code formatting to Code line)
Hans,
I guess it’s the Office version (97) and not the Operating System (NT), and that ‘back then’ the Connect property stored no full path yet: on the same site you refer to, I bumped in PromptFileName(), another API-function which yields the actual file’s full path using from the Open File Dialog (no add-ins or whatever needed – might be a good start for a workaround, if ever…). I assigned the resulting ‘fresh’ full path to the Connect property, retrieved the property’s value immediately afterwards and… found the full path ‘lost’ again:Public Sub test() MsgBox "Original MyTable.Connect = " & GetLinkedDBName("MyTable") '=> abbreviated path CurrentDb.TableDefs("MyTable").Connect = PromptFileName() '=> Function includes added Msgbox yielding full path MsgBox "New MyTable.Connect = " & GetLinkedDBName("MyTable") 'abbreviated path (again) End Sub
(Or am I misinterpreting this?)
Also using your suggestion, I get the same result: no full path. I might have made a mistake though, as I’m no ‘educated’ programmer (not speaking of API). So… did I do it correctly like this…?
I created a new function (GetFullLinkedDBName) in which I ‘feed’ the path string yielded by the original function (GetLinkedDBName) as a variable to the API-function (GetFullPathName):GetFullLinkedDBName = GetFullPathName(GetLinkedDBName(TableName), 255, Buffer, "")
Attachment: complete code used, with ‘test’ function for try-out (replacing “MyTable” with…)
If my code is OK, the problem remains unsolved (but is was certainly a nice try, so still). Then, I will ask no further, as I have to put this aside for higher priorities… This swallowed too much of my time already.
But if not, please let me know the correct application of the function – then I’ll give it a last try.
-
-
WSHansV
AskWoody LoungerNovember 24, 2004 at 1:44 pm #904491I don’t remember how it was in Access 97, and whether it depends on the Operating System. In Access 2002 on Windows XP, the Connect property stores the long path and file name.
You can use the GetFullPathName API function to retrieve the long path name belonging to a short one.
Viewing 1 reply thread -

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
-
Fixing Windows 24H2 failed KB5058411 install
by
Alex5723
2 hours, 21 minutes ago -
Out of band for Windows 10
by
Susan Bradley
3 hours, 54 minutes ago -
Giving UniGetUi a test run.
by
RetiredGeek
10 hours, 52 minutes ago -
Windows 11 Insider Preview Build 26100.4188 (24H2) released to Release Preview
by
joep517
18 hours, 29 minutes ago -
Microsoft is now putting quantum encryption in Windows builds
by
Alex5723
16 hours, 27 minutes ago -
Auto Time Zone Adjustment
by
wadeer
22 hours, 58 minutes ago -
To download Win 11 Pro 23H2 ISO.
by
Eddieloh
20 hours, 38 minutes ago -
Manage your browsing experience with Edge
by
Mary Branscombe
1 hour, 13 minutes ago -
Fewer vulnerabilities, larger updates
by
Susan Bradley
12 hours, 9 minutes ago -
Hobbies — There’s free software for that!
by
Deanna McElveen
16 hours, 27 minutes ago -
Apps included with macOS
by
Will Fastie
16 hours, 4 minutes ago -
Xfinity home internet
by
MrJimPhelps
15 hours, 59 minutes ago -
Convert PowerPoint presentation to Impress
by
RetiredGeek
15 hours, 57 minutes ago -
Debian 12.11 released
by
Alex5723
1 day, 20 hours ago -
Microsoft: Troubleshoot problems updating Windows
by
Alex5723
1 day, 23 hours ago -
Woman Files for Divorce After ChatGPT “Reads” Husband’s Coffee Cup
by
Alex5723
1 day, 3 hours ago -
Moving fwd, Win 11 Pro,, which is best? Lenovo refurb
by
Deo
19 hours, 39 minutes ago -
DBOS Advanced Network Analysis
by
Kathy Stevens
2 days, 16 hours ago -
Microsoft Edge Launching Automatically?
by
healeyinpa
2 days, 7 hours ago -
Google Chrome to block admin-level browser launches for better security
by
Alex5723
4 hours, 50 minutes ago -
iPhone SE2 Stolen Device Protection
by
Rick Corbett
2 days, 11 hours ago -
Some advice for managing my wireless internet gateway
by
LHiggins
1 day, 19 hours ago -
NO POWER IN KEYBOARD OR MOUSE
by
HE48AEEXX77WEN4Edbtm
21 hours, 9 minutes ago -
A CVE-MITRE-CISA-CNA Extravaganza
by
Nibbled To Death By Ducks
3 days, 4 hours ago -
Sometimes I wonder about these bots
by
Susan Bradley
16 hours, 59 minutes ago -
Does windows update component store “self heal”?
by
Mike Cross
2 days, 15 hours ago -
Windows 11 Insider Preview build 27858 released to Canary
by
joep517
3 days, 18 hours ago -
Pwn2Own Berlin 2025: Day One Results
by
Alex5723
2 days, 2 hours ago -
Windows 10 might repeatedly display the BitLocker recovery screen at startup
by
Susan Bradley
1 day, 15 hours ago -
Windows 11 Insider Preview Build 22631.5409 (23H2) released to Release Preview
by
joep517
3 days, 21 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.