This example shows how to use the Report Variables in code. It is necessary to define variables in the report, then the values can be set through code using the variable name. You read more about variables in our
documentation.
First, load the report with variables:
private void button1_Click(object sender, EventArgs e)
{
var report = new StiReport();
report.Load(@"Reports\Variables.mrt");
// Required to prepare the in compilation mode
report.Compile();
...
Then, assign new values to report variables. You can use the report variable name for this:
...
// Set Variables
report["Name"] = textBoxName.Text;
report["Surname"] = textBoxSurname.Text;
report["Email"] = textBoxEmail.Text;
report["Address"] = textBoxAddress.Text;
report["Sex"] = radioButtonMale.Checked;
...
In the end, show the report in the viewer:
...
report.Show();
}
На скриншоте ниже Вы можете увидеть результат выполнения данного кода: