Question : How do I set up VB.Net to use libcurl?

I'm trying to use libcurl.net in Visual Studio 2008. I've downloaded the latest build of libcurl.

In the bin folder is a file called LibCurlNet.dll. I can add this as a reference, but I can't seem to do anything with it! I can't create an instance of 'CURL' as 'SeasideResearch.LibCurlNet.Curl.Private Sub New()' is not accessible in this context because it is 'Private'.

Although there are some good examples delivered in the ZIP which I'm sure will help me start using this library, there isn't any documentation provided to explain the basics of getting it set up in VB. The examples all seem to access the methods and properties of libcurl directly. I.e:

Imports SeasideResearch.LibCurlNet
Module Main
Sub Main
Curl.GlobalInit(CURLinitFlag.CURL_GLOBAL_ALL)
End Sub
End Module

If I try and do anything like that, I get a DLL not found exeption. There are some additional libraries delivered with libcurl. I've tried registering the additional dlls using rgsvr32 and I get the 'entry point not found' error. I've tried addiing the additional dlls as references, but that fails as well.

The compiled help delivered with libcurl is corrupt (???). None of the pages display correctly.

Has anyone else managed to successfully get a vb project working using libcurl.net? If so, could you give me a beginners guide to getting istarted with it inside a Visual Basic .NET app?

Answer : How do I set up VB.Net to use libcurl?

I found this link for you to work with this library:

http://technoblogy.net/uploading-a-file-using-libcurl-net/

did you put this file in system folder as well ????
Random Solutions  
 
programming4us programming4us