Hi everyone, I'm using a BHO that saves current page contents or selection in the .txt and .mht formats. Some of the functionality stopped working when I moved...
10104
khelouiati
Dec 10, 2006 4:07 pm
i would like hide scroll bar in the webrowser whith this code WebBrowser2.OleObject.Document.Body.Style.OverflowX := 'hidden39;; ...
10105
Warrick Wilson
warrick_wilson
Dec 14, 2006 3:04 am
How come LoadFromString() doesn't work the same as Navigate() when I'm essentially dealing with a file on my hard disk? In my case, I was trying to use the...
10106
malvernbry
Dec 20, 2006 6:02 pm
Hi all, Searching through the old messages this question has been asked (in different ways) before but never with a clear answer. I suspect because the...
10107
Lubas
novofermat
Dec 30, 2006 5:36 pm
How i Make to get the selected element in the webBrowser (in designmode) and change some properties? I need to change properties from selected TABLE. Example:...
10108
Lubas
novofermat
Jan 2, 2007 12:29 pm
Hello, I need to load image from TBitmap (or Stream), not in src property (from url or hd file) example WebBrowser1.OleObject.Document.Images.Item(li).Src :=...
10109
nel.herrera
Jan 5, 2007 10:31 pm
Hi all, I´m tryng to autofill all the fields of all Forms in TWebBrowser document using the following code from ...
10110
mr_delphi_developer
mr_delphi_de...
Feb 1, 2007 5:38 pm
In order to fill in the input of type FILE in an HTML page, you have to do three things. 1. You first have to give the Webbrowser forcus. To do that, you must ...
10111
mr_delphi_developer
mr_delphi_de...
Feb 1, 2007 5:39 pm
... for "Focus"). Here is the key: // this is the first key to getting this done with WebBrowser1.Application as IOleobject do DoVerb(OLEIVERB_UIACTIVATE, nil,...
10112
mazluta
Feb 5, 2007 9:37 pm
Hi there. i want to use WebBrowser As WORD EDITOR. i load doc1.doc + some code in navigatecomplete2 procedure TAddMichtavFrm.reLetterNavigateComplete2(Sender:...
10113
Lenif
lenif7780
Feb 7, 2007 6:07 pm
Hi all I don't understand what's happening I create a application with a WebBrowser. I use this application to connect to a website containing a phpbb forum. ...
10114
Myles Wakeham
vladman992000
Feb 12, 2007 9:56 pm
FYI, CodeGear's 'The Delphi Hour' now has a Podcast RSS feed, so you can listen to the weekly show on your iPod, etc. without having to jump through hoops to...
10115
danielpa2h
Feb 13, 2007 10:05 am
Hi, when i intercept the onNewWindow3 on my Webbrowser component the url don't contains the info about the anchor that i'm navigating to and only takes me at...
10116
forenheini
Feb 13, 2007 10:06 am
HI! I´m an intermediate beginner in delphi and need some of the funktions of the TWebBrowser. I collect many information on the web about the task to save a...
10117
chentsov_a
Feb 22, 2007 3:24 pm
Thank you and you web-site! Now I know how to auto fill form`s elements!!! But TextArea do not have VALUE property. Help me! Show me the way for autofilling...
10118
Aaron DC
toolkit@...
Feb 22, 2007 8:08 pm
Have a look at document.getElementByID().InnerHTML. HTH Aaron...
10119
chentsov_a
Feb 26, 2007 4:17 pm
Naw i do it this way ========================================= ovElements := Document.Forms.Item(0).Elements; for i := 0 to ovElements.Length - 1 do if...
10120
Nelson Herrera
nel.herrera
Mar 2, 2007 7:20 pm
I do this way: //count forms on document for i := 0 to WebBrowser.OleObject.Document.forms.Length - 1 do begin FormItem :=...
10121
jamboon66
Mar 4, 2007 6:03 am
Hello MASTER. I need your help to get text data or saving file from URL like 'http://secure.efxnow.com/Rates2/ENG/Rates.aspx' or ...
10122
jscoulter61
Mar 4, 2007 6:04 am
Hi All. Well, I am not sure if my situation is unique, and I am sure someone would have done this before. I have an app that downloads an ASP page. Inside the...
10123
Mark Rickan
thx1138_ca
Mar 5, 2007 8:21 pm
I posted this on www.bsalsa.com but thought that someone here may have come across a similar problem: I'm using an EWB component in a modal form that is...
10124
nel.herrera
Mar 5, 2007 8:43 pm
Hi fiends: I have to develope an application to control the use of the internet. I want to treat an instance of Internet Explorer as a TWebBrowser instance. ...
10125
Fotis Kokkoras
fkokkoras
Mar 10, 2007 1:26 pm
Hi, I am using the web browser control and want to do "things" with a web page after it is fully downloaded. documentComplete is an event that is supposed to...
10126
brice_mestressat
brice_mestre...
Mar 14, 2007 11:40 am
Hi everybody, I'm using a TWebBrowser for displaying a local html page. In this html page, there are a button and a vbscript. The vbscript is executing when...
10127
kn0wland
Mar 23, 2007 4:13 pm
Hello, I wonder what the best way is to filter out or force style attributes on a document. Example: I have a html document and I want to have the same font...
10128
kn0wland
Mar 23, 2007 4:23 pm
you can walk thru the IHTMLElements the function Get_anchors of IHTMLDocument2 gives you. example: var Doc: IHTMLDocument2; EC: IHtmlElementCollection; ...
10129
egloo_kz
Mar 26, 2007 10:25 pm
Hiyo, Vinicius! Try the code below: In "interface" section write this: type TObjectProcedure = procedure of object; TEventObject = class(TInterfacedObject,...
10130
chentsov_a
Apr 5, 2007 6:23 am
I have a form with two webbrousers on it. And i want to login on a website as two different users at the same time. But after logining in first webbrouser in...
10131
spacefd
Apr 11, 2007 3:45 pm
Hi, I am wondering if it's possible to make the TWebBrowser39;s background transparent? which it will only display the html content and nothing else. That would...
10132
kacper.kwapisz
Apr 11, 2007 4:08 pm
Hello, I've problem with downloading a file by TWebBrowser. TWB is loading .csv file (which is text file), but won't open it - TWebBrowser is opening File...