Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

add item

Status
Not open for further replies.

vlad123

Programmer
Jun 22, 2005
37
0
0
DE
Can you tell me, please, how can I add values in a list with 2 columns?! (ColumnCount=2)

First column:
lstLinks.AddItem MyBrowser.Document.links(i).innerText

second one:
MyBrowser.Document.links(i).href
thanks!
 
You may try this:
lstLinks.AddItem MyBrowser.Document.links(i).innerText & ";" & MyBrowser.Document.links(i).href

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top