客户如何回应其他要求的客户[使用应用共享]

另一个客户如何回应指定的客户?

请帮助。

客户如何回应其他要求的客户[使用应用共享]

客户端:

procedure TForm1.Button2Click(Sender: TObject);
begin
tAProfile.SendString(tManager.RemoteProfiles.First,'cSend3','Sent by CLIENT 3');  //Send to client 3
end;
procedure TForm2.tAProfileResourceReceived(const Sender: TObject;
  const AResource: TRemoteResource);
  var i:integer;
  begin
if AResource.Hint='cSend3' then
  begin
    Label1.Text:=AResource.Value.AsString;  

    tAProfile.SendString(tManager.RemoteProfiles[1],'client','Sent by client');  //Send to Client
  end;

end; 

huangshaoxu 回答:客户如何回应其他要求的客户[使用应用共享]

暂时没有好的解决方案,如果你有好的解决方案,请发邮件至:iooj@foxmail.com
本文链接:https://www.f2er.com/3002999.html

大家都在问