Tagged Questions

0
votes
1answer
37 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 …
4
votes
2answers
190 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?
0
votes
8answers
1k 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() …
1
vote
3answers
450 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() …