It's rather old post but if you haven't solved it, I'll try to help. In my case the problem was in TForm1.FormClose event-handler. It consists (in my case)...
Hi People Recently I developed a project that extracted certain data from a site (names, addresses and telephone numbers), but after that they reconfigured the...
Thanks. I wrote a slightly modified version of the code you posted, but Window.event is always nil. Any ideas? Here is my code (note that I am using a...
I have written application that opens Word documents inside TWebBrowser. When users already have opened Word documents and try to open some predefined Word...
hi all, I need to create a IE toobar and ExplorerBar for my project. can someone help me out. I am using Delphi 7.0 enterprise. I already downloaded "Band...
Correct Band Objects ver 1.2 for Delphi 5/6 for Delphi 7 is IMHO smallest problem. There are other big problems with this sample: DropdownMenus (with more then...
Thanks for your responce but where can I find the component you talking about ? "IMHO " radikovsky <radikovsky@...> wrote:Correct Band Objects ver 1.2...
... I don't think you can do what you described because the way explorer displays PDFs is through an ole container, so the rendering of the PDF is done by...
Hello! How can I implement web browser in Borland Delphi 8.0 for the Microsoft .NET Framework (like Welcome page) - in my VCL forms application? Thank you. ...
Hi to everybody. I'm creating an application, where I want to show a web page and to be able to get some control on it. I managed to dynamically enter data in...
How do I do this? ===================================================================== // Once web page loads we check to see if this is the url we want to ...
===================================================================== // Once web page loads we check to see if this is the url we want to read from! if...
... Bandobjects from Eurominds works also under Delphi 7.0. I had never any troubles. I you follow the instructions, but get an error pleace specify the error...
I just noticed that URLs longer than 128 characters are being clipped to only 128 when coming in thru OnBeforeNavigate2. I could not find this in any docs and...
Can someone point me to some documentation on how the threading/time-slicing model for the SHDOCVW/MSHTML stuff works? I'm trying to understand what sort of...
Hi, Does anyone know to to breaka started Navigate? Sometimes it just hangs when the response is delayed or maybe lost and I want to make a 'time-out39; function...
TWebBrowser1.Stop ... From: berndt_ring To: delphi-webbrowser@yahoogroups.com Sent: Tuesday, June 08, 2004 2:00 PM Subject: [Delphi-WebBrowser] How to break a...
I can get the image tag in an ITHMLImgElement just fine. But I'd like to "surround" this tag with an anchor. How could I modify the DOM to do this? Change...
you can also try this one (IE V6 only): === MS-SDK stuff ================================================ appendChild Method ... Appends an element as a child...
Greetings! I'm using Per Lindsoe's (Euromind) toolbar. I need to find a way to uniquely identify it on code, i.e., query it to find the GUID that was assigned...
Hello all! When i close a webbrowser, it seems, that virtual memory size won't decreased as well. Please see the following code. Who can help me? //...
... you mean 4 and 5 ??? why do you use typecasting? have you tried this: iDoc.createElement('<A HREF="http://www.images.com">' + ImgElement.innerHTML+...
this works ok for me: procedure TForm1.Button1Click(Sender: TObject); var oHTMLDoc2: IHTMLDocument2; begin oHTMLDoc2 := WebBrowser1.Document as IHTMLDocument2;...