Hi,
I have combobox on web page(IE). I'd like save data items of combobox ("red (free)", "green(full)",...) into array of string in my program.
Could you help me please.
This is example web page:
<?xml version="1.0" encoding="iso-8859-2"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Pokus</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1250" />
</head>
<body onLoad="document.f.textarea.focus()">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<form name="f" action="any_URL" method="post"><input type="hidden" name="op" value="textpageng" /><input type="hidden" name="rid" value="4057684" /><input type="hidden" name="aid" value="0" /><input type="hidden" name="
js" value="0" /><input type="hidden" name="skin" value="2" /><tr>
<td nowrap="nowrap" style="width: 100%;">
<td nowrap="nowrap" class="tdb"><select name="target">
<option value="~" selected>-color-</option>
<option value="Red" >Red (free)</option>
<option value="Green" >Green (full)</option>
<option value="Yellow" >Yellow(free)</option>
<option value="Black" >Black (full)</option>
<option value="White" >White (free)</option>
</select>
</td>
</td><td nowrap="nowrap" class="btn">
</td>
</tr></form></table></body>
</html>