Hi,
please anyone could supply a piece of code in order to have in my c#
program the string links(i).href?
This script runs from Internet Explorer clicking on web page and supplies
all the link of that page.
I need an example on how the program receives the strings from the script.
My simple method would be : private void myurl(string aurl)
{ listview1.items.add(aurl)
}
in order to receive the string aurl....
Thanks....all.
<script language="VBScript">
set c_url = CreateObject("MyClass.url_to download")
set links =external.menuArguments.document.links
for i = 0 to links.length-1
c_url.myurl links(i).href
next
</script>