Hi,
I'm creating a report where I need to pass some parameters, but I need reload the report after load the method. I'd like know how to do reload the report in runtime?
I tried that, but isn't work.
Thanks Attention!
I'm creating a report where I need to pass some parameters, but I need reload the report after load the method. I'd like know how to do reload the report in runtime?
I tried that, but isn't work.
User obj = this._userService.ReturnByHql("from User as o where u.dstId.dstId = " + int.Parse(this.cbxDistributor.SelectedItem.Value) + " order by u.usrId desc")
ReportViewer1.Report = obj;
ReportViewer1.RefreshReport();
Thanks Attention!