Page 1 of 1

Resestting Variables

Posted: Fri May 18, 2007 6:28 am
by EDV Gradl
Is there a way to reset all variables in a report to their default value ??

Thanks!

Resestting Variables

Posted: Sat May 19, 2007 2:57 am
by Vital
You can use following code:

Code: Select all

foreach (StiVariable variable in report.Dictionary.Variables)
{
variable.Value = "";
}
Thank you.