Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
<span id="lblCommande">Bon de commande</span></a>| <a href="retour.aspx">
これは、ボタンを使用して「クリック」したいリンクです。私はこれを使用してボタンをクリックする方法を知っています: WebBrowser.OleObject.Document.GetElementByID('ID HERE').Click; しかし、それはリンクでは機能しません。何か案は?
WebBrowser.OleObject.Document.GetElementByID('ID HERE').Click;
わかりました。見つけました。方法は次のとおりです。 WebBrowser.OleObject.Document.GetElementByID('lblcommande').Click;
WebBrowser.OleObject.Document.GetElementByID('lblcommande').Click;
I am currently attempting to add a listener to my button so that when it is clicked it loads what is in the 'textId' textfield into an html text above said textfield and button