Search found 53 matches: loadlib32

Return to advanced search

... TO LEN( aCc ) cCmd += " -c " + ["] + aCc[ i ] + ["] NEXT ENDIF IF lHtml cCmd += " -H" ENDIF IF !EMPTY( cPort ) cCmd += " -P " + cPort ENDIF hDLL = LOADLIB32( "sndmail.dll" ) SMTPLIBOPEN() nRes = SMTPSENDMAIL( cCmd ) SMTPLIBCLOSE() FREELIB32( hDLL ) FERASE( cMsgFile ) RETURN nRes = 0 DLL STATIC ...
by Marco Turco
Tue Sep 30, 2008 6:50 pm
 
Forum: All products support
Topic: Inviare un'email
Replies: 13
Views: 3894

Upload files via FTP

... FTP // #define INTERNET_FLAG_TRANSFER_ASCII 1 #define INTERNET_FLAG_TRANSFER_BINARY 2 STATIC hLib FUNCTION MAIN() LOCAL hInternet, hConnect hLib = LOADLIB32( "wininet.dll" ) hInternet = INETOPEN( "Anystring", INTERNET_OPEN_TYPE_DIRECT, 0, 0, 0 ) hConnect = INETCONNECT( hInternet, "ftp address", ...
by Romeo
Fri Sep 19, 2008 4:56 pm
 
Forum: All products support
Topic: Upload files via FTP
Replies: 3
Views: 1421

Antonio Linares wrote:Please use LoadLibrary() and DLL FUNCTION ...

LoadLib32() and DLL32 FUNCTION are for 16 bits apps.


Dear Linares, thank for trip.... I will use!
by JC
Mon Jul 28, 2008 11:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Using libmysql.dll via "loadLibrary()"
Replies: 8
Views: 2699

Please use LoadLibrary() and DLL FUNCTION ...

LoadLib32() and DLL32 FUNCTION are for 16 bits apps.
by Antonio Linares
Sat Jul 26, 2008 4:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Using libmysql.dll via "loadLibrary()"
Replies: 8
Views: 2699

Using libmysql.dll via "loadLibrary()"

Dear Antonio and friends of forum! I have tried to connect into a mysql server calling the functions of libmysq.dll with loadLib32() function. The function mysql_init() for prepare the threads and environment to connect on the database server is running perfectly! I get a code handle ...
by JC
Fri Jul 25, 2008 12:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Using libmysql.dll via "loadLibrary()"
Replies: 8
Views: 2699

Ayuda con la clase TCRW

... ::hDll := 0 ::nJobHandle := 0 ::lError := .F. // Check if we load 16 or 32 Bits. First try to load CRPE32 // IF IsWin95() .OR. IsWinNT() ::hDll := LoadLib32( "CRPE32.DLL" ) ::l32 := .T. ENDIF // If CRPE32.DLL did not load, try CRPE.DLL // IF ABS( ::hDll ) <= 32 ::hDll := LoadLibrary( "CRPE.DLL" ...
by Ramón J.
Sat May 31, 2008 9:56 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con la clase TCRW
Replies: 3
Views: 2548

FiveWin / Internet use Wininet.dll

... sbuffer = empty function InternetReadFile( hFile ,sBuffer,lNumBytesToRead,lNumberOfBytesRead ) local hDLL := iIf( ValType( xdll ) == "N", xdll, LoadLib32( "xdll" ) ) local uResult local cFarProc local sb1 := sbuffer , sb2, sb3 if Abs( hDLL ) > 32 cFarProc = GetProcAdd( hDLL, "InternetReadFile" ...
by cgraeber
Tue Sep 04, 2007 11:35 am
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: FiveWin / Internet use Wininet.dll
Replies: 1
Views: 1864

LoadLibrary/LoadLIB32 doesn't run on Windows 98

Hi,
I checked that always return 0 on Windows 98.

Pls. take a look at this self-contained sample
available at www.softwarexp.co.uk/beta/dlltest.zip

It return a positive value on WinXP/Vista and return 0 on Windows 98.

All runs fine with FWH 2006.

Any ideas ?

Thanks in advance.

Marco Turco
by Marco Turco
Tue Jul 03, 2007 3:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: LoadLibrary/LoadLIB32 doesn't run on Windows 98
Replies: 1
Views: 478

Re: Problemi con Loadlib32

Prova con LoadLibrary()/FreeLibrary(). La DLL la devi registrare solo se è specificato nelle istruzioni della DLL stessa. Ad esempio, FreeImage.dll non richiede registrazione.

EMG
by Enrico Maria Giordano
Wed Jun 27, 2007 1:10 pm
 
Forum: All products support
Topic: Problemi con Loadlib32
Replies: 3
Views: 1060

Problemi con Loadlib32

... messaggio di errore all'avvio del mio applicativo: Error code 0 Loading 0 L'errore si verifica specialmente su windows 9x quando eseguo: hRtfLib:=LoadLib32("cdintf.dll") E' corretto utilizzare LoadLib32 o devo utilizzare LoadLibrary o ancora registrare la dll ? A riguardo c'è un pò di confusione ...
by Marco Turco
Wed Jun 27, 2007 8:50 am
 
Forum: All products support
Topic: Problemi con Loadlib32
Replies: 3
Views: 1060

antonio

... percebi que na pasta do FWH71 tem FREEIMAGE.DLL, mudei mais mesmo assim esta dando o erro. Antonio sera que é alguma dessas configurações: hBor := Loadlib32("Bwcc32.dll") BwccRegister( GetResources() ) DLL32 FUNCTION BWCCRegister(hinst AS LONG) AS WORD PASCAL LIB "BWCC32.DLL" Procedure AppSys return ...
by AOKISANTOS
Thu Mar 15, 2007 5:19 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Antonio, Called from CALLDLL(0)
Replies: 3
Views: 1043

#INCLUDE "FIVEWIN.CH" static hRtfLib static hRtfPrinter static cRtfPrinter static lGuest hRTFLib = LOADLIB32( "cdintf.dll" ) cRtfPrinter="SXP Printer" hRTFPrinter:=RTFDriverOpen(cRTFPrinter) ********* && qui voglio richiamare la funzione per conoscere la versione ...
by Marco Turco
Sat Nov 18, 2006 12:00 pm
 
Forum: All products support
Topic: Wrapper
Replies: 5
Views: 1813

LoadLib32() is just for FW 16 bits.

You should use LoadLibrary().
by Antonio Linares
Fri Oct 27, 2006 7:30 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: LoadLibrary OR LoadLib32
Replies: 2
Views: 625

LoadLibrary OR LoadLib32

Ola amigos

Tem diferença entre LoadLibrary e LoadLib32 ??

Elas pertencem a quem xHarbour ou FWH ??


Gratos
by miragerr
Fri Oct 27, 2006 4:20 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: LoadLibrary OR LoadLib32
Replies: 2
Views: 625

... I am using xBuildW.exe which links FiveHcm.lib in automatically - I will have to investigate further **************** #ifdef __HARBOUR__ Function LoadLib32( cDll ) Return LoadLibrary( cDll ) Function FreeLib32( hDll ) Return FreeLibrary( hDll ) Function GetProc32( hDLL, cFunc, lType, nRetType, ...
by peterk
Wed Oct 18, 2006 9:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: CallDll32 funny
Replies: 3
Views: 1359
PreviousNext

Return to advanced search