Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by chris348

  1. chris348

    delphi 2009 TwebBrowser new window

    Problem now sorted as below. procedure TForm7.wb2NewWindow2(ASender: TObject; var ppDisp: IDispatch; var Cancel: WordBool); var Popup: TForm7; begin // a new instance of TForm7 will be created Popup := TForm7.Create(self); Popup.Caption := 'Required Caption'; Popup.Show; ppDisp :=...
  2. chris348

    delphi 2009 TwebBrowser new window

    Daddy, Many thanks for the reply. Problem now is that the message appears - Undeclared identifier 'Popup'. Chris
  3. chris348

    delphi 2009 TwebBrowser new window

    Have used the TWebBrowser component OK, except that when a pop up window appears, it is opened in Internet Explorer. Would be grateful for advice on how to get it to open as a TWebBrowser window. Have struggled for a while on this. Delphi version is 2009. Thanks in advance.

Part and Inventory Search

Back
Top