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
Shovan Saha
NA
321
91.8k
new datagridview from another 2
Sep 13 2017 11:07 AM
DataTable dt3 = new DataTable();
dt1.Columns.AddRange(new DataColumn[3] { new DataColumn("Sl"), new DataColumn("SoinikNo1"), new DataColumn("Rank1") });
dt.Columns["Id"].AutoIncrement = true;
dt.Columns["Id"].AutoIncrementSeed = 1;
dt.Columns["Id"].AutoIncrementStep = 1;
dataGridView3.DataSource = dt3;
I want to make dataGridView3 from dataGridView1 and dataGridView2. I want the column SoinikNo1 from datagridview2 and the Rank1 cell value from datagridview1 if SoinikNo from datagridview1 and datagridview2 is same. Please give sample code or example that I can understand.
Reply
Answers (
2
)
i want to display data without save in database whatever i
Transfer Data from DGV of Form1 to Crystal Report of Form2