Tagged Questions
2
votes
2answers
162 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 ...
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()
...
-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
...