Run queries from VB

G

George Schneider

How would I run a make table query confirming all the yes dialog boxes using vb.
 
B

BP

docmd.setwarnings true 'Will let u see all the dialog box
DoCmd.OpenQuery RunQueryName, acViewNormal, acEdit
(RunQueryName is the name of the maketable query as
string)
 
Top