IDownloadManager in VB.NET?

  • Thread starter Thread starter .:: MaStErDoN ::.
  • Start date Start date
M

.:: MaStErDoN ::.

Hi, i'm working on a download manager project but now i need to associate it
with the internet explorer, i known i have to associate a dll component to
a registry key called "DownloadUI".
But the problem is I don't know how to build that DLL which finally will
call my exe program giving it the url of the required download.
I've been investigating and i found in MSDN that i have to use the
IDownloadManager interface.. which i don't known how to "call" or declare it
on my vb.net dll. The declaration descripted by the MSDN is in (i think) C++
i don't know anything about it..
So, if anyone knows something about this i'll be very pleased
 
From the naming convention (I haven't looked at IDownloadManager) but it
sounds like an interface. You don't actually "invoke" your download
mangager, however something else does. You Implement IDownloadManager into
a class you design, by doing so, you must adhere to a set of rules defined
by the interface.

Read up on Inheritance, its very important with something like this (because
thats what your doing). And I wouldn't go changing things like your
download UI unless you know what your doing. And given your asking about
interfaces, you may want to read up a little before you go breaking things.

UNLESS...

You have VMWare or other such product. =) Then break sh*t till your hearts
content. Just remember to save state =)

-CJ
 
Back
Top