Linking databases

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Denis

    Linking databases

    I'm using access 2002. I have a switch board set up. How can I put a
    button on it to open a different database from the one that I am
    using. Is there some macro I can run.

    Thanks

  • Arvin Meyer

    #2
    Re: Linking databases

    You might put a command button (cmdLink) on the switchboard with the
    following code:

    Sub cmdLink_Click()
    DoCmd.RunComman d acCmdLinkedTabl eManager
    End Sub
    --
    Arvin Meyer, MCP, MVP
    Database Consulting, Business Computer Solutions in Orlando, FL MCP, MVP, Networking, Computers, consulting

    Microsoft Access FAQ Site. This website is designed to help Microsoft Access developers find answers to some common development issues. Plenty of code samples, wizards, tips, bug listing, and of course links. If you can't find the answers here, make sure you visit one of the several Access newsgroups. The site is managed by Dev Ashish.

    Database Consulting, MVP, consulting


    "Denis" <denisphelan@gm ail.comwrote in message
    news:1191783430 .054253.255500@ o80g2000hse.goo glegroups.com.. .
    I'm using access 2002. I have a switch board set up. How can I put a
    button on it to open a different database from the one that I am
    using. Is there some macro I can run.
    >
    Thanks
    >

    Comment

    Working...