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
Maneesh A N
NA
179
107.9k
set datasource
Sep 18 2014 6:36 AM
How to set datasource after merging two tables for crystal report in c#,vs2008,sql2008
ReportDocument rd = new ReportDocument();
rd.Load("C:\\REPORTS\\crystalReport8.rpt");
//rd.Load("H:\\MANEESH\\PROJECT\\13-08-2014\\LAB SOFTWARE\\crystalReport4.rpt");
//rd.Load("E:\\MY PROJECT\\19-08-2014\\LAB SOFTWARE\\crystalReport4.rpt");
//rd.SetDataSource(ds.Tables[0]);
//rd.SetDataSource(dss.Tables[0]);
DataSet ds3 = new DataSet();
ds3.Merge(ds);
ds3.Merge(dss);
rd.SetDataSource(ds3.Tables[0]);
crystalReportViewer8.ReportSource = rd;
Reply
Answers (
1
)
Logic for finding the value through formula in c#
managing the image brightness and contrast at runtime