In winform my controls [taskbar and progressbar] become
inactive when heavy processing is going in background, how
to avoid this via multithreading



In winform my controls [taskbar and progressbar] become inactive when heavy processing is going in ..

Answer / brian dixon

Luckily most machines nowadays have multi-core processors or
multiple processors. If the machine in question has only a
single-core processor and nothing else, then there is no
good answer. If the machine is 'modern' and had dual- or
more processors (or cores), then the answer is that your
heavy processing is best forked off into a separate thread
while the GUI is maintained by the first thread. This
allows one processor to maintain good latency in processing
the GUI (and its controls) while the other processor(s) do
the processing. End of story.

Is This Answer Correct ?    12 Yes 5 No

Post New Answer

More OOAD Interview Questions

what is full form OOP?

0 Answers   Wipro,


Can we reduce the visibility of the inherited or overridden method ?

0 Answers  


Define Destructor?

0 Answers  


What is early and late Binding?

0 Answers  


What are all the languages which support oop?

0 Answers  






Can a class in java be inherited from more than one class?

0 Answers  


Explain what a method is?

0 Answers  


Differentiate between an abstract class and an interface?

0 Answers  


Can you create an instance of an abstract class?

0 Answers  


Explain the rationale behind object oriented concepts?

0 Answers  


Explain the different types of constructors

0 Answers  


what are the main underlying concepts of object orientation?

2 Answers  


Categories