Delphi 2017 R3 [exclusive] -
Once the software is running, you must link your DS150E VCI box:
: Inside Delphi, go to Settings > Hardware Setup . Select the correct COM port and click Test . delphi 2017 r3
If you were building enterprise mobile apps in 2018–2020, recommended by most component vendors (TMS, DevExpress, and FastReports). Once the software is running, you must link
procedure DoGet; var RESTClient: TRESTClient; RESTReq: TRESTRequest; RESTResp: TRESTResponse; begin RESTClient := TRESTClient.Create('https://api.example.com'); RESTResp := TRESTResponse.Create(nil); RESTReq := TRESTRequest.Create(nil); try RESTReq.Client := RESTClient; RESTReq.Response := RESTResp; RESTReq.Resource := 'data/1'; RESTReq.Method := TRESTRequestMethod.rmGET; RESTReq.Execute; if RESTResp.StatusCode = 200 then ShowMessage(RESTResp.Content) else ShowMessage('HTTP Error: ' + RESTResp.StatusText); finally RESTReq.Free; RESTResp.Free; RESTClient.Free; end; end; Once the software is running