![]() |
twebbrowser button ohne form!!
hi, schon wieder hab ich nen problem mit dem twebbrowser! und zwar ist es diesmal ein button ^^ der sit nämlich in keiner form und ich hab jetzt keine ahnung, wie ich den anklicken soll.
der button ist so:
Delphi-Quellcode:
ich habs schon mit
<button type=button onclick="dwindow.location.href='url'">blablabla</button>
Delphi-Quellcode:
probiert, hat aber auch ent funktioniert!
WebBrowser1.OleObject.Document.all.Item(i)
und das forum hab ich hier auch schon krieuz und quer abgesucht aber nix gefunden... |
Re: twebbrowser button ohne form!!
Delphi-Quellcode:
var
WebDoc: IHTMLDocument2; WebElement: IHTMLElement; WebButton: IHTMLButtonElement; I: Integer; begin WebDoc := WebBrowser1.Document as IHTMLDocument2; for I := 0 to WebDoc.all.length - 1 do begin WebElement := WebDoc.all.item(I, 0) as IHTMLElement; if Supports(WebElement, IID_IHTMLButtonElement, WebButton) then if WebButton.value = 'blablabla' then WebElement.click; end; end; |
Alle Zeitangaben in WEZ +1. Es ist jetzt 04: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