![]() |
Popup mit TWebBrowser
Hallo,
ich bin auf der Suche nach einer Möglichkeit mit dem TWebBrowser ein neues Fenster (ohne Navigation, Statusbar und Menü) zu öffnen. Bisher öffne ich ein neue Seite über: FWebBrowser.Navigate('http://test.com', EmptyParam, EmptyParam, EmptyParam, EmptyParam); Das Problem hierbei ist das die Variablen EmptyParam vom Typ OleVariant sind und ich nicht weiß wie und ob ich dort Veränderungen vornehmen kann. Hat Jemand vielleicht eine Idee wie ich nun ein Popup Fenster öffnen kann? |
Re: Popup mit TWebBrowser
Zitat:
Delphi-Quellcode:
var
BrowserFlags : OleVariant; begin { Flags: Constant Value Meaning NavOpenInNewWindow $01 Open the resource or file in a new window. NavNoHistory $02 Do not add the resource or file to the history list. The new page replaces the current page in the list. NavNoReadFromCache $04 Do not read from the disk cache for this navigation. NavNoWriteToCache $08 Do not write the results of this navigation to the disk cache. NavAllowAutosearch $10 If the navigation fails, the Web browser attempts to navigate common root domains (.com, .org, and so on). If this still fails, the URL is passed to a search engine. } BrowserFlags := $01; FWebBrowser.Navigate('http://test.com', BrowserFlags, EmptyParam, EmptyParam, EmptyParam); |
Re: Popup mit TWebBrowser
oh danke,
zumindestens kompiliert er den teil jetzt, allerdings bekomm ich einen exception error an dieser stelle, hab diverse parameter und varianten ausprobiert, weiß allerdings nicht woran das liegt =( |
Re: Popup mit TWebBrowser
Zitat:
Warum hast du die ganzen leeren Parameter hinten dran? Die sind doch optional, oder? :gruebel: |
Re: Popup mit TWebBrowser
nein in diesem fall sind sie das nicht,
ich hab mir zu der navigate methode nun nocheinmal gründlich die hilfe angesehen und denke nicht das ich damit ein entsprechendes explorer fenster (popup) öffnen kann, hat jemand vielleicht sonst noch eine idee wie ich das lösen könnte? |
Re: Popup mit TWebBrowser
Delphi-Quellcode:
procedure OpenIE();
var ie: IWebBrowser2; Url, Flags, TargetFrameName, PostData, Headers: OleVariant; begin // Uses ComObj + SHDocVw_TLB ie := CreateOleObject('InternetExplorer.Application') as IWebBrowser2; ie.Left := 100; ie.Top := 100; ie.Width := 640; ie.Height := 400; ie.MenuBar := false; ie.AddressBar := false; ie.Resizable := false; ie.StatusBar := false; ie.ToolBar := 0; Url := 'www.cryer.co.uk'; ie.Navigate2(Url,Flags,TargetFrameName,PostData,Headers); ie.Visible := true; end; |
Alle Zeitangaben in WEZ +1. Es ist jetzt 01:23 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz