Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Setting Report Properties

Status
Not open for further replies.

csirman

Programmer
Oct 8, 2001
15
0
0
US
I have an app written in ASP on WinServer2003 SBS and CR10.

I have been able to successfully change some of the report object's properties via my ASP code, but not others. For example:

This does NOT Work:
session("oRpt").SQLQueryString = SQLString

This DOES work: (Meaning I read but not write the property)
response.write session("oRpt").SQLQueryString
response.end

This ALSO Works:
session("oRpt").RecordSelectionFormula = " {command.n_rule_key} <= 9"

Any idea why I can change some properties and not others?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top