InputParameters property?

  • Thread starter Thread starter Rajat
  • Start date Start date
R

Rajat

Hi,

I can't seem to find the "InputParameters" property on my
report's property sheet.

It shows up in the VBEditor, but where is it on the
property sheet?

Am I seeing fewer than all the properties?

Thanks!

Regards,
Rajat
 
Rajat said:
I can't seem to find the "InputParameters" property on my
report's property sheet.

It shows up in the VBEditor, but where is it on the
property sheet?

Am I seeing fewer than all the properties?

Rajat,

Your question is lacking enough context for me to deduce
what you need. I am unfamiliar with an InputParameters
property.

Perhaps, you mean the Parameters collection in the report's
Record Source query. From the query design grid, right
click in a blank area the top pane (where the tables are
displayed) and select Parameters from the pop up menu.
 
Try troubleshoot just a little (it works)
I just typed some code into the On Open event of a report:
Me.InputParameters = ""
I placed my cursor in InputParameters and pressed [F1] and found that they
are used for Stored Procedures in an Access Data Project (ADP). Is your
Access file an ADP or an MDB?
 
Duane said:
Try troubleshoot just a little (it works)
I just typed some code into the On Open event of a report:
Me.InputParameters = ""
I placed my cursor in InputParameters and pressed [F1] and found that they
are used for Stored Procedures in an Access Data Project (ADP). Is your
Access file an ADP or an MDB?

That's what I get for re;ying on my memory.

Good answer Duane.
 
You've jarred my memory more than once.

--
Duane Hookom
MS Access MVP


Marshall Barton said:
Duane said:
Try troubleshoot just a little (it works)
I just typed some code into the On Open event of a report:
Me.InputParameters = ""
I placed my cursor in InputParameters and pressed [F1] and found that they
are used for Stored Procedures in an Access Data Project (ADP). Is your
Access file an ADP or an MDB?

That's what I get for re;ying on my memory.

Good answer Duane.
 
Back
Top