Questions tagged [twebbrowser]

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.

476 questions
0
votes
1 answer

Is there any web browser component for C++ Builder 6 except IE?

Hello is there any commercial or free web browser component to work with C++ Builder 6 except IE that is included ?
AkisC
  • 817
  • 2
  • 12
  • 27
0
votes
0 answers

Set TEmbeddedWB to ViewOnly mode?

Is it possible to set TEmbeddedWB to a ViewOnly mode? I.e., the user cannot click on links, the mouse pointer does not change when hovering over a link, etc.
user1580348
  • 5,721
  • 4
  • 43
  • 105
0
votes
2 answers

Delphi 7 - source of web page (gzipped) - WebBrowser

How to put the source code of a website in memo1 when it is compressed with gzip. I already used this metod to obtain the source: function GetWebBrowserHTML(const WebBrowser: TWebBrowser): String; var LStream: TStringStream; Stream : IStream; …
Tazman666
  • 1
  • 1
0
votes
1 answer

Delphi - Change JavaScript from a loaded page in TWebBrowser

How can I change JavaScript from a page already loaded in a TWebBrowser component? I tried something like this: var ElElem: IHTMLElement; begin newJSfunction := 'function onclick(){alert("ok");}'; ElElem := GetButtonFromBrowser; …
user3232681
  • 11
  • 1
  • 5
0
votes
0 answers

delphi xe - twebbrowser change hyperlinks's title font

In DELPHI TWEBBROWSER hyperlinks' title attribute values are shown as hints using the Windows system font for tooltips. Is there any way to set custom fonts for hyperlinks' tooltips in HTML?
Avrob
  • 533
  • 2
  • 10
  • 20
0
votes
1 answer

Rad Studio, Firemonkey ios TWebBrowser seems above all objects

I'm using Firmonkey (Rad Studio) for an IOS app. I'm using a TWebBrowser object but this seems to stay above all objects. I tried to right-click the TWebBrowser object and click Send to Back, but it did not. Does anyone know any solution?
yilmazca
  • 19
  • 1
  • 5
0
votes
1 answer

Reading response data from TCppWebBrowser in Borland C++Builder

How to I access the data returned on a web page using the TCppWebBrowser component in Borland C++Builder 6.0? I have succeeded in posting data using the sample at: http://edn.embarcadero.com/article/27519
selwyn
  • 1,184
  • 2
  • 10
  • 20
0
votes
0 answers

Delphi 2007, Export HTML table from TWebbrowser to Excel

I am trying to copy the data from a table inside a TWebBrowser into excel but with no success. With the first command I am getting everywhere inside the excel the word "object" & with the second command I am getting the same value everywhere inside…
VaVel
  • 69
  • 3
  • 13
0
votes
0 answers

TWebBrowser in Delphi XE2 ignores box-sizing CSS

I'm using TWebBrowser to preview generated HTML pages and was using the CSS box-sizing:border-box to specify the box model and trying to use display:table display:table-cell vertical-align:middle to achieve vertically aligned text. The problem is…
0
votes
0 answers

TWebBrowser with IE8 and IE10

I'm using Dephi to automate mass user account. With WindowsXP3 and IE8 I can use mass user account. Example: I have 2 TWebBrowser, the WebBrowser1 uses user1,pass1 account. the WebBrwoser2 uses user2,pass2 account. Using IE8 I can do this. But with…
XenKid
  • 161
  • 3
  • 16
0
votes
1 answer

EmbeddedWB TAB key

I use EmbeddedWB in edit mode and need to insert tab (4 *  ) when user presses TAB key. I've trapped OnKeyDown event and did the following: if (Key = VK_TAB)…
Coder12345
  • 3,431
  • 3
  • 33
  • 73
0
votes
3 answers

Suppress the “are you sure you want to leave this page” popup in the Delphi TWebbrowser control

I have an Delphi application that uses TWebbrowser component to automate navigation to another web application we have. My problem is that sometimes IE shows the infamous 'Are you sure you want to leave this page' message and when this happens, my…
delphirules
  • 6,443
  • 17
  • 59
  • 108
0
votes
1 answer

Get HTML from existing instance of Internet Explorer from Delphi

On a specific website, If I open a new instance of IE, I'm already authenticated, as long as there at the same time is another open instance of IE where I previously have logged in. If I open a tWebbrowser from Delphi, I'm not authenticated. Since…
Peter
  • 11
  • 2
0
votes
0 answers

TWebbrowser IDM_REPLACE shows a blank dialog

I have IE 9 and Delphi XE2. I am executing IDM_Replace to show the replace dialog for mshtml editable content in a twebbrowser. The dialog opens but there is nothing on it. It is blank. The IDM_FIND command works as it should. What could be…
Ali
  • 309
  • 1
  • 3
  • 12
0
votes
1 answer

geolocation in Delphi7 TWebBrowser

I've made a simple web-service that returns geolocation, and it works just fine when it requests from IE10, Chrome, Firefox. (all of them are latest versions) But, if I call same request from Delphi's (ver 7) TWebBrowser, there is response: "request…