📄 variable_u.~pas
字号:
unit Variable_U;
interface
uses
IProductService_WAD1, Rio, SOAPHTTPClient,ProductBinding;
type
TClientCFG=record
ServiceURL :string;
ServiceID :string;
UserID:string;
end;
function GetService:IProductService_WAD;
var
ClientCFG :TClientCFG;
htpr1: THTTPRIO;
implementation
function GetService:IProductService_WAD;
begin
if htpr1=nil then htpr1 :=THTTPRIO.Create(nil);
htpr1.URL :=ClientCFG.ServiceURL;
Result := htpr1 as IProductService_WAD;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -