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

enter image description here

WebBrowser Dialog

enter image description here

link|improve this question

55% accept rate
1  
Are you using TWebBrowser that comes inside VCL, or the TEmbeddedWB from bsalsa.com, and if you are using the former, have you tried the latter? It has lots of additional properties that TWebBrowser does not have. – Warren P Dec 20 '11 at 21:09
I don't know about this kind of dialog. Could you paste a screenshot of it, please ? Or refer to some source describing it or describe its behavior by your own ? – TLama Dec 20 '11 at 21:22
1  
I am using TWebBrowser. I would prefer not to change because I have alot of code to make it work the way I want, except for this problem. – Bill Dec 20 '11 at 22:11
Just for being more specific, this dialog is displayed when you turn the IHTMLDocument2.designMode to On, change something on a page and turn it back to off. I was hunting it probably as long as the downvoter here. – TLama Dec 20 '11 at 23:35
There was the similar question about 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 in OnBeforeNavigate2 event (because navigate exits design mode) or in your own exit design mode event use RRUZ's code, compare the current content source with the stored one and display your save dialog. – TLama Dec 21 '11 at 0:53
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.