I am adding parameter to my report in the design view and at the run time I am setting it's value code below:
paramList.Add(
new ReportParameter("ReportYear", "2003", false));
this.reportViewer1.ServerReport.SetParameters(paramList);
//...
I am new to windows forms and trying to use form_load event. See code bellow.
private void Form1_Load(Object sender, System.EventArgs e)
{
MessageBox.Show("TEST");
}
When the window's form is showing up, nothing is happening.
I would appreciate your suggestions.
I am trying create rdlc reports microsoft reports in Visual Studio Express and can't find any templates when going to add new item.
Any suggestions appreciate.
I am having an issue with data access through the record set. When I am getting value from execution of the sql query with asp execute statement. The order of the selected data columns in the query is matters.
For example if my query “select firstname, lastname from users”, and I will try...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.