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
-1
votes
1 answer

How load a base64 encrypted url in a TWebBrowser or TImage?

I have this url encrypted in base64 that is a animated QRCode. How i can load it in a TWebBrowser (or TImage)? Thanks in advance. Edit: Here was my attempt, but without success: uses IdHTTP, IdSSLOpenSSL, GIFImg, ClipBrd; type TForm1 =…
FLASHCODER
  • 1
  • 7
  • 24
-1
votes
1 answer

How can i change adsense code TWebbrowser object after document complete

How can i change adsense code TWebbrowser object after document complete i try change div innerhtml but i cant my see adsense commercial how can do this my code block doc := ie.Document as IHTMLDocument3; doc2 := ie.Document as IHTMLDocument2; di…
-1
votes
1 answer

Delphi TWebBrowser connect to a local device fails

Hello I have a very simple Twebbowser program. I want to access a device on my local network which is in the IP range 192.168.192.xxx. I can reach the device via my chrome webbrowser but the browser in the program throws the error page: "Can’t…
user741461
  • 49
  • 7
-1
votes
2 answers

Get Content of Website after all Scripts are completed

I am using Delphi 10. I try to get the content of this website : leforem.be. I attempted using a WebBrowser control but was not able to get the full source which is generated by a Script on the page. Someone has an idea ? PLink :=…
David K.
  • 39
  • 9
-1
votes
1 answer

how to use TEmbeddedWB or TWebbrowser in separate instance?

Possible Duplicate: how to use the TWebbrowser on a diffent cache? i wanted Twebbrowser or TEmbeddedWB to open in separate instance. like login into multiple accounts. i think its done with cookies, anyone could help me?
XBasic3000
  • 3,418
  • 5
  • 46
  • 91
-1
votes
1 answer

How we can change src attribute to have there only relative paths?

We have a DelphiXE program that creates HTML documents using TWebBrowser and stores only their bodies in sql database. Now we want to add images into the documents. When we add an image then in src attribute we…
Avrob
  • 533
  • 2
  • 10
  • 20
-1
votes
1 answer

Delphi Twebbrowser post upload file fail

I try to upload files with twebbrowser in Delphi 10.1 Berlin . Everything is ok but when i try to load unicode files, delphi is giving me an error "Overflow while converting variant of type (Word) into type (Byte)". How i can fix for unicode files? …
Dragos
  • 1
  • 2
-1
votes
1 answer

GMMap zooming with mouse wheel.

I would like to know how zooming the map with mouse wheel on a GMMap into a TWebBrowser D10. Thanks for help.
-1
votes
1 answer

How to open a new TWebBrowser on a script?

I have a website (I cannot change) having this script: function openNew() { window.open("/help?aide=77", "aproposde", "toolbar=no, location=no, directories=no, status=yes,…
yarek
  • 11,278
  • 30
  • 120
  • 219
-1
votes
1 answer

TWebbroser freezes application UI - load a HTML file from disk

I did already some google research on this subject like here stackoverflow but did not find the correct answer for my problem. My application is running fine on some client PC's but not on all systems we would like to use our tool. I guess my…
user1769184
  • 1,571
  • 1
  • 19
  • 44
-1
votes
1 answer

Webrowser1 in a Procedure Delphi6

When I call WebBrowser1.Navigate('www.google.com'); from a Button OnClick event, eg: procedure TForm4.Button1Click(Sender:TObject); begin WebBrowser1.Navigate('www.google.com'); end; The web page shows up in WebBrowswer1. But, if I make my own…
Peter James
  • 237
  • 1
  • 6
  • 18
-1
votes
1 answer

How to load map with Twebbrowser

The map in question is here, map. I can load it from any browser such as Chrome, but when I try to load it from my Delphi application with TWebBrowser, it's blocked by google. It says API key needed. I load it simply with TWebBrowser like this…
-1
votes
2 answers

setTimeout not working in injected JavaScript?

I have an external JavaScript file mypapopup.js with this content: function mypopup() { alert("Hello stackoverflow") } In a Delphi XE8 VCL Form application, with TEmbeddedWB.ExecScript I inject this JavaScript into a loaded document in…
user1580348
  • 5,721
  • 4
  • 43
  • 105
-1
votes
1 answer

Access Violation on use OleVariant and TWebBrowser in a Thread

i try control a TWebBrowser by OleVariant in a Thread, but i get Access Violation Error. The error only occurs when I use the following code in Delphi XE6: var Elements: OleVariant; begin Elements :=…
user3739543
-1
votes
1 answer

Local web page don't works into TWebBrowser

I have a web page into my local PC and I need to show it into a TWebBrowser. It shows a heatmap like this. When I show this page into IE, it is well displayed (it shows the heatmap), but when I load it into a TWebBrowser, it only display the map,…
cadetill
  • 1,552
  • 16
  • 24
1 2 3
31
32