G Guest Nov 22, 2004 #1 How would I create a button for link table manager? I know how to make the button, but what would the onclick code be?
How would I create a button for link table manager? I know how to make the button, but what would the onclick code be?
N Nick Coe \(UK\) Nov 22, 2004 #2 The way most people do it is: http://www.mvps.org/access/tables/tbl0009.htm If you want more detail on how to do this and write code then I suggest you get the appropriate version of the Access Developers Handbook by Getz, Litwin and Gilbert (and Mike Gunderloy as well). These books are worth every penny! http://www.developershandbook.com
The way most people do it is: http://www.mvps.org/access/tables/tbl0009.htm If you want more detail on how to do this and write code then I suggest you get the appropriate version of the Access Developers Handbook by Getz, Litwin and Gilbert (and Mike Gunderloy as well). These books are worth every penny! http://www.developershandbook.com
V Van T. Dinh Nov 22, 2004 #3 Nick advice is correct. However, if you simply want to bring up the Link Table Manager dialog, the code is: DoCmd.RunCommand acCmdLinkedTableManager
Nick advice is correct. However, if you simply want to bring up the Link Table Manager dialog, the code is: DoCmd.RunCommand acCmdLinkedTableManager
G Guest Nov 23, 2004 #4 Where do I put that code? I tried creating a module of it self but that did not work. I don't know of any other place to put code for the DB itself.
Where do I put that code? I tried creating a module of it self but that did not work. I don't know of any other place to put code for the DB itself.