Re: Help with twebbrowser and html button click detection Programming Software Development by SalmiSoft …. Add a status bar and set SimplePanel TRUE. Add a TWebBrowser (and set Align alClient). Add this for the form's… New To Pascal and Delphi - need help Programming Software Development by ponik … OleCtrls, SHDocVw_TLB, StdCtrls; type TForm1 = class(TForm) WebBrowser1: TWebBrowser; Button1: TButton; private { Private declarations } public { Public declarations… OldCreateOrder = False PixelsPerInch = 96 TextHeight = 13 object WebBrowser1: TWebBrowser Left = 160 Top = 136 Width = 300 Height = 160… Re: New To Pascal and Delphi - need help Programming Software Development by dugjohnson … my application [/quote] Application.Terminate; [quote=ponik;376994] 2. The TWebBrowser: - it's url must be page.htm located in the… to deny keyboard shortcuts like F5, Alt + arrow etc. [/quote] TWebBrowser has a ton of properties. I think you want MenuBar… Re: New To Pascal and Delphi - need help Programming Software Development by dugjohnson … a parameter to the Navigate method of TWebBrowser, just like the Microsoft Explorer object which TWebBrowser is an encapsulation of....sort of… Re: New To Pascal and Delphi - need help Programming Software Development by ponik … the net [URL]http://www.cryer.co.uk/brian/delphi/twebbrowser/twebbrowser_properties.htm[/URL] and write it directly into source, it… Get the URL Programming Software Development by 2Two I'm trying to use OnNavigateComplete2 to get the URL of the current page TWebBrowser is on. Like if I click on a link to google.com the TEdit should change to google.com. It should do this for every new page. How would I accomplish this? Help with SHDocVw and Silverlight Programming Software Development by Endurance Man … glimmer would be nice :(. I have a form with a TWebBrowser on it coded in Delphi7 as a Win32 app. If… Re: Help with SHDocVw and Silverlight Programming Software Development by FlamingClaw if you trying the navigate2 method (TWebBrowser)? Wait for page to load Programming Software Development by casper_wang …: TImage; Panel2: TPanel; PageControl1: TPageControl; TabSheet1: TTabSheet; Panel3: TPanel; WebBrowser1: TWebBrowser; CoolBar1: TCoolBar; Animate1: TAnimate; ToolBar1: TToolBar; png_btn_home: TPNGButton; png_btn_back: TPNGButton… Re: Wait for page to load Programming Software Development by casper_wang …; begin { TForm1.WebBrowser1DocumentComplete } CurWebrowser := pDisp as IWebBrowser; TopWebBrowser := (Sender as TWebBrowser).DefaultInterface; if CurWebrowser=TopWebBrowser then begin ShowMessage('Document is complete… Opening Web page and control elements of the web. Programming Software Development by leinadbg Hello, i am searching for way, to open web page with C++ and after that to control its elements. I know that i can do this in Delphi, with WebBrowser.OleObject.Document and TWebBrowser. Do you know similar way that i can use in C++? Re: Opening Web page and control elements of the web. Programming Software Development by rati … can do this in Delphi, with WebBrowser.OleObject.Document and TWebBrowser. Do you know similar way that i can use in… Multiple http requests. Programming Software Development by gravexxx … not showing all the code it is not necassary. TheInternets : TWebBrowser; I wrote a program to navigate to a server that… Re: Multiple http requests. Programming Software Development by pritaeas It depends a bit on what you want to do with the results. If you want to show them all, you could use multiple TWebBrowser's and let each one get a page. Easy Webbrowser Writing Guide 2011 Programming Software Development by delphi7 …]1. Start a new project[/B] [B]2. Drop a TWebBrowser component[/B] [B]3. Drop a TEdit component[/B] In… Re: Easy Webbrowser Writing Guide 2011 Programming Software Development by delphi7 … "EditMode" for instance[/B] [B]4. Select the TWebbrowser component and move to the tab events in the property… Re: editing another application Programming Software Development by hallmat … a ie browser so if i try to call the Twebbrowser hmm i will try that thanks for your advise as… need a little help uses ActiveX; [CODE]procedure WBFindDialog(AWebBrowser: TWebbrowser) ; const CGID_WebBrowser: TGUID = '{is this my Target?}'; HTMLID_FIND = 1; var… Re: editing another application Programming Software Development by LizR … call as it is almost certainly an instance of IE (TWebbrowser) but, you cant necessarily get at it. Why not just… how to load a word documnet into a twebbrowser... Programming Software Development by squidd plenty of examples on the net for I think pascal version .00000011 hehe I cant seem to get it to work properly. Better yet, a component to load binary files into a memo, listview, richedit, etc would be even better. Any ideas? Ive been looking into this for a few days with no luck. All the delphi free components I have found thus far … Re: how to load a word documnet into a twebbrowser... Programming Software Development by Duoas The stuff on the net should generally work just fine. You might have troubles using components written for D3 or earlier, but most of the stuff I've seen out there are good for at least D4. A DPK file is how people usually distribute stuff for Delphi. In the help documentation search for a page titled "About Packages". It will tell you… Re: how to load a word documnet into a twebbrowser... Programming Software Development by squidd Thanks Douas, I'll keep on trying. Help with twebbrowser and html button click detection Programming Software Development by Simon180 Am having a awful time trying to get this to work I googled it and even asked few friends about it, but it seams it more difficult than I expected it to be. basicly what am trying to do is capture if or when a user clicks on a button within a html page as follows: <button type="button">Click Me!</button> then for my … Re: Help with twebbrowser and html button click detection Programming Software Development by Simon180 Thanks mate Re: New To Pascal and Delphi - need help Programming Software Development by radu84 1) you have put here only the basic code of an delphi form 2) take a look on delphi's examples, especially on coolstuf. from what i know, delphi came with 1 or 2 webbrowsers examples Re: New To Pascal and Delphi - need help Programming Software Development by dugjohnson Also, why are you working in Delphi 7? Turbo Explorer is available for free, why not work with that and be more current? Re: New To Pascal and Delphi - need help Programming Software Development by aSa [quote=dugjohnson;378889]Also, why are you working in Delphi 7? Turbo Explorer is available for free, why not work with that and be more current?[/quote] Explorer version does not support third party components and that is very big disadvantage :( Please correct me if I'm wrong Re: New To Pascal and Delphi - need help Programming Software Development by dugjohnson [quote=aSa;378979]Explorer version does not support third party components and that is very big disadvantage :( Please correct me if I'm wrong[/quote] You're right, but this person is a rank newbie, so won't need any add-ons for a long while. And the upgrade to Turbo Pro is very cheap as compared to other versions, and that DOES take add-ins.… Re: Get the URL Programming Software Development by LizR And what have you tried? and what problem are you getting? Re: Wait for page to load Programming Software Development by casper_wang 102 views and not one person has a solution to this? ready_state does NOT work because the page I am waiting on is loading multiple frames (hence firing document complete multiple times) The new code snip I found DOES work (in that it pops up the message at the end of each frame, when main frame is loaded, and about 3 more times for advertising … Re: Wait for page to load Programming Software Development by BitFarmer Well, you ask for help, but please, don't demand it! If 210 reads your question and don't understand it, or don't know any usefull answer, may be your question is too dificult, or too long (IT IS TOOOOO LONG in it's initial form) or described too poorly. Anyway, I will make a little try... I never used IWebBrowser, but it is just a IExplorer …