Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #72.8K
~1K People Reached
Interests
Programming,Horses,Data mining,Mathematics,History
Favorite Tags
c# x 1

2 Posted Topics

Member Avatar for Mohsen_3

you can as well use the back ground worker control . //call the runworker function in the button backgroundWorker1.RunWorkerAsycn(); private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e) { foreach (DataGridViewRow row in data.Rows) { this.Invoke((Action)delegate { }); } }

Member Avatar for Felix Green
0
282
Member Avatar for Reginald Xavier

use something like this for(int j=0;j<datagridView2.Rows.Count;j++) { //get the values from various cells here string name = datagridView2.Rows[j].Cells["Name"].Value.ToString(); }

Member Avatar for Felix Green
0
892

The End.