Search found 53 matches: loadlib32

Return to advanced search

Re: Error Usando LoadLib32 o LoadLib - Retorno Puntero

...   MSGALERT("Libreria: "+cLib+" No Cargada","Atención")    RETURN(0)ENDIFnHand  :=LoadLib32( cLib)*nHand  := LoadLibrary( cLib )IF ValType( nHand ) == "P"    nHand = PtrToNum( nHand )ENDIFIF ...
by GUSPRE
Thu Apr 04, 2024 12:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error Usando LoadLib32 o LoadLib - Retorno Puntero
Replies: 3
Views: 707

Re: Error Usando LoadLib32 o LoadLib - Retorno Puntero

Estimado Gustavo,

Asegúrate de que estás usando el fichero DLL.ch de FWH más reciente ya que este fichero ahora realiza automaticamente la conversión de puntero a número largo

Busca por si tienes alguna versión más antigua de DLL.ch y bórrala
by Antonio Linares
Tue Apr 02, 2024 4:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error Usando LoadLib32 o LoadLib - Retorno Puntero
Replies: 3
Views: 707

Error Usando LoadLib32 o LoadLib - Retorno Puntero

... que al llamar a las funciones internas de las DLL estas arrojen error. He probado con los samples que vienen en FWH (Que usan LoadLibrary or LoadLib32) y hacen lo mismo , por ejemplo EMF.PRG Error Time from start: 0 hours 0 mins 0 secs Error occurred at: 04/01/24, 11:43:31 Error description: ...
by GUSPRE
Mon Apr 01, 2024 3:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error Usando LoadLib32 o LoadLib - Retorno Puntero
Replies: 3
Views: 707

Re: Rpreview issues - PDF

Mr Rao, I am using loadlib32() just like you originally suggested. The reason I was having problems is that I was using an older version of the Img2Pdf.dll. After Vilian provided the link, and I downloaded the newer version, all of ...
by TimStone
Wed Apr 24, 2019 3:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Rpreview issues - PDF
Replies: 58
Views: 7516

Re: Rpreview issues - PDF

Mr. Tim

Please try using LoadLib32() instead of LoadLibrary()
by nageswaragunupudi
Wed Apr 24, 2019 2:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Rpreview issues - PDF
Replies: 58
Views: 7516

Re: Rpreview issues - PDF

...    CurDir(), .T. )   if Empty( cPdf )      return nil   endif   hLib := LoadLib32( "Image2PDF StdCall.dll" )// err := I2PDF_License( "xxx-xxxx-xxxxx-xxxxxx-xxxxxxx" )   err  := ...
by nageswaragunupudi
Tue Apr 23, 2019 5:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Rpreview issues - PDF
Replies: 58
Views: 7516

Re: Rpreview issues - PDF

Vilian, I have tried your code which is almost identical to mine. The differences: You use LoadLib32( ) and I'm using LoadLibrary( ) You are using the additional call: iErr := I2PDF_MetaTextFitBoundingRect() When I run it with your setup, I get 7 pop-up boxes saying ...
by TimStone
Tue Apr 23, 2019 3:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Rpreview issues - PDF
Replies: 58
Views: 7516

Re: IMPRESORA BIXOLON SRP-350 VENEZUELA

... de utilitario donde bajas manuales y demas. Static Function AbroDllPrinter() LOCAL lRet:=.F. LOCAL cDllName:="TFHKADIR.DLL" hFiscalDll:=LoadLib32(cDllName) if Abs( hFiscalDLL ) <= 32 MsgAlert( "Error code: " + LTrim( Str( hFiscalDLL ) ) + " loading " + cDllName ...
by joseluisysturiz
Fri Dec 09, 2016 4:51 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: IMPRESORA BIXOLON SRP-350 VENEZUELA
Replies: 7
Views: 1528

Re: IMPRESORA BIXOLON SRP-350 VENEZUELA

... de utilitario donde bajas manuales y demas. Static Function AbroDllPrinter() LOCAL lRet:=.F. LOCAL cDllName:="TFHKADIR.DLL" hFiscalDll:=LoadLib32(cDllName) if Abs( hFiscalDLL ) <= 32 MsgAlert( "Error code: " + LTrim( Str( hFiscalDLL ) ) + " loading " + cDllName ...
by mag071
Fri Dec 09, 2016 4:26 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: IMPRESORA BIXOLON SRP-350 VENEZUELA
Replies: 7
Views: 1528

Re: Borland7 versus VisualStudio

... #xcommand DLL32... si se pudiera añadir un #xcommand DLL64... . También hay funciones GetProcAdd/GetProc32 , FWCallDLL/FWCallDLL32 , LoadLibrary/LoadLib32 y FreeLibrary/FreeLib32 lo que denota que tuviste que adaptar el tema en su tiempo. Gracias. P.D.: Sea como fuere la solución esta aquí (alguien ...
by JmGarcia
Fri Mar 18, 2016 7:14 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Borland7 versus VisualStudio
Replies: 35
Views: 9512

call a dll32 function

... delete the dll32 function from see32.ch it stops at the debug line. Is there anything else I should link or take care of? I tried the method with loadlib32 and freelib as below static hLo32FUNCTION Main()xaxa:="1"? "debug SEEVER 6/17/2008", xaxareturnfunction FWOpenPngFile() ...
by jorjio
Mon May 26, 2014 5:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: call a dll32 function
Replies: 8
Views: 2081

Re: Nuevo FWH 13.09

hmpaquito wrote:Compruebese que la dll es cargada con loadlibrary() y *NO* con loadlib32()


Paquito, el ejemplo no incluye ninguna llamada a la dicha dll, no obstante le agregue lo que indicas loadlibrary("FreeImag64.dll"), pero sigue con lo mismo.

Un abrazo y gracias.
Miguel
by El Loco
Thu Nov 07, 2013 6:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevo FWH 13.12
Replies: 34
Views: 6701

Re: Nuevo FWH 13.09

Compruebese que la dll es cargada con loadlibrary() y *NO* con loadlib32()
by hmpaquito
Thu Nov 07, 2013 6:25 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevo FWH 13.12
Replies: 34
Views: 6701

Re: Hacer Ping a un PC, Como ?

Esteban, A mi me funcionaba bien en XP pero no en Windows-7 Professional. Le añadí al principio del módulo Loadlib32 ("iphlpapi.dll") y entonces me funcionó. A los que ya le funcionen,perfecto. Pero a los que no,pueden probar añadiendo la librería. Saludos y gracias ...
by Manuel Valdenebro
Mon Jul 01, 2013 5:49 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Hacer Ping a un PC, Como ?
Replies: 19
Views: 5237
Next

Return to advanced search