Adding a button for Linked Table Manager

  • Thread starter Thread starter JJ
  • Start date Start date
J

JJ

I am trying to add a command button to a form that will take the user to
Linked Table Manager. I tryed the DoCmd.DoMenuItem but I can't find the
right menu numbers and name. Anyone know what it is?
 
You could use
DoCmd.RunCommand acCmdLinkTableManager

But you could also use the sample code in the Solutions database, that will
refresh links.
 
Back
Top