Page 1 of 1
How do I access variables for StiWebReport?
Posted: Thu Jul 19, 2007 12:46 pm
by Robert Suman
Hello,
I need access variables using reports for Web.I not know it.
Help-me please.
Robert Suman
:biggrin:
How do I access variables for StiWebReport?
Posted: Fri Jul 20, 2007 2:09 am
by Guest
If you want to have access to variables from StiWebReport you can use:
Code: Select all
StiWebViewer1.Report.Dictionary.Variables["NameOfVariable"].Value
Thank you.
How do I access variables for StiWebReport?
Posted: Fri Jul 20, 2007 2:26 am
by Guest
Also you may use following, for example:
Code: Select all
StiWebViewer1.Report["NameOfVariable"] = "AnythingValue"
Thank you