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 Forums
Programming x 1
Favorite Tags
c# x 1
2 Posted Topics
Re: 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 { }); } } | |
Re: 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(); } |
The End.