Command button

dbfox

New member
Local time
Today, 19:33
Joined
Apr 3, 2006
Messages
5
Hi I can't seem to be able to find any option to open a table from the command button wizard how is this possible. Thanks
 
Thats because you can't open a table from the command button.

You open a form to access the table.

Col
 
To open table in run time
DoCmd.OpenTable "Labels",acViewNormal
or
To open table in design time
DoCmd.OpenTable "Labels",acViewDesign
 

Users who are viewing this thread

Back
Top Bottom