What are you trying to accomplish? If you want to link a table from an external database, you can use the RunCommand method of either the Application or DoCmd object. Then use the acLink constant to start the Link External Table Wizard.
Your statement would look similar to the following:
Code:
DoCmd.RunCommand acLink
Hope this helps.