cURL / Mailing Lists / curl-library / Single Mail

curl-library

using libcurl with Visual Basic from MS-Access and Windows2000

From: <wolfgang.voss_at_lhsystems.com>
Date: Thu, 30 Oct 2003 10:56:37 +0100

Hallo,

i cannot use libcurl.dll in my MS-Access Application.

I copied Libcurl.dll to systems32.
I use the following Code:

        Private Declare Function curl_easy_init Lib "libcurl.dll" () As Long
        .......

        Function CURL_GET(URL) As String
        Dim Temp, H As Long
            H = curl_easy_init()
            Temp = curl_easy_setopt(H, 1, "C:\tmp\Antwort.txt")
            Temp = curl_easy_setopt(H, 2, URL)
            ......
            curl_easy_perform (H)
            curl_easy_cleanup (H)
            ......
        End Function

Executing the first Statement H=curl_easy_init() gives the error:
"Run-time Error '53':
 File not fount: libcurl.dll"

Apparently the library is not in a format that is recognised by Visual
Basic.
When I try to register the Library with:
"regscr32 c:\winnt\system32\libcurl.dll"
a similar error message is appearing.

Questions:
Has anyone got a Version of libcurl.dll or annother intermediate Library
that works with microsoft Visual Basic?

Mit freundlichen Grüßen
Wolfgang Voss
Remote Access
Lufthansa Systems Infratec GmbH Tel: (+49 69) 696 - 5622
Integrated Network Products Fax: (+49 69) 696 - 67329
FRA AN/NEX
Im Taubengrung 6 E-Mail: wolfgang.voss_at_lhsystems.com
65451 Kelsterbach Internet: <http://www.lhsystems.com/>
Deutschland Intranet RAS-Portal: <http://lww.ras.lsy.fra.dlh.de/>

-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
Does SourceForge.net help you be more productive? Does it
help you create better code? SHARE THE LOVE, and help us help
YOU! Click Here: http://sourceforge.net/donate/
Received on 2003-10-30