Tagged Questions
4
votes
3answers
559 views
Is Application.DoEvents() just for WinForms?
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.
2
votes
5answers
124 views
Waiting for a long process and still updating UI
I've been attempting to create a task that writes to a database without blocking the UI thread. The biggest problem I'm having is waiting for that process to finish without the blocking happening.
...
2
votes
2answers
240 views
.net hang on Application.DoEvents
One of our legacy products is a Winforms application and instead of using background threads it does everything on the main UI thread. It has a constant loop running on this main thread that calls ...
1
vote
1answer
234 views
Calling DoEvents in Application.Idle
I stay away from Application.DoEvents, since there is the issue of re-entrancy and there is always another way to avoid holding up the UI. I've long prefered to do background work in the ...
1
vote
1answer
403 views
Windows Forms Click event repeating itself
I have a strange problem with a Windows Forms event. To be exact, it's a KryptonHeaderGroup's ButtonSpec Click event, but it also happens with a plain vanilla System.Windows.Forms.Button.
In the ...