K
kongxt369
Unregistered / Unconfirmed
GUEST, unregistred user!
type
TZDState = (cpOpened,cpClosed);
TZDInfo = record
ID : String;
Name : String;
IP : String;
ZDState : TZDState;
end;
TMyClass = class
.....
ZD :TZDInfo;
procedure a;
end;
在 a 过程中无法获取zd的ZDState属性????
TZDState = (cpOpened,cpClosed);
TZDInfo = record
ID : String;
Name : String;
IP : String;
ZDState : TZDState;
end;
TMyClass = class
.....
ZD :TZDInfo;
procedure a;
end;
在 a 过程中无法获取zd的ZDState属性????