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
John Beeman
NA
15
0
How take elements from one form and add them on a datagrid on another form?
Aug 13 2008 2:33 PM
I am trying to take selected rows of datagrid on Form2 and add them to a datagrid on Form1. I am new to C# forms and I am having trouble thinking of the approach to take. As I understand, it is bad practice to make public variables accessible from any form, so it would be nice to do it the right way.
I have a button press on Form2 that I want to trigger copying the selected rows from a datagrid on Form2 to a datagrid on Form1. Can anyone tell me the best approach for this?
Form2:
private void button4_Click(object sender, EventArgs e) //button to copy rows from Form2 datagrid to Form1 datagrid
{
for (int i = 0; i < dataGridView1.SelectedRows.Count; i++) //Form2 datagrid
{
//Copy these elements to Form1 and add them onto Form1 datagrid
}
}
Thanks,
John
Reply
Answers (
2
)
Encode problem
system.windows.forms.datagridview