![Smile :-)](./images/smilies/icon_smile.gif)
Search found 53 matches: loadlib32
Searched query: loadlib32
- Thu Apr 04, 2024 1:09 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Error Usando LoadLib32 o LoadLib - Retorno Puntero
- Replies: 3
- Views: 1195
- Thu Apr 04, 2024 12:50 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Error Usando LoadLib32 o LoadLib - Retorno Puntero
- Replies: 3
- Views: 1195
Re: Error Usando LoadLib32 o LoadLib - Retorno Puntero
... LoadLib24 (cLib)
LOCAL nHand
DEFAULT cLib:=""
IF !FILE(cLib)
MSGALERT("Libreria: "+cLib+" No Cargada","Atención")
RETURN(0)
ENDIF
nHand :=LoadLib32( cLib)
*nHand := LoadLibrary( cLib )
IF ValType( nHand ) == "P"
nHand = PtrToNum( nHand )
ENDIF
IF Abs( nHand ) <= 32
MsgStop( "No es Posible ...
LOCAL nHand
DEFAULT cLib:=""
IF !FILE(cLib)
MSGALERT("Libreria: "+cLib+" No Cargada","Atención")
RETURN(0)
ENDIF
nHand :=LoadLib32( cLib)
*nHand := LoadLibrary( cLib )
IF ValType( nHand ) == "P"
nHand = PtrToNum( nHand )
ENDIF
IF Abs( nHand ) <= 32
MsgStop( "No es Posible ...
- Tue Apr 02, 2024 4:59 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Error Usando LoadLib32 o LoadLib - Retorno Puntero
- Replies: 3
- Views: 1195
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
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
- Mon Apr 01, 2024 3:38 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Error Usando LoadLib32 o LoadLib - Retorno Puntero
- Replies: 3
- Views: 1195
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 ...
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 ...
- Wed Apr 24, 2019 3:30 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Rpreview issues - PDF
- Replies: 58
- Views: 11084
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 the problems went away. In addition, my license works with the newer ...
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 the problems went away. In addition, my license works with the newer ...
- Wed Apr 24, 2019 2:32 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Rpreview issues - PDF
- Replies: 58
- Views: 11084
Re: Rpreview issues - PDF
Mr. Tim
Please try using LoadLib32() instead of LoadLibrary()
Please try using LoadLib32() instead of LoadLibrary()
- Tue Apr 23, 2019 5:36 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Rpreview issues - PDF
- Replies: 58
- Views: 11084
Re: Rpreview issues - PDF
... nbsp; CurDir(), .T. ) if Empty( cPdf ) return nil endif hLib := LoadLib32( "Image2PDF StdCall.dll" )// err := I2PDF_License( "xxx-xxxx-xxxxx-xxxxxx-xxxxxxx" ) err := I2PDF_MetaToNativePDF( ...
- Tue Apr 23, 2019 3:17 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Rpreview issues - PDF
- Replies: 58
- Views: 11084
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 Error: 0. Loading: 0. and ...
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 Error: 0. Loading: 0. and ...
- Fri Dec 09, 2016 4:51 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: IMPRESORA BIXOLON SRP-350 VENEZUELA
- Replies: 7
- Views: 1793
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 )
lRet:=.F.
ELSE
lRet ...
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 )
lRet:=.F.
ELSE
lRet ...
- Fri Dec 09, 2016 4:26 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: IMPRESORA BIXOLON SRP-350 VENEZUELA
- Replies: 7
- Views: 1793
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 )
lRet:=.F.
ELSE
lRet ...
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 )
lRet:=.F.
ELSE
lRet ...
- Fri Mar 18, 2016 7:14 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Borland7 versus VisualStudio
- Replies: 35
- Views: 11598
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í ...
Gracias.
P.D.: Sea como fuere la solución esta aquí ...
- Mon May 26, 2014 5:18 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: call a dll32 function
- Replies: 8
- Views: 2493
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() ...
I tried the method with loadlib32 and freelib as below
static hLo32FUNCTION Main()xaxa:="1"? "debug SEEVER 6/17/2008", xaxareturnfunction FWOpenPngFile() ...
- Thu Nov 07, 2013 6:54 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Nuevo FWH 13.12
- Replies: 34
- Views: 8028
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
- Thu Nov 07, 2013 6:25 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Nuevo FWH 13.12
- Replies: 34
- Views: 8028
Re: Nuevo FWH 13.09
Compruebese que la dll es cargada con loadlibrary() y *NO* con loadlib32()
- Mon Jul 01, 2013 5:49 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Hacer Ping a un PC, Como ?
- Replies: 19
- Views: 5853
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 por tu código. Me ha sido muy ...
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 por tu código. Me ha sido muy ...