¡@

Home 

c# Programming Glossary: freezing

Make a BackgroundWorker do several operations sequentially without freezing the form

http://stackoverflow.com/questions/1902384/make-a-backgroundworker-do-several-operations-sequentially-without-freezing-the

do several operations sequentially without freezing the form I have already asked a somwhat similar question here..

Display progress bar while doing some work in C#?

http://stackoverflow.com/questions/1952201/display-progress-bar-while-doing-some-work-in-c

result that keeps the progress bar alive means not freezing but refreshes the marque c# multithreading begininvoke share..

How do I get the member to which my custom attribute was applied?

http://stackoverflow.com/questions/2168942/how-do-i-get-the-member-to-which-my-custom-attribute-was-applied

the calling method is dangerous at best. In a way you are freezing your program's design making it far more difficult for anybody..

In C#, wait on the mainthread while continuing to process UI updates? (.NET 2.0 CF)

http://stackoverflow.com/questions/360789/in-c-wait-on-the-mainthread-while-continuing-to-process-ui-updates-net-2-0

the OS . You don't have to block the user workflow via freezing a form which would then be considered Not Responding by windows..

Use of Application.DoEvents()

http://stackoverflow.com/questions/5181777/use-of-application-doevents

It is DoEvents that allows a dialog to be modal without it freezing the rest of the windows in the app. Most programmers want to.. want to use DoEvents to stop their user interface from freezing when they write their own modal loop. It certainly does that..

Monitoring Garbage Collector in C#

http://stackoverflow.com/questions/9669963/monitoring-garbage-collector-in-c-sharp

If that's the case you can certainly see your application freezing if there's heavy collections. This is why they created the concurrent..