在Win2k下怎么打开拨号连接?在线等待,即刻发分。(100分)

  • 主题发起人 主题发起人 yyk518
  • 开始时间 开始时间
Y

yyk518

Unregistered / Unconfirmed
GUEST, unregistred user!
这句在Win2K下无效:
winexec(PChar('rundll32.exe rnaui.dll,RnaDial '+PPPoE_NAME),SW_SHOWNORMAL);
 
不知道能不能实现你所要的功能:
winexec('rundll32.exe shell32.dll,Control_RunDLL ncpa.cpl',9);

winexec('RasPhone.exe',SW_SHOWNORMAL);
 
谢谢dreamliu2001,但这样只能打开“网络和拨号连接”文件夹,
而不能打开特定的拨号连接。在我的“网络和拨号连接”文件夹中,有三个连接,
我要打开“连接到ADSL”这个连接,怎么办呢?
 
procedure TSendDataForm.rzbbtnDailClick(Sender: TObject);
var
registryValue:TRegistry;
getconnect:string;
Text:array[0..255] of char;
begin
registryValue := TRegistry.Create;
with registryValue do
begin
RootKey := HKEY_CURRENT_USER;
if OpenKey('RemoteAccess',false) then
getconnect:=ReadString('default');
CloseKey;
end;
RegistryValue.Free;
strPCopy(Text,'rundll32.exe rnaui.dll,RnaDial '+GetConnect);
winexec(Text,SW_SHOWNORMAL);
end;
 
TO fengyuyang:
首先谢谢你的参与。
但你根本没看清楚我的问题,在WIN2000中根本没有rnaui.dll这个文件,把WIN98中
那个复制到WINNT/SYSTEM32下也没有用。
 
我有一篇专门介绍网络连接的文章,要就给Email;
 
to: dreamliu2001
请E给我:tech@hensel-hk.com
谢谢!
 
我有改编的源码。已经发到你邮箱。
 
WinInet.Pas 里的 InternetDial 系列函数,
 
给你我早期写的拨号软件源代码
图片见
http://www.datacn.com/images/bohao1.gif
程序
http://www.datacn.com/acdown/list.asp?id=19

 
谢谢各位。
 
多人接受答案了。
 
后退
顶部