Tagged Questions

8
votes
7answers
5k views

Use of Application.DoEvents()

Can Application.DoEvents() be used in C#? Is this function a way to allow the GUI to catch up with the rest of the app, in much the same way that VB6's DoEvents does?
4
votes
3answers
626 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.
3
votes
2answers
562 views

Is Application.DoEvents() my only choice (in this case)?

I have some commercial equipment that I can connect to with a .Net library supplied by the equipment manufacturer - so I have no control over the library or the equipment, only my code. The ...
2
votes
5answers
145 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
761 views

What is equivalent to Application.DoEvents() in WPF applications

From MSDN, it seems that Application.DoEvents() is available in Windows.Forms. What would be the equivalent thing in WPF.
2
votes
2answers
476 views

How to pump message for COM STA threads in C#?

I have a main STA thread that calls a lot methods on the COM object and a secondary STA thread that does a lot work on the same object too. I want the main thread and the secondary thread to work in ...
2
votes
2answers
740 views

Alternative to Application.DoEvents()

I am developing a messaging system based on webBrowser controls so that I can format the text however I please. When the user is offline and is sent messages, the messages are stored and an event is ...
2
votes
3answers
224 views

When do I know to call DoEvents?

If I'm looping through a prolonged operation (say, processing files) and I want to update a progress bar, I need to use DoEvents, from what I can understand. But calling it during every loop of the ...
2
votes
4answers
1k views

Can you catch exception from inside Application.DoEvents()?

I've encountered a strange difference between a program running in VS2005 and running the executable directly. Essentially, when an exception is thrown in a method inside an Application.DoEvents() ...
1
vote
1answer
41 views

Refresh a control

I am trying to change a link label's fore color but the color won't graphically change. I have a timer that updates the fore color of the control private void Timer_Tick(object sender, EventArgs e) ...
1
vote
2answers
382 views

Problem with Application.DoEvents() while waiting for WebBrowser to finish loading

I'm trying to load WebBrowser content and after that I want to add some text and scroll to the bottom. Here's example of my code: webBrowser1.Url = new System.Uri("file:///" + filePath); ...
1
vote
2answers
408 views

C# BackgroundWorker - how should i get rid of DoEvents

I'm trying to figure out the best way to handle a backgroundworker that is triggered off radio button clicks. I created a very simple form with 3 radio buttons and a label. Each of the radio buttons ...
0
votes
1answer
177 views

How To Make A For Loop Wait For User Input?

I have a for loop that goes to a site and posts to its forms. For every item in the listbox I want it to wait for the user to fill out the data to the site, then move. The key point here is 'wait'. ...