I'm use CEF 3.2623.1401.gb90a3be (Chromium 49.0.2623.110) in my project in Delphi 10.1. (I have to use a fairly old version of CEF/Chromium for backwards compatibility with WinXP). How do I can check if a site is not reachable? if I try to open any obviously non-existent or inaccessible site in a normal Chrome browser - I get an error like DNS_PROBE_FINISHED_NXDOMAIN or ERR_INTERNET_DISCONNECTED, but in my embedded Chromium I get just a blank page without anything. Can I somehow catch such errors in Chromium?
Delphi CEF Check if site is not reachable
489 Views Asked by Red October At
1
There are 1 best solutions below
Related Questions in DELPHI
- How can I read the header of request to webserver
- Receiving Notifications for Individual Task Completion OmniThreadLibrary Parallel.ForEach
- Delphi - How to get result of function from QuickReport without viewing a report?
- Out of memory while adding documents to a Firebird BLOB field with Delphi
- How to MakeScreenshot fullpage on Delphi
- How to program a COM object with an IEnumerator, IEnumerable interface inside
- How to Dynamically Add Controls to Delphi Form
- How to write a string in Stringrid with DelimitedText in FMX Delphi 11
- TGrid/TStringGrid multi cell selection / multi editing in delphi firemonkey (12)
- How to localize "Today" in the Delphi TMonthCalendar?
- How can I call a SOAP webserver method in Vue.js?
- Efficiently Handling Large Number of API Calls with Delphi 10.4 and OmniThreadLibrary
- Delphi can not compile the unit create by its "XML Data Binding Wizard"
- Save Form Properties in File and then restore those Properties after reopening
- Is it possible to open a blob without saving it to file
Related Questions in CHROMIUM
- Why is it impossible to definitively know if your website is running as a PWA or as a website?
- Is it possible to save MHTML with scripts included?
- Chrome PDF print image aspect ratio incorrect - very apparent with small images - is there a workaround?
- How to turn off login pop-up on stackoverflow
- "Inconsistent WhatsApp Web Integration: Error with Manifest File Null Value Reading"
- Possible scroll bug with usage of overflow-hidden on body along with "sr-only" elements?
- How to solve Missing X server or $DISPLAY when trying to change the loaded website in Chromium
- Google Chrome for AWS Lambda as a layer
- Does Chromium pass URLs along with JS to V8?
- Chromium version on Puppeteer build
- Change the blue background of chrome devtool like before
- Native Messaging "Specified native messaging host not found" debugging
- PDF-documents not loading inside iframe in Chrome and Edge
- ReferenceError: ReadableStream is not defined using Puppeteer's page.pdf() on AWS
- Why is MediaQuery.of(context).size.height in Flutter detecting a larger height in Android chromium-based browsers?
Related Questions in CHROMIUM-EMBEDDED
- How to use CEF (Chromium Embedded Framework) in Python 3.12.0?
- CefSharp WinForms 117.2.40 Getting "Trying to modify an unregistered preference" setting auth preferences
- How to increase the number of available connections for a ChromiumWebBrowser?
- CEF ARM64 build compilation failing for CEF V119
- Error Building JCEF: how to fix Module Not Found?
- CefDOMVisitor Visit method never called?
- CEF in MFC application compile error C2061, Visual Studio 2022
- How to enable dark mode for CefSharp web browser in .NET?
- CefSharp - CEF (Chromium Embedded Framework) - (6261) challenging to build
- Creating new thread before 'CefExecuteProcess' causes CEF application to crash with SIGTRAP
- PyWebView with CEF: CEF window with UID master does not exist
- CefSharp ChromiumBrowser looses focus when opening file picker via <input type="file">
- How to sign-in to Google Account with Chromium Embedded Framework (CEF)
- GraalVM native image of JCEF application not working, even if agent generated config files were added
- Maximum page width
Related Questions in TCHROMIUM
- How to change chromium source code to modify the browser update
- Delphi Chromium CEF4 Response Filter
- Delphi - How to login to the Instagram with TChromium?
- window.chrome.webview.addEventListener vs. document.addEventListener
- how to interact with HTML forms in delphi using TChromium
- Delphi Chromium,how simulate click Button on html page
- How to stay logged in browser CEF4Delphi, without all browser history?
- How to load HTML string into Chromium browser in "Delphi 10 Seattle"
- How can I make a screenshot of the complete document loaded with chromium (CEF4) with Delphi?
- How to result OK to a javascript confirm dialog chromium cef3
- Page source update on run time - Chromium
- How to get the website error count in chromium cef3
- How to Disable Downloading in Chromium CEF3
- TIdHTTP freeze on CEF work
- Delphi CEF Check if site is not reachable
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Yes, you can. There is the OnLoadError event that you can handle (error codes you can then find in the ceferr.pas module).