You can launch external application like in this sample. This probably is easiest way to do it, but it depends on external applications.
Or you can try to use Windows API with some wrapper like DotRas. This could be a bit harder, but you won't have any dependancies on particular external apps.
I have a windows forms app with a textbox control that I want to only accept integer values. In the past I've done this kind of validation by overloading the KeyPress event and just removing characters which didn't fit the …
Which is the simplest way to update a Label from another Thread?
I have a Form running on thread1, and from that I'm starting another thread (thread2).
While thread2 is processing some files I would like to update a Label …
I want to create a program that converts files. I would like the user to be able to place the executable file in any directory, and when executing that program (double-clicking on the .exe) I want the program to process …