PC Review


Reply
Thread Tools Rate Thread

Could not find <back end database path> database's startup message

 
 
=?Utf-8?B?RG91Ymxl?=
Guest
Posts: n/a
 
      3rd Feb 2006
I enjoyed the code provided there:
http://www.mvps.org/access/tables/tbl0009.htm

but:

1)I don't know how to avoid the message that the database shows when starts
up and don't find the linked table!: Could not find <back end database path>

2) what's the best way to launch a Function when the database starts?
in my case the function is "fRefreshLinks()"


 
Reply With Quote
 
 
 
 
Alex Dybenko
Guest
Posts: n/a
 
      3rd Feb 2006
Autoexec - is a right one. if you call this function in Autoexec - then it
will relink tables before any form opened - so you get rid of "Could not
find <back end database path>" message

--
Alex Dybenko (MVP)
http://alexdyb.blogspot.com
http://www.PointLtd.com


"Double" <(E-Mail Removed)> wrote in message
news:6DA88199-8CF0-4971-914B-(E-Mail Removed)...
>I enjoyed the code provided there:
> http://www.mvps.org/access/tables/tbl0009.htm
>
> but:
>
> 1)I don't know how to avoid the message that the database shows when
> starts
> up and don't find the linked table!: Could not find <back end database
> path>
>
> 2) what's the best way to launch a Function when the database starts?
> in my case the function is "fRefreshLinks()"
>
>


 
Reply With Quote
 
=?Utf-8?B?TmVpbEdlbA==?=
Guest
Posts: n/a
 
      5th Jun 2007
Hi Alex,

I have been trying to run the code found at
http://www.mvps.org/access/tables/tbl0009.htm

I keep getting an error saying I haven't defined the type. I am assuming I
haven't got the appropriate object library or type library ticked. Do you
know which libraries are required to run this code?

Also, my issue is that on my computer a drive is mapped to my Q drive, some
other users have S drive, others have P etc etc. When I link a table is
obviously references the Q drive, I am struggling.......

If my locations don't change, and I just want the linked tables to point to
the actual server address, is this possible?

Thanks

Neil

"Alex Dybenko" wrote:

> Autoexec - is a right one. if you call this function in Autoexec - then it
> will relink tables before any form opened - so you get rid of "Could not
> find <back end database path>" message
>
> --
> Alex Dybenko (MVP)
> http://alexdyb.blogspot.com
> http://www.PointLtd.com
>
>
> "Double" <(E-Mail Removed)> wrote in message
> news:6DA88199-8CF0-4971-914B-(E-Mail Removed)...
> >I enjoyed the code provided there:
> > http://www.mvps.org/access/tables/tbl0009.htm
> >
> > but:
> >
> > 1)I don't know how to avoid the message that the database shows when
> > starts
> > up and don't find the linked table!: Could not find <back end database
> > path>
> >
> > 2) what's the best way to launch a Function when the database starts?
> > in my case the function is "fRefreshLinks()"
> >
> >

>
>

 
Reply With Quote
 
Alex Dybenko
Guest
Posts: n/a
 
      5th Jun 2007
Hi,
libraries - you need to make sure that you have a reference to DAO

mapped drives - you can use UNC name like \\MyServer\\MyShare\Folder\my.mdb

--
Best regards,
___________
Alex Dybenko (MVP)
http://alexdyb.blogspot.com
http://www.PointLtd.com

"NeilGel" <(E-Mail Removed)> wrote in message
news:7B1A3CD8-9B79-4C65-9DC8-(E-Mail Removed)...
> Hi Alex,
>
> I have been trying to run the code found at
> http://www.mvps.org/access/tables/tbl0009.htm
>
> I keep getting an error saying I haven't defined the type. I am assuming I
> haven't got the appropriate object library or type library ticked. Do you
> know which libraries are required to run this code?
>
> Also, my issue is that on my computer a drive is mapped to my Q drive,
> some
> other users have S drive, others have P etc etc. When I link a table is
> obviously references the Q drive, I am struggling.......
>
> If my locations don't change, and I just want the linked tables to point
> to
> the actual server address, is this possible?
>
> Thanks
>
> Neil
>
> "Alex Dybenko" wrote:
>
>> Autoexec - is a right one. if you call this function in Autoexec - then
>> it
>> will relink tables before any form opened - so you get rid of "Could not
>> find <back end database path>" message
>>
>> --
>> Alex Dybenko (MVP)
>> http://alexdyb.blogspot.com
>> http://www.PointLtd.com
>>
>>
>> "Double" <(E-Mail Removed)> wrote in message
>> news:6DA88199-8CF0-4971-914B-(E-Mail Removed)...
>> >I enjoyed the code provided there:
>> > http://www.mvps.org/access/tables/tbl0009.htm
>> >
>> > but:
>> >
>> > 1)I don't know how to avoid the message that the database shows when
>> > starts
>> > up and don't find the linked table!: Could not find <back end database
>> > path>
>> >
>> > 2) what's the best way to launch a Function when the database starts?
>> > in my case the function is "fRefreshLinks()"
>> >
>> >

>>
>>


 
Reply With Quote
 
John W. Vinson
Guest
Posts: n/a
 
      5th Jun 2007
On Mon, 4 Jun 2007 22:15:01 -0700, NeilGel <(E-Mail Removed)>
wrote:

>If my locations don't change, and I just want the linked tables to point to
>the actual server address, is this possible?


Just to add to Alex' suggestion - you can use the file location dialog that
the linked table manager will bring up; the trick is to navigate via Network
Neighborhood, not via the mapped drive names. This will store the UNC path in
the tables' connect strings, and other users with different mappings will be
able to connect without having to re-find the backend.

John W. Vinson [MVP]
 
Reply With Quote
 
=?Utf-8?B?TmVpbEdlbA==?=
Guest
Posts: n/a
 
      5th Jun 2007
Thanks John, tried your suggestion which worked perfectly.



"John W. Vinson" wrote:

> On Mon, 4 Jun 2007 22:15:01 -0700, NeilGel <(E-Mail Removed)>
> wrote:
>
> >If my locations don't change, and I just want the linked tables to point to
> >the actual server address, is this possible?

>
> Just to add to Alex' suggestion - you can use the file location dialog that
> the linked table manager will bring up; the trick is to navigate via Network
> Neighborhood, not via the mapped drive names. This will store the UNC path in
> the tables' connect strings, and other users with different mappings will be
> able to connect without having to re-find the backend.
>
> John W. Vinson [MVP]
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Display path of back end database Stonewall Microsoft Access Form Coding 1 7th Oct 2008 11:46 PM
RE: Could not find <back end database path> database's startup message =?Utf-8?B?RG91Ymxl?= Microsoft Access VBA Modules 0 3rd Feb 2006 11:43 AM
Splitting database - Back end loses directory path =?Utf-8?B?RGVubmlz?= Microsoft Access 4 2nd Feb 2006 03:34 PM
Re: Back End Database Path DubboPete Microsoft Access Form Coding 0 25th Aug 2005 08:17 AM
Changing Back End Database Path Joe Williams Microsoft Access VBA Modules 4 3rd Nov 2004 02:29 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:56 AM.