1.~~~~~~~~~~~<br>procedure TForm1.Timer1Timer(Sender: TObject);<br>var<br> b: array[0..4] of Byte;<br>begin<br> with TRegistry.Create do<br> try<br> RootKey := HKEY_LOCAL_MACHINE;<br> OpenKey('System/CurrentControlSet/Services/RemoteAccess',False);<br> ReadBinaryData('Remote Connection',b,4);<br> finally<br> Free;<br> end;<br> if b[0]=1 then Caption:='在线' else Caption:='离线';<br>end;<br>~~~~~~~~~~~~~~~~葵花宝典有记载<br><br>2.~~~~~~~~~~~<br>用拨号控件吧,BUPack2.0里有<br>