C Craig Buchanan May 5, 2004 #1 Is there another way to work with a querydef's parameters than querydef!Param? Perhaps querydef("Param")? Thanks, Craig
Is there another way to work with a querydef's parameters than querydef!Param? Perhaps querydef("Param")? Thanks, Craig
N Neil May 5, 2004 #2 It would go something like: querydef.Parameters("Parameter Index/Name") HTH, Neil.
A Allen Browne May 5, 2004 #3 Try: QueryDef.Parameters("Param") Doubt you can omit the ".Parameters" bit, as I would expect Fields to be the default collection for a QueryDef.
Try: QueryDef.Parameters("Param") Doubt you can omit the ".Parameters" bit, as I would expect Fields to be the default collection for a QueryDef.