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 get index of HTML Table for given element using delphi

I'm using Delphi 2009 and I want to find index of HTML table which contains given element. So, in the application, which I created, I use web browser to see the web page. I want to select element from this page and want to get Index of table which…
Ulphat
  • 734
  • 1
  • 7
  • 26
-1
votes
1 answer

delphi using TWebBrowser without using the TForm

I want to develop a COM DLL in delphi that will internally create a window or form and then display the TWebBrowser navigation on that. The reason of this is I don't want to use the TWebbrowser control to be drag on each of my client app. This…
user2724058
  • 318
  • 5
  • 20
-1
votes
2 answers

Modify below function to select item from dropdown

I have the following Delphi code to fill form on a TWebBrowser: procedure SetFieldValue(theForm: IHTMLFormElement; const fieldName: string; const newValue: string); var field: IHTMLElement; inputField: IHTMLInputElement; …
modzsi
  • 185
  • 2
  • 12
-1
votes
1 answer

Delphi webbrowser clone video include frame size

I dont know how to explain this, but here it goes. Have you seen a delphi code that uses twebbrowser and displays only the frame(height and width) of the video? I meant if I browsed in youtube the small window of the twebbrowser will resize itself…
XXXXXXXXXXXXXX
  • 155
  • 1
  • 3
  • 15
-1
votes
1 answer

New instance in TWebBrowser

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) so it would have it's own instance of cookies,…
Ben
  • 3,380
  • 2
  • 44
  • 98
-1
votes
2 answers

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 user name and pass so how to fill and pass them ?
Dreamer64
  • 923
  • 2
  • 13
  • 30
-1
votes
1 answer

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 TWebBrowser component onto the form. In…
Daisetsu
  • 4,846
  • 11
  • 50
  • 70
-2
votes
2 answers

How can I Prevent these dialogs from TWebBrowser

I have a problem that is really annoying when I use Twebbrowser on my application, after few minutes of surfing the web , some ads popup and when I try to leave them it shows me this message : Are you sure you want to leave this page? The…
M0HX
  • 31
  • 7
-2
votes
2 answers

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? Help will be apreciated.
Peter
  • 11
  • 2
-3
votes
2 answers

Error message "WebBrowser not assigned" on a double click

I am using Delphi XE4 with a Google Maps library. I created a sample application which the customers address on dbgrid. On the dbgrid event I did: procedure TForm1.DBGrid1DblClick(Sender: TObject); var endereco : string; pesquisarendereco :…
Anderson Muniz
  • 33
  • 1
  • 1
  • 7
-4
votes
1 answer

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 appears after a javascript confirm command). Is…
1 2 3
31
32