I use my own dialog to show that a Webbrowser document has changed before loading a new document. But by default, the webbrowser display's its own dialog to report the same. How can I suppress Webbrowser from showing its own document has changed dialog so I use my own dialog?
Edit
MyDialog

WebBrowser Dialog

TWebBrowserthat comes inside VCL, or theTEmbeddedWBfrom bsalsa.com, and if you are using the former, have you tried the latter? It has lots of additional properties thatTWebBrowserdoes not have. – Warren P Dec 20 '11 at 21:09IHTMLDocument2.designModetoOn, change something on a page and turn it back tooff. I was hunting it probably as long as the downvoter here. – TLama Dec 20 '11 at 23:35similar questionabout supressing the save changes dialog at DesignMode toggle. It works, but in my view it's more workaround than solution. For your case you would probably need to store the content source and enter the design mode. Then either inOnBeforeNavigate2event (because navigate exits design mode) or in your own exit design mode event useRRUZ's code, compare the current content source with the stored one and display your save dialog. – TLama Dec 21 '11 at 0:53