Disclosure Statement: This site contains affiliate links, which means that I may receive a commission if you make a purchase using these links. As an eBay Partner, I earn from qualifying purchases.

proxy connection connection

Post Reply
sodlf159
Posts: 13
Joined: Thu Nov 09, 2023 1:55 pm

proxy connection connection

Post by sodlf159 »

procedure TForm1.Chromium1LoadError(Sender: TObject;
const browser: ICefBrowser; const frame: ICefFrame; errorCode: Integer;
const errorText, failedUrl: ustring);
begin
case errorCode of
ERR_PROXY_CONNECTION_FAILED:
ShowMessage('Unable to connect to proxy server. Please check your proxy settings.');
//frame.LoadUrl(failedUrl);
ERR_CONNECTION_RESET, ERR_CONNECTION_CLOSED:
ShowMessage('Connection aborted. Would you like to reload the page?');
//frame.LoadUrl(failedUrl);
ERR_NETWORK_CHANGED:
ShowMessage('Network settings have changed. Try connecting again.');
//frame.LoadUrl(failedUrl);
end;
end;

I don't have the information, so I'm uploading it in case you need it.Retry proxy connection and reload when disconnected.
User avatar
salvadordf
Posts: 4067
Joined: Thu Feb 02, 2017 12:24 pm
Location: Spain
Contact:

Re: proxy connection connection

Post by salvadordf »

sodlf159 wrote: Tue Apr 23, 2024 9:07 pm I don't have the information, so I'm uploading it in case you need it.Retry proxy connection and reload when disconnected.
Thanks! :D
Post Reply