I am using Devexpress XtraReport in a Windows application for reporting purposes. I set param1 parameter, having the string as type in my XtraReport1 and using the following code to pass the parameter.
private void button1_Click(object sender, EventArgs e) { XtraReport1 report = new XtraReport1(); report.Parameters["param1"].Value = "kashif"; report.Print(); }
when I press button1 on the next apperas windows and ask me for param1 values that already displayed “kashif” in it using the “Send” and “Reset” buttons, My problem: I do not want this window to open when I press button1 instead, I want to pass directly "kashif" in it, without asking me for the value of param1. 
source share