DAO querydef parameters

  • Thread starter Thread starter Craig Buchanan
  • Start date Start date
C

Craig Buchanan

Is there another way to work with a querydef's parameters than
querydef!Param? Perhaps querydef("Param")?

Thanks,

Craig
 
Try:
QueryDef.Parameters("Param")

Doubt you can omit the ".Parameters" bit, as I would expect Fields to be the
default collection for a QueryDef.
 
Back
Top