docmd open query

S

smason

Hello all

any ideas why this doesnt work!
DoCmd.OpenQuery("qrydatein",acViewNormal,[acEdit])

i am trying to opena query(datein) using a button in a form!
 
S

smason

excellent thanks

RonaldoOneNil said:
Remove the parentheses
DoCmd.OpenQuery "qrydatein", acViewNormal, acEdit

smason said:
Hello all

any ideas why this doesnt work!
DoCmd.OpenQuery("qrydatein",acViewNormal,[acEdit])

i am trying to opena query(datein) using a button in a form!
 
Top