QBE Grid

J

James Napolitano

Is there a way to place the QBE Grid on a form or open it
from a command button.
Thanks.
 
R

Rick Brandt

James Napolitano said:
Is there a way to place the QBE Grid on a form or open it
from a command button.
Thanks.

To create a new query...
DoCmd.RunCommand acCmdNewObjectQuery

To Open an existing query...
DoCmd.OpenQuery "QueryName",acViewDesign
 
J

James Napolitano

Thanks for the support!
-----Original Message-----


To create a new query...
DoCmd.RunCommand acCmdNewObjectQuery

To Open an existing query...
DoCmd.OpenQuery "QueryName",acViewDesign

--
I don't check the Email account attached
to this message. Send instead to...
RBrandt at Hunter dot com


.
 
Top