1
vote
4answers
468 views
How do I work with dial-up (RAS) connections in Windows using C#/.NET?
I need to be able to connect, disconnect, and re-connect a dial-up networking connection in a C# .NET Framework application. Creating the connection in the phone-book might also be useful/necessary …
1
vote
3answers
870 views
ActiveX Flash component in C# .NET 2.0 Application causes memory leak?
We have a C#/.NET 2.0 WinForm with an ActiveX ShockwaveFlashObject control on it. The program loops through a schedule of content and displays it over and over on the control, fullscreen, like this …
1
vote
3answers
2k views
How do I restart my C# WinForm Application?
Developing a C# .NET 2.0 WinForm Application. Need the application to close and restart itself.
Application.Restart();
The above method has …
0
votes
Why is Application.Restart() not reliable?
Start/Exit Method
// Get the parameters/arguments passed to program if any
string arguments = string.Empty;
string[] args = Environment.GetCommandLineArgs();
for (int i = 1; i < …
1
vote
How do I restart my C# WinForm Application?
Start/Exit Method
// Get the parameters/arguments passed to program if any
string arguments = string.Empty;
string[] args = Environment.GetCommandLineArgs();
for (int i = 1; i < …
