TWebBrowser is a VCL component available in the Delphi Internet tool-palette. It is defined in the `SHDocVw.pas` unit. It provides access to the Web browser functionality of Microsoft's Shell Doc Object and Control Library.
0
votes
0answers
20 views
how to get all links from TWebBrowser component in C++?
Searched a lot. Cant translate from other languages like delphi, c#, and in c++ there were no complete examples.
Would be great to get to the links as strings in TWebBrowser Document.
(It is needed, ...
-1
votes
1answer
72 views
New instance in TWebBrowser [closed]
I would like to use the TWebBrowser Component in a complete new instance independently from the instance of the Internet Explorer. Is there a way to start TWebBrowser (e.g. in private browsing mode) ...
0
votes
1answer
193 views
TwebBrowser Zoom/Gesture is not working for firemonkey/iOs in XE4 when open a pdf file
I want to display PDF within iOS application, so far the only way I find is open it in TwebBrowser.
A.It is displaying in "fit to page width" zoom as default
B.There is no "zoom" function
...
-2
votes
2answers
98 views
How can I extract text from flash inside a twebbrowser in Delphi XE2
I try to make a program to catch data from a homepage which shows text inside a flash object.
It doesn't work with InnerHTML since the text is inside the flash object.
Is there any way to do this? ...
-1
votes
2answers
154 views
How to fill a web form inputs using delphi XE3?
I need to know how to fill an web form using Delphi XE3? I have a web form with user name and password, so how to fill it programmatically?
The page is http://batelco.com/portal see only two inputs ...
4
votes
1answer
106 views
How to interop with TAutoIntfObject object from a TWebBrowser control?
I'm having a TWebBrowser control which implements IDocHostUIHandler to extend the control of a JavaScript interop through the IDispatch container. This works fine, except that I don't know, how to ...
0
votes
1answer
89 views
Delphi, Integrate or combine or join cookie to internet browser
I am using Mozilla firefox to logged-in a particular website, and there are times that I used Internet explorer to logged-in also in the same website.
I'm also using TWebbrowser from ...
-1
votes
1answer
175 views
How do I get TWebBrowser in Delphi XE2 to run?
The TWebBrowser component in Delphi XE2 seems to be seriously buggy. Is there some sort of code I have to run in order to instantiate it in some special way?
Create new Delphi project
Drop a ...
2
votes
1answer
94 views
OleInitialization in Delphi
Are there any downsides to adding OleInitialization calls to the main form of a project? eg:
initialization
OleInitialize(nil);
finalization
oleuninitialize;
(added to the main form of the ...
1
vote
2answers
173 views
Printing from TWebBrowser
I am using the following unit to display - and print - HTML code via a TWebBrowser which is displayed in a non-modal dialog. In my production program, the following code works under Windows-XP but ...
0
votes
0answers
128 views
How can I resolve my issue with TWebBrowser Post data?
I have a issue when using TWebBrowser to Navigate and post data to a web server.
What happens is that when I initially setup the post data and navigate to the page all the information passes over ...
0
votes
3answers
279 views
finalization section not being run in a dll
I am trying to create a DLL in Delphi XE2 which will popup a form with a TWebBrowser component in it. When the WebBrowser.Navigate2 method is called the finalization section of the unit (or any unit) ...
3
votes
1answer
178 views
Using Tidhttp with Twebbrowser
I am using the tidhttp control to speed up the loading of a webpage in a Twebbrowser. Navigating to the url is slow so thats why I don't use it(WebBrowser1.Navigate('some_url_here')). Here is how i do ...
5
votes
1answer
380 views
delphi webbrowser: how to prevent or hide that javascript error?
I am running TEmbeddedwb and I got a javascript timeout error while navigating on that TEmbeddedwb .
(I do not have this error while running in my internet explorer !)
The browser asks me if I ...
1
vote
1answer
97 views
How to detect when a website which uses AJAX is completely loaded?
For a website, which doesn't use AJAX I'm using OnDocumentComplete event to know when the page loading is complete.
My question is, how can I detect when website, which uses AJAX requests is ready ...
0
votes
2answers
164 views
Getting Cookie from TWebBrowser
Trying to download a file using indy,(post to asp save the excel response) but running into errors, using wireshark the request is missing cookies.
Trying to grab the cookie out of a Twebbrowser ...
1
vote
1answer
195 views
twebbrowser download in popupwindow
Looking to get my delphi app to log into a website, navigate to a page, and automatically download certain files, the solution at How do I keep an embedded browser from prompting where to save a ...
2
votes
1answer
245 views
Why does rendered content of a TWebBrowser saved as JPEG loses quality?
I use the procedure below to create a JPG file from a TWebbrowser
That is resulting in a JPG looking OK
Then I load this JPG to a TcxImage control from DevExpress in order to print it. And that ...
0
votes
0answers
91 views
Get element objects covered by IHTMLTxtRange
I'm using a MSHTML webbrowser (via TWebBrowser in Delphi) to edit HTML. When the user selects a part of the document I can get the selection and from that an IHTMLTxtRange.
But I need to get a list ...
5
votes
2answers
390 views
Delphi Twebbrowser change value of textbox.
I'm have some difficulty changing the value of a textbox in twebbrowser. I have tried WebBrowser1.OleObject.Document.getElementById('verification_control_0').value := 'mytext'; and a few other methods ...
2
votes
1answer
374 views
HTML source code from TWebBrowser - How to detect Stream encoding?
Based on this question: How can I get HTML source code from TWebBrowser
If I run this code with a html page that has Unicode code page, the result is gibberish becouse TStringStream is not Unicode ...
3
votes
1answer
289 views
How to get all IHTMLStyle attributes of an IHTMLElement?
I use the below code:
const
HTML_DOC =
'<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">' +
'<BODY><P id="p1" style="width: 440px; height: 344px; margin: 3px ...
0
votes
1answer
150 views
TWebbrowser causes AV - what to look for
I have a TWebbroser on a form wher I want to hide the scrollbars
On WebBrowser1DownloadComplete I put WebBrowser1.OleObject.document.body.scroll:='no';
But this results in an AV.
If I click continue ...
0
votes
0answers
73 views
Backspace and Arrow Keys do not work when launching a Silverlight (in-browser) application from Delphi 2010 inside a TWebBrowser component
I am using Delphi 2010 and Silverlight 4.0.
I am launching a Silverlight (in-browser) application inside a Delphi 2010 TWebBrowser component.
The application launches fine and works as intended; ...
1
vote
2answers
195 views
How to bypass Internet Explorer Enhanced Security when using embedded WebBrowser control?
i have a native Windows application that embeds the WebBrowser, i.e.
CLSID_WebBrowser
8856F961-340A-11D0-A96B-00C04FD705A2
Shell.Explorer.2
Unfortunately, when running on Windows Servers, the ...
4
votes
2answers
264 views
Emulate Keyboard Typing
How can I emulate typing of a real human in either TWebBrowser or TChromium. It can be either of those two.
6
votes
1answer
420 views
How do I save the contents of TWebBrowser, including user-entered form values?
is it possible to save entire document loaded in Webbrowser (in Delphi) as a ordinary HTML file with new values (I mean values entered by user in html's forms this document)?
I need this for reading ...
-4
votes
1answer
233 views
how to click on popup button with delphi 6 twebbrowser?
I am writing my auto submit tool on Delphi 6.
I am using TWebbroswer component to insert data to different controls.
However I need to be able to click on OK button on a pop-up window (this button ...
1
vote
1answer
460 views
Image from TWebBrowser to TPicture
How to get an image that has been downloaded in TWebBrowser to a TPicture without copying it to clipboard or looking in to cache contents.
1
vote
2answers
381 views
GetElementByClass?
How can I get InnerText from Element with Class Name?
<div class="SomeClass" style="text-align: left; display: block;"></div>
<div class="SomeClass" style="text-align: left; display: ...
0
votes
1answer
240 views
Check if Element with ID has a value
How to check if "Some text value" in element p with Id = "SomeID" is there?
<p id="SomeID" class="error" style="display: none"></p>
<p id="SomeID" class="error" style="display: ...
0
votes
1answer
330 views
OLE Control window handle error with WebBrowser and Delphi 2007
I have run into an issue a couple of weeks ago that appear to have no logical explanation. I'm building an application with Delphi 2007 using AlphaControls and a WebBrowser component placed on a form. ...
1
vote
1answer
324 views
downloading csv files in delphi
Using Indy Clients (IdHTTP) I can download csv files, if I know the actual web address of the file by using the following code, which works perfectly (original code):
procedure ...
1
vote
2answers
352 views
A GUI-Less Browser to scrape with
I'm writing a tool to get info from several websites, all require me to log in. My normal approach is to follow the requests and responses in Fiddler or alike, and follow that direct path.
However, ...
0
votes
3answers
466 views
Pressing Buttons on a web page via Delphi
Ex1: WebBrowser.OleObject.Document.GetElementByID('ID HERE').Click;
Ex2: < input type="submit" VALUE="Login" >
The above two examples are for pressing buttons on web pages via Delphi. Ex2 works ...
0
votes
1answer
153 views
How can I find the ComServer for a TWebBrowser Asynchronous Pluggable Protocol
I've currently implemented this demo code for an APP sucessfully, http://www.jasontpenny.com/blog/2010/03/23/custom-protocol-handler-in-delphi/, However it seems to only work if the application is a ...
2
votes
1answer
225 views
Is there an equivalent to Chromium Embedded's OnResourceResponse in TWebBrowser? (Delphi)
I'm currently trying to view an image being loaded through a Res://imagename at the point its loaded. In Chromium with a res handler I've been able to do this through the ResourceResponse event ...
3
votes
1answer
222 views
TEmbeddedWB/Webbrowser set local zone security to accept loading local SWF file does not work but do work in 'real' browser
Story:
I developing a game that I want to deploy to many platforms using a webview/embedded browser for the target os. Write once, deploy many times ;-)
The game itself is developed with use of ...
0
votes
2answers
270 views
TEmbeddedWB / TWebbrowser mouse lag (object drag and drop)
I use a TEmbeddedWB in a Delphi project to display a HTML5/CSS3/Javascript game fullscreen. It uses IE9 embedded to render the page. That is working fine but i discover some lag, speed difference ...
5
votes
1answer
849 views
How to select <option> item by the “value” attribute in <select> drop-down list?
In my Delphi application I'm using a TWebBrowser control, where I have loaded an HTML document, containing a <select> element (drop down list) with a few <option> items (drop down list ...
2
votes
1answer
209 views
TCppWebBrowser vs TWebBrowser
What is the difference between TCppWebBrowser and TWebBrowser components in C++Builder 2010 and above? There is no mention of TCppWebBrowser in the help, where TWebBrowser has regular help section.
...
1
vote
0answers
51 views
Delphi XE2 winapi.urlmon.CoInternetSetFeatureEnabled not found? [duplicate]
Possible Duplicate:
CoInternetIsFeatureEnabled in Delphi2010
I am trying to disable the annoying click on navigate sound in twebbrowser control but i can't seem to see the winapi.urlmon. ...
0
votes
0answers
341 views
Authentification on HTTP proxy in Delphi XE
I need a little help:
uses wininet, urlmon;
....
var proxy_info : PInternetProxyInfo;
....
begin
user:='mycooluser';
pass:='mycoolpass';
UserAgent:='MSIE';
New (proxy_info);
...
2
votes
2answers
312 views
opening page in webbrowser
I am using TWebBrowser to open a site.
When it opens, it comes with the message that the webbrowser (ie 9) is out of date and that I should replace it. This is the only time I get it.
How can I ...
2
votes
1answer
239 views
Parsing a flash json response (Delphi/ TWebbrowser)
I have a flash game and get updates after pressing a button. Only a table inside the flash gets updated and the changes are not shown in the html source (well, its flash after all). Logging with ...
3
votes
2answers
488 views
WebBrowser and OLECMDID_SELECTALL
When I open the Google web page using:
WebBrowser1.Navigate('http://www.google.com.au/advanced_search?hl=en');
it opens with the cursor in the edit box.
So when I use:
...
2
votes
2answers
433 views
Send OnClick message to TWebBrowser
How can I send a mouse onclick message to TWebBrowser in Delphi? The OnClick message must be sent to specific control appears in website.
for Example i have a radio button appears in the website ...
1
vote
1answer
1k views
TWebBrowser - Trying to fix the “Invalid floating point operation” error
The TWebBrowser component has an error as described here [IE9] 'Floating point division by zero' occurs with WebBrowser. The solution is to call a procedure that will disable all division by zero ...
0
votes
1answer
499 views
Delphi: How to check if webbrowser has successfully loaded the page?
I have a simple code:
WebBrowser1.Navigate('www.foo.com');
But of course sometimes the browsing fails and the browser displays the error message.
How can I catch when this happens?
I want this so ...
2
votes
1answer
138 views
Prevent TWebBrowser from accepting dropped files
I have a form that accepts files to be dragged and dropped on, as well as a TWebBrowser control placed on a TPanel control on the same form.
The main thing is that, when I drop a file on the form, ...

