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();
}
Loading

Yogesh TyagiPosted Jun 23, 2014, 9:04 AM
Farhan ShariffPosted Jun 23, 2014, 8:59 AM
Yogesh TyagiPosted Jun 23, 2014, 8:40 AM
See these link for process bar
http://www.c-sharpcorner.com/Blogs/1312/
http://www.etechpulse.com/2013/05/how-to-create-progress-bar-example.html
http://www.aspdotnet-suresh.com/2010/10/how-to-show-progressbar-during.html
http://www.beansoftware.com/ASP.NET-Tutorials/ProgressBar-User-Control.aspx