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
Farhan Shariff
NA
933
241.4k
Process Bar
Jun 23 2014 7:40 AM
I want to include a Process Bar (for background process) so that when user click the button the process Bar starts and finishes when program stops
private void button4_Click(object sender, EventArgs e)
{
File.AppendAllLines(@"C:\Delta Sigma\Log.txt", new string[1] {"Critical Delta Sigma:" +textBox1.Text });
File.AppendAllLines(@"C:\Delta Sigma\Log.txt", new string[1] { "Non Critical Cpk :" + textBox2.Text });
File.AppendAllLines(@"C:\Delta Sigma\Log.txt", new string[1] { "Critical Cpk:" + textBox3.Text });
Thread t = new Thread(GoCompare);
t.IsBackground = true;
t.Start();
}
Reply
Answers (
3
)
to save coordinates in datagridview
Finding MAX and MIN based on Grouping in a DataTable