RVMedia support and discussion (components for displaying and controlling IP cameras, webcams, video conferencing, video chats, recording audio and video files)
Cmd := TRVCmd.Create;
Cmd.Cmd := _CMD_USER_STATUS;
with Cmd.Params.Add do begin
Name := 'Status';
ParamType := rvptString;
Value := Status;
end;
for I := 0 to Length(AllUsers)-1 do begin
RVCamSender1.SendCmd(Cmd, AllUsers[i].GUID, '');
RVCamSender1.WaitForSendCmd;
end;
The first normal, the second return error. Is there some suitable way to do that?