How to call the OnChange event of “Select” ? (Delphi - WebBrowser)
问题 I'm using Delphi and WebBrowser componenet to navigate a html page . the page have a Combobox . is there any way to call the OnChange event ? The ComboBox is like this : <select name="comboname" onchange="Some Javascript codes"> Also , i have used this code : function TFrmMain.SetComboboxValue(WB: TEmbeddedWB; SelectName, ItemName: string): Boolean; var iForms, iFormItems, iSelectItems: Word; FormItem: OleVariant; begin Result := false; for iForms := 0 to WB.OleObject.Document.Forms.length -