如何调用WINDOWS系统中的拨号程序。(50分)

  • 主题发起人 主题发起人 boyliu
  • 开始时间 开始时间
B

boyliu

Unregistered / Unconfirmed
GUEST, unregistred user!
比如我在“网络拨号连接中”新建立一个169或8163连接。我希望在DELPHI中调用这个程序。
 
参考这个:
http://www.delphibbs.com/delphibbs/dispq.asp?lid=112692
 
以下命令可以直接在Windows的运行窗口直接执行,在Delphi中你要这样使用:
winexec(Pchar('ABCD'),sw_Show);

其中"ABCD"代表以下命令之一:
"rundll32 rnaui.dll,RnaWizard" - 运行"Internet连接向导", 如果加上参数"/1"则为silent模式
"rundll rnaui.dll,RnaDial "MyConnect" - 运行"网络连接"对话框



 
"rundll rnaui.dll,RnaDial "MyConnect" - 运行"网络连接"对话框
不行啊。怎么办
 
把MyConnect换成你具体的连接名.
 
多人接受答案了。
 
后退
顶部