well, I am a newbie in C++ and I have some trouble to make an atl dll : in fact I want to create an atl dll called htmretiever ,using VC 7, with one single method retrieve(url as string).
When I call the retrieve method using vbscript like this :
set myObj = createObject("htmretiever.retriever")
content = myObj.retrieve("
I want that the Atl object call a hidden browser control and tell him to browse the url given as parameter and then return the HTML content as string to my vbscript. I know that there is others method to get the content of the web page, but for some reason I need to call the ibrowser object to do this work.
I think that my dll should implement CWindowImpl but I don't know how to write the DLL...
Please help me and thanks in advance.
When I call the retrieve method using vbscript like this :
set myObj = createObject("htmretiever.retriever")
content = myObj.retrieve("
I want that the Atl object call a hidden browser control and tell him to browse the url given as parameter and then return the HTML content as string to my vbscript. I know that there is others method to get the content of the web page, but for some reason I need to call the ibrowser object to do this work.
I think that my dll should implement CWindowImpl but I don't know how to write the DLL...
Please help me and thanks in advance.