TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Mfwamba Tshimanga
NA
155
46k
Need to refresh my report datas. But doesnt
Jun 14 2014 12:24 PM
Hi!
I would like to actualize my datas after making a filter in Report viewer. See my codes:
These first codes works when I do my filter.
private void button1_Click(object sender, EventArgs e)
{
this.StudTableAdapter.Fill(this.DataSet1.Stud, textBox1.Text);
this.reportViewer1.RefreshReport();
}
Now these codes doesnt work. But I would like to refresh my datas after the filter. See what I do. But Its give me a error message:
No overload for method 'Fill' takes 1 arguments
private void button2_Click(object sender, EventArgs e)
{
this.StudTableAdapter.Fill(this.DataSet1.Stud);
this.reportViewer1.RefreshReport();
}
}
Reply
Answers (
0
)
Clear the Formcollection elements in MVC4
Problem with Ftp commands inside a C# Web application