Click here to Skip to main content
15,886,873 members
Home / Discussions / C#
   

C#

 
GeneralRe: ProgressBar in multi-threaded application Pin
Lutosław2-Sep-08 6:12
Lutosław2-Sep-08 6:12 
AnswerRe: ProgressBar in multi-threaded application Pin
#realJSOP2-Sep-08 5:05
mve#realJSOP2-Sep-08 5:05 
GeneralRe: ProgressBar in multi-threaded application Pin
Lutosław2-Sep-08 6:09
Lutosław2-Sep-08 6:09 
GeneralRe: ProgressBar in multi-threaded application Pin
#realJSOP2-Sep-08 7:43
mve#realJSOP2-Sep-08 7:43 
GeneralRe: ProgressBar in multi-threaded application Pin
Mark Salsbery2-Sep-08 7:56
Mark Salsbery2-Sep-08 7:56 
GeneralRe: ProgressBar in multi-threaded application Pin
Lutosław2-Sep-08 9:09
Lutosław2-Sep-08 9:09 
GeneralRe: ProgressBar in multi-threaded application Pin
#realJSOP2-Sep-08 9:58
mve#realJSOP2-Sep-08 9:58 
AnswerRe: ProgressBar in multi-threaded application Pin
Daniel Grunwald2-Sep-08 6:22
Daniel Grunwald2-Sep-08 6:22 
Parallel.For does not run the calculation in the background. It just splits the work to multiple threads, but the UI is blocked until the calculation has finished.
If you want multiple threads to calculate in the background, use BackgroundWorker+Parallel.For.
GeneralRe: ProgressBar in multi-threaded application Pin
Lutosław2-Sep-08 6:29
Lutosław2-Sep-08 6:29 
GeneralRe: ProgressBar in multi-threaded application Pin
Lutosław2-Sep-08 9:33
Lutosław2-Sep-08 9:33 
GeneralRe: ProgressBar in multi-threaded application Pin
Daniel Grunwald2-Sep-08 9:38
Daniel Grunwald2-Sep-08 9:38 
QuestionID Pin
ellllllllie2-Sep-08 3:07
ellllllllie2-Sep-08 3:07 
AnswerRe: ID Pin
Manas Bhardwaj2-Sep-08 3:36
professionalManas Bhardwaj2-Sep-08 3:36 
GeneralRe: ID Pin
leppie2-Sep-08 3:45
leppie2-Sep-08 3:45 
AnswerRe: ID Pin
leppie2-Sep-08 3:43
leppie2-Sep-08 3:43 
GeneralRe: ID Pin
Anthony Mushrow2-Sep-08 6:35
professionalAnthony Mushrow2-Sep-08 6:35 
AnswerRe: ID Pin
Pete O'Hanlon2-Sep-08 4:22
mvePete O'Hanlon2-Sep-08 4:22 
AnswerRe: ID Pin
Pete O'Hanlon2-Sep-08 8:09
mvePete O'Hanlon2-Sep-08 8:09 
QuestionC# Classes Pin
Stephen Lintott2-Sep-08 3:07
Stephen Lintott2-Sep-08 3:07 
AnswerRe: C# Classes Pin
Ravi Bhavnani2-Sep-08 3:25
professionalRavi Bhavnani2-Sep-08 3:25 
GeneralRe: C# Classes Pin
Stephen Lintott2-Sep-08 3:28
Stephen Lintott2-Sep-08 3:28 
GeneralRe: C# Classes Pin
Ravi Bhavnani2-Sep-08 3:30
professionalRavi Bhavnani2-Sep-08 3:30 
GeneralRe: C# Classes Pin
Stephen Lintott2-Sep-08 3:45
Stephen Lintott2-Sep-08 3:45 
GeneralRe: C# Classes Pin
Ravi Bhavnani2-Sep-08 5:06
professionalRavi Bhavnani2-Sep-08 5:06 
AnswerRe: C# Classes Pin
Guffa2-Sep-08 3:38
Guffa2-Sep-08 3:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.