Click here to Skip to main content
15,918,808 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
I want to use threading working in background, in that time I want work in windows forms in c#.
Posted
Updated 1-Mar-15 21:51pm
v2
Comments
Leo Chapiro 2-Mar-15 3:52am    
Couldn't Google help?

 
Share this answer
 
Check this out: C# BackgroundWorker[^]
 
Share this answer
 
Take a look at this website.This helps us what you asked.
http://www.codeguru.com/columns/dotnet/working-with-background-workers-in-c.html[^]
 
Share this answer
 
Thread th = new Thread(fun1);
th.Start();
Thread as= new Thread(fun2);
as.Start();
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900