I have the following select in my twebbrowser
<Select name="ship_to_method">
<option value="1941">Royal Mail Standard Delivery at £1.45 </option>
<option value="1942">Courier Standard Delivery at £4.64 </option>
<option value="1943">Royal Mail Priority Delivery at £1.66 </option>
<option value="1944">Courier Priority Delivery at £5.15 </option>
</select>
the number of options and the values change dynamically,
how can i get the options into an array so I have..
option_ids=(1941,1942,1943,1944);
option_texts=("Royal Mail Standard Delivery at £1.45","Courier Standard Delivery at £4.64","Royal Mail Priority Delivery at £1.66","Courier Priority Delivery at £5.15");
if anyone has any code to share that would be great!
many thanks
Stu
(TWebBrowser.Document as IHTMLDocument2)you get a IHTMLDocument2 interface, follow the link for the documentation. – Cosmin Prund Jul 20 '11 at 19:45