怎么这么久没看到你上线了呀???
我的机上没找到RasMan服务,我不好试.
我是这样想的,如果真是RasMan还没启动造成的,那么在你的程序中让它启动完了,才真正启动你的程序.
就是在以下程序里改改!!
procedure TEntryThread.Execute;
begin
while true do
begin
//在这里判断RasMan服务有没有启动,直到它启动守完了,才执行下面的程序.(还可以过一定时间如果没启动,就提示用户它没启动,你的程序不可用.)
GetDialParams;
if self.Terminated then exit;
if self.RASConn <> 0 then self.CheckDisConnect
else if self.FADEnabled then self.Connect
else self.Suspend;
end; { Place thread code here }
end;