Is Application.DoEvents() just for forms?
I thought that this command was used to ensure that all of the commands before are processed but now after reading the documentation, I'm not sure anymore.
|
Is I thought that this command was used to ensure that all of the commands before are processed but now after reading the documentation, I'm not sure anymore.
| ||||
|
feedback
|
|
Yes, it's really aimed at Windows Forms. However, in my view it should be avoided where possible. It's usually used as a hack by developers who don't want to be bothered with putting long-running operations on a different thread... but that means they're introducing re-entrancy issues which can be very hard to track down, as well as still blocking the UI thread for some of the time (and if that includes something like a file operation, you can't really predict whether the operation will complete quickly enough to not have a user visible effect). | |||||||||||
feedback
|
|
Without WinForms, there is no standard event queue. (Well, there is an event queue in WPF, but this is just another framework). | |||||||||||
feedback
|
|
Yes, it's only for Windows Forms. It wouldn't make sense in a console or ASP.NET application, because there is no message loop. It is possible to do it in WPF, using the dispatcher, as shown here. Anyway, I wouldn't recommend using | |||
|
feedback
|
|
a little mimic for that: http://bresleveloper.blogspot.com/2012/05/console-applicationdoevents-solved.html | |||
|
feedback
|
Application.DoEvents. What problem are you trying to solve? Perhaps someone can suggest a better way of doing so. – Cody Gray Feb 12 '11 at 11:12DoEvents. It’s the entire class. That’s why it’sSystem.Windows.Forms.Application... – Timwi Feb 12 '11 at 11:54