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
Dong Lam Trien
830
986
147.3k
why not escape to catch an error when i next run?
Feb 23 2017 8:16 AM
I have the following code structure:
[CODE]
bool bStop = true;
int RowCount = 65000;
private void btnRun_Click(object sender, EventArgs e)
{
int i = 0;
//int iErr;
while (i < dataGridView1.Rows.Count - 1 && bStop)//Loop 1
{
while (i < dataGridView1.Rows.Count - 1 && bStop)// Loop 2
{
try
{
if (i > 0) dataGridView1.Rows[i-1].Selected = false;
dataGridView1.Rows[i].Selected = true;
dataGridView1["ROWS", i].Value = "Processing...";
System.Windows.Forms.Application.DoEvents();
Thread.Sleep(1000);
Debug.Print("are in Try and i: " + i);
//if (chkErr.Checked == true)
//{ iErr = "E"; }
}
catch (Exception ex)
{
Debug.Print("are in Catch and i: " + i + " ex: " + ex.Message);
//If an error occurs this place, why not escape to run i next catch ?
}
i++;
}// Loop 1
}//Loop 2
}
[/CODE]
Reply
Answers (
5
)
I want to convert my application from HTTP to HTTPS step by
How to increase number of characters when reading data from