linked table manager

  • Thread starter arista via AccessMonster.com
  • Start date
A

arista via AccessMonster.com

Is there some easy way how to open a Linked Table Manager from the running
application ? I restricted menu which also contains "Tools -> Database
Utilities -> Linked Table Manager". It would be nice to open Linked Table
Manager by click on some button. Is there something like : DoCmd.Open
LinkedTableManager ?
 
A

arista via AccessMonster.com

Hi
we are using Access 2003 and we have not found problems with Linked Table
Manager. So I would like to use it. Is there some option how to run the menu
command from the VBA code ?
Thanks
 
A

arista via AccessMonster.com

OK, I found it - it is the command:

DoCmd.RunCommand acCmdLinkedTableManager
 
D

Douglas J. Steele

Try

DoCmd.RunCommand acCmdLinkedTableManager

(introduced in Access 2002)

I still think you're far better off having your own code, rather than
relying on the LTM, but it's your application.
 

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