is there any opportunity to open the modem dialog from the windows control center by using a c# program?
The concrete dialog is: Windows -> Control center -> Telephone and modem -> tab advanced -> select provider -> button configuration
The process which is started is show in the task manager as dllhost.exe.
Thanks and kind regards Bine
You can open the Phone and Modem control panel item by "running" the telephon.cpl "program". You can do this by using the SHELL32 function directly by p/invoke, or by using RunDll32.
RunDll32 is a program included with windows, which loads a DLL, and runs a function within it, as specified by the command line arguments. This is typically how the shell (explorer) runs control panel applets.
You can also load the CPL directly by using the shell32 function yourself.
Here's example code: