小
小乖
Unregistered / Unconfirmed
GUEST, unregistred user!
procedure TForm1.Timer1Timer(Sender: TObject);
var b: array[0..4] of Byte;
begin
with TRegistry.Create do
try
RootKey := HKEY_LOCAL_MACHINE;
OpenKey('System/CurrentControlSet/Services/RemoteAccess',False);
ReadBinaryData('Remote Connection',b,4);
finally
Free
<-------------这个FREE是什么意思?谢谢
end;
if b[0]=1 then Caption:='OnLine' else Caption:='OffLine';
end;
form1.free form1.destory form1.close 有什么区别 ?
var b: array[0..4] of Byte;
begin
with TRegistry.Create do
try
RootKey := HKEY_LOCAL_MACHINE;
OpenKey('System/CurrentControlSet/Services/RemoteAccess',False);
ReadBinaryData('Remote Connection',b,4);
finally
Free
<-------------这个FREE是什么意思?谢谢
end;
if b[0]=1 then Caption:='OnLine' else Caption:='OffLine';
end;
form1.free form1.destory form1.close 有什么区别 ?