InputParameters property??

  • Thread starter Thread starter D. McDonough
  • Start date Start date
D

D. McDonough

How is the InputParameters property read using VB?

(I have a report that requires inputs before it's run. I
need to know what those values are to do other things in
my Report_Activate code, but I don't know how. I've tried:

tempString = me.InputParameters

and many other things. Can someone help?)

Thank you!
 
Forms have OpenArgs.

Reports do not have any corresponding thing :-(

You will have to pass your parameters in global variables, a table record,
or somesuch.

HTH,
TC
 
TC said:
Forms have OpenArgs.

Reports do not have any corresponding thing :-(

You will have to pass your parameters in global variables, a table
record, or somesuch.

I'll amend that: in Access 2002 or later, reports do have an OpenArgs
property. But for earlier versions, TC is correct.
 
Back
Top