Tagged Questions
The doevents tag has no wiki summary.
9
votes
7answers
4k 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?
6
votes
2answers
1k views
Application.DoEvents, when it's necessary and when it's not?
Hi
what is the necessity of using Application.DoEvents and when we should use it?
4
votes
3answers
561 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
524 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
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
563 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
409 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
597 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
2answers
166 views
Does DoEvents effect only the current thread?
I have a simple 'Working' form that runs on its own thread to keep the user informed that the application hasn't died during long running operations. In order to get the working form to update I had ...
2
votes
2answers
243 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 ...
2
votes
2answers
1k views
What does “DoEvents” do in vb6?
What does "DoEvents" do in vb6 ?
Why do I get the error message "Out of stack space" ? What does it mean ?
2
votes
3answers
211 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
37 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
1answer
58 views
WPF textbox does not react to input while in DoEvents loop
For some reason my program needs to pause in a function, while still reacting to user input. This is currently done using DoEvents in a loop.
Unfortunately my textbox does not work properly while I ...
1
vote
2answers
349 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
1answer
376 views
What are the benefits to using DoEvents over Repaint on a userform in VBA?
What are the benefits to using DoEvents over Repaint on a userform in VBA?
Is it due to performance, for minimising the annoyance of things such as screen flicker, or for when you need to update more ...
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
2answers
386 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 ...
1
vote
0answers
263 views
WPF Dispatcher.PushFrame vs WinForms Application.DoEvents?
In WinForms, Application.DoEvents method has been regarded as evil by some people. Can anybody tell if its counterpart of Dispatcher.PushFrame in WPF is safe to use?
1
vote
1answer
265 views
VB6 program crashing during DoEvents, why?
I have a printing application that is using the Printer object to print files. On one particular machine (not others), this program will crash after processing some number of files (20 or so).
The ...
1
vote
1answer
404 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 ...
1
vote
10answers
7k views
How do I delay a vb.net program until a file operation completes?
I have this:
Dim myTemp As String
myTemp = System.DateTime.Now().ToString("MMMddyyyy_HHmmss") & ".pdf"
System.IO.File.Copy(myFile, "c:\" & myTemp)
Application.DoEvents()
...
0
votes
2answers
54 views
without using DoEvents, how to detect if a button has been pressed?
Currently, I call DoEvents in order to check if Button Foo in Form Bar has been clicked. This approach works but it takes too much processing power, delaying the program.
I believe that the delay ...
0
votes
1answer
60 views
VB6 DoEvents not Working as Desired
I am working with a proprietary VB6 COM library. The library has some functions which fire and I get the results once complete through Events.
Container Class:
Private WithEvents myObj As ...
0
votes
1answer
151 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'.
...
0
votes
2answers
79 views
how to load UI Controls one-after-another in WPF
I'm working on a WPF Application where there are multiple list views.
I get all the data necessary for all the list view at once. However, my requirement is such that, the list view that has less ...
0
votes
0answers
70 views
C# COM Interop and Application.DoEvents()
I found the following code and am trying to implement it in a COM module:
public Bitmap GetThumbnail()
{
ThreadStart _threadstart = new ThreadStart(GenerateThumbnail);
...
0
votes
3answers
50 views
WPF Window does not finish rendering when download starts
I am writing a small file download utility. The DownloadFile() method is called on Window_Loaded() event of my MainWindow. Since the DownloadFile method is resource intensive, the MainWindow does not ...
0
votes
2answers
202 views
I am looking for the PHP equivalent for VB doevents
I am looking for the PHP equivalent for VB doevents.
I have written a realtime analysis package in VB and used doevents to release to the operating system.
Doevents allows me to stay in memory and run ...
0
votes
2answers
210 views
jQuery timing - wanting to add something akin to DoEvents() in a method
I have a table of data that contains about 260 rows. Each of these rows is identified by an attribute such as parentHeaderName. When the header of that table is clicked, I have some jQuery in place ...
0
votes
1answer
174 views
backgroundworker in infinite loop
Except doevent() is another way that, in this infinite loop run another control in form.
I wanted to do it with backgroundworker, but I failed.
private void button1_Click(object sender, ...
0
votes
1answer
574 views
Custom Modal Window in WPF?
I have a WPF application where I'd like to create a custom pop-up that has modal behavior. I've been able to hack up a solution using an equivalent to 'DoEvents', but is there a better way to do ...
-2
votes
5answers
1k views
.net 2010 calling DoEvents (yes I want to) from inside a custom control library
I have a custom control's library. Now there's a control which looks like a panel, and when it opens up I want to animate its vertical growing like this:
For h As Single = 0 To finalHeight Step 0.5
...