FE/BE question

  • Thread starter Slez via AccessMonster.com
  • Start date
S

Slez via AccessMonster.com

I'd like to load a database on a laptop for demonstration purposes, but don't
really need it to be a FE/BE version. (I don't need current data.) Is there
a way to "rejoin" a split database?...Or do I just need to load a copy of
both ends?

Thanks!
Slez
 
G

Guest

Load a copy of both. Now the big problem happens when you don't have the same
drive mappings. In that case you can just go up to Tools, Database Utilities,
Linked Table Manager and relink the FE to the BE.

Another way is to create a virtual drive on your laptop to match a network
drive used for the BE. You can use the old DOS subst command.

Subst--Example

The following command creates a virtual drive Q for the path
C:\USER\BETTY\FORMS:

subst q: C:\user\betty\forms

Now, instead of typing the full path, you can reach this directory by typing
the letter of the virtual drive, followed by a colon, as in the following
example:
q:

If you are using long file names for the folders, use quotes.
subst q: "C:\My Databases"

To remove the virtual drive:
subst q: /d

You can also create more than one virtual drive at a time. I have two that I
load automatically on my home machine by putting the command lines in the
Autoexec.bat file.

Note: I haven't tried this with Windows Vista, but it does work up to XP.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top