Pass Information to VB Program

I am making a download manager in VB 2010. I need to be able to pass the download link from an HTML page to the VB Application. This is what i think i need to do in the HTML:

<html>
<body>
<a href="downloadmanager.application?url=http://example.com/example.exe">Download</a>
</body>
</html>

Does anyone know how i could do this? Thanks

Upvotes: 0

Views: 80

Answers (1)

j_mcnally
j_mcnally

Reputation: 6968

you can either create a browser plugin to manage the link tracking, or register your own protocol: mydownloadmanager://download?url=http://example.com/example.exe

check

http://blogs.msdn.com/b/noahc/archive/2006/10/19/register-a-custom-url-protocol-handler.aspx

Upvotes: 2

Related Questions