Hi all could any one show me how to collect the bold part data from a webbrowser controle . I want to collect those data and place them in a listview and use the color code to color the name in listview. I be happy if some one show me how this can be done. The nubmer of rows in the table are dynamic.Thanks
Note: i want to extract the name and color1 and color2 data from webbrowsser controle as shown in pic
http://i5.photobucket.com/albums/y18...xtractData.jpg
webbrowser html code:
Code:
<html>
<head>
<meta http-equiv="refresh" content="60">
</head>
<p>[list]<table border=1 cellpadding=4
<tr><th>Name</th> <th> color </th> <th> color2 </th> </tr>
<tr><td>tony</td> <td>32768</td> <td>0800</td>
<tr><td>cindy</td> <td>16711935</td> <td>FF0FF</td>
<tr><td>sarah</td> <td>16711808</td> <td>800FF</td>
</table>
</body>
</html>