Search found 183 matches: freelibrary

Return to advanced search

Re: Error al leer un dll

... static hDll al comienzo del PRG donde las tengas y en tu código haz: hDll := LoadLibrary( "winfis32.dll" ) y cuando termines de usarlas: FreeLibrary( hDll )
by Antonio Linares
Sat Apr 22, 2023 10:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error al leer un dll
Replies: 19
Views: 1557

Re: Gluing bitmaps

... numeric. I also agree that this problem was not there in earlier versions. It is because some changes are made in the functions, LoadLibrary() and FreeLibrary() in this version. We regret the inconvenience. Please replace the existing function LoadFreeImage( cResName ) in the "image.prg" ...
by nageswaragunupudi
Wed Dec 14, 2022 6:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Gluing bitmaps
Replies: 29
Views: 1464

Re: AYUDA! Error BASE/1089 Error de argumento: ABS

Querida Aida, Si usas xHarbour, entonces ese error se debe a que se enlazan las funciones LoadLibrary() y FreeLibrary() de xHarbour en vez de las de FWH. Observa que en DLL.CH se llama a Abs() y si se le pasa un valor tipo "P" (que es lo que devuelve LoadLibrary() ...
by Antonio Linares
Tue Nov 22, 2022 9:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: AYUDA! Error BASE/1089 Error de argumento: ABS
Replies: 5
Views: 293

Re: hb_base64 link

Dear Enrico, We have the problem that xHarbour provides a LoadLibrary() and FreeLibrary() from rtl.lib and Harbour does not How to solve this ? :-) How did you solve it with BCC? I think you must do the same, or am I missing something? Dear Enrico, The C compiler ...
by Enrico Maria Giordano
Mon Sep 12, 2022 7:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: hb_base64 link
Replies: 57
Views: 3594

Re: hb_base64 link

Antonio, estas funciones LoadLibrary(), FreeLibrary(), DllCall/CallDll o de llamadas similares a funciones de dll (ahorta no recuerdo bien los nombres), al estar en xharbour y fwh complican la cosa! ya hace tiempo vi esto, y no logre encontrar ...
by carlos vargas
Sun Sep 11, 2022 11:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: hb_base64 link
Replies: 57
Views: 3594

Re: hb_base64 link

Dear Enrico, We have the problem that xHarbour provides a LoadLibrary() and FreeLibrary() from rtl.lib and Harbour does not How to solve this ? :-) How did you solve it with BCC? I think you must do the same, or am I missing something? Dear Enrico, The C compiler ...
by Antonio Linares
Sun Sep 11, 2022 11:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: hb_base64 link
Replies: 57
Views: 3594

Re: hb_base64 link

Antonio Linares wrote:Dear Enrico,

We have the problem that xHarbour provides a LoadLibrary() and FreeLibrary() from rtl.lib and Harbour does not

How to solve this ? :-)


How did you solve it with BCC? I think you must do the same, or am I missing something?
by Enrico Maria Giordano
Sun Sep 11, 2022 2:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: hb_base64 link
Replies: 57
Views: 3594

Re: hb_base64 link

Dear Enrico,

We have the problem that xHarbour provides a LoadLibrary() and FreeLibrary() from rtl.lib and Harbour does not

How to solve this ? :-)
by Antonio Linares
Sun Sep 11, 2022 8:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: hb_base64 link
Replies: 57
Views: 3594

Re: hb_base64 link

... in fivehmx.lib(OLDFUNC.obj)LINK : fatal error LNK1104: cannot open file 'LIBC.lib' Dear Enrico, We should rename DbPack(), LoadLibrary(), FreeLibrary() and GetVolInfo() in FWH. The problem is that LoadLibrary() and FreeLibrary() are used in many FWH places... not sure how much code we ...
by Antonio Linares
Wed Sep 07, 2022 4:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: hb_base64 link
Replies: 57
Views: 3594

Re: IE

... = "blue"' ) WebView_Bind( hWebView, "test", Test(), hWebView ) WebView_Run( hWebView ) WebView_Destroy( hWebView ) FreeLibrary( hDLL ) return nil function Html() local cHtml TEXT INTO cHtml data:text/html, <html> <head> </head> <body style="background-color:cyan"> ...
by Natter
Thu May 26, 2022 12:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: IE
Replies: 39
Views: 1767

Re: USAR IMPRESORA FISCAL BERMATECH EN VENEZUELA EN PDV

... Impresora Bematech") ENDIF RETURN cError /* // Finaliza la Impresora */ FUNCTION BEMA_END() IF oDp:nBemaDll<>NIL FreeLibrary(oDp:nBemaDll) oDp:nBemaDll:=NIL ENDIF RETURN .T. PROCE XBEMA() LOCAL nRet ,cRif:=PADR("Nombre del Cliente",41)+PADR("RIF",18) ...
by jnavas
Wed Apr 27, 2022 9:57 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: USAR IMPRESORA FISCAL BERMATECH EN VENEZUELA EN PDV
Replies: 21
Views: 7868

Re: Retorno de chamada DLL

... DLL is already loaded by LoadLibrary(), and it remains loaded when the DLL function is complete. The DLL must then be released explicitely with FreeLibrary(). When more than three parameters are specified, all <xParams,...> are passed on to the DLL function. However, since xHarbour has ...
by carlos vargas
Fri Sep 27, 2019 8:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Retorno de chamada DLL
Replies: 4
Views: 983

Re: ¿ Por usar BWCC32.DLL no funciona EXCEL en el Preview ?

... una ventana de Dialogo) no existe. Aquí esta lo que tengo en mi programa: hBWCC:=LoadLibrary("BWCC32.DLL") BWCCRegister(GetResources()) FreeLibrary( hBWCC ) DLL32 FUNCTION BWCCRegister( hInst AS LONG ) AS WORD PASCAL LIB "BWCC32.DLL" Atentamente, Waldemar
by wyerco613
Wed Jun 26, 2019 10:47 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: ¿ Por usar BWCC32.DLL no funciona EXCEL en el Preview ?
Replies: 5
Views: 762

Re: QRCODE

... LOCAL nResp LOCAL qrDLL qrDLL := LoadLibrary("QRCodelib.Dll" ) nResp := DllCall(qrDLL,DC_CALL_STD,"FastQRCode",cStr,cFile) FreeLibrary(qrDLL) RETURN (NIL)
by jnavas
Wed Dec 12, 2018 10:51 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: QRCODE
Replies: 12
Views: 3768

Re: Utilizar funciones de una dll con harbour

... ), .T., 7,7,9,7 ) ; uResult = FWCallDLL( cFarProc,nHandle,@cT,nMax ) ; If( ValType( "user32.dll" ) == "N",, FreeLibrary( _hDLL ) ) ; else ; MsgAlert( "Error code: " + LTrim( Str( _hDLL ) ) + " loading " + If( ValType( "user32.dll" ...
by Xevi
Mon Dec 10, 2018 8:41 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Utilizar funciones de una dll con harbour
Replies: 6
Views: 1341
Next

Return to advanced search