Hello, I set DOCHOSTUIFLAG_SCROLL_NO to disable the scrollbars of a TWebBrowser, but when I visit https://mail.google.com/mail/ and log in, the vertical...
Hi All, I have the folowing problem. I have made a BHO and it works fine. However, every time when I get a new window from for example a window.open script no...
I need to highlight text in Internet explorer, so used something like procedure TForm1.SearchAndHighlightText(aText: string; tr: IHTMLTxtRange); begin if...
Am trying to get some code working from:- http://bdn.borland.com/article/0,1410,26574,00.html //My first post so be gentle with me please. The code wont...
Hello everyone, I'm new here, i'm developping an IE toolbar in delphi and i was very happy to find this discussion group ... I just finished a first version of...
//Remember that you must have Variants and MSHTML in the uses cloud. type ..... lbLinks: TListBox; private { Private declarations } procedure WB_GetLinks(WB:...
I use Twebbrowser and TwembeddedWb with navigate and navigate2. I have also tried FNavigateOptions :=navNoHistory or navNoReadFromCache or navNoWriteToCache; ...
procedure NavigateToURL(const URL: string); //Add this to your private section in your form procedure TForm1.NavigateToURL(const URL: string); var Flags:...
Yes, Inno setup offers a register server option. _____ MediaModus is a web design & development company that also specialises in post-production marketing. ...
I tried with (DefaultDispatch as IWebBrowser2).Silent := true according to MSDN reference that IWebBrowser2.Silent "Sets or retrieves a value that indicates...
A-ha! DLCTL_SILENT has to be set in IDispatch.Invoke pvarResult. But - where is DLCTL_SILENT defined? Or - what is the value of this constant?? Please help!...
... No success :-( I found the definition in EmbeddedWB, but everything goes like before. The warning message is still live! Help! (Am I discussing with...
Following recomendation on http://www.euromind.com/IEDELPHI/embeddedwb/tips.htm I put this on my form: procedure TForm1.WMActivate(var Msg: TWMActivate); var ...
You could do it that way i spose. It's a bit sloppy but it might work. While you are on those lines you could always get the handle of the ok button and send ...
I have got a strange problem (well strange to me, because I can't figure out why this is not working) When I am using my default browser firefox ver 1.0.6 and...
I tested the link here that you provided in our Commercial Project that we are updating, And it worked with no problem. Could you make up a Demo project...
There are several kinds of warning messages. Every message fire and uses different terms. for example: For scripts errors silent:= true will be enought but,...
Dear all I develop a web browser use delphi-webbrowser, now i want to download only Pure Text(html) file exclude any picture/image/music/avi...files. could you...
Hello Glenn, thank you very much any way!!! now i develop a web borwser use delphi's TwebBrowser, I want to just download pure html source code exclude any...
Hi Andy, If I were you I'd swith to the TEmbeddedWB. It has lots of more options than Twebbrowser. Latest versions can be found here in the files section. With...
... that we ... with this ... where the ... Thanks for your offer to try checking this out. However I forgot to tell, that the link I provided only works...
Dear: Lucas Van Staden ... and ... I used this code as a test, and I have to say that only did I get Have fun using it, but so did my son. OK. Everyone, Give...
Hi, not sure if it's helpful to you. i used following codes to download a url and save it to string directly, without open the message window. MyStr:String; ...
yes I know... But I am only interested in NoNavHistory and var Flags: OleVariant; urlole: OleVariant; begin Flags := navNoHistory; www.Navigate(url,Flags);...