Search found 480 matches: dll32

Return to advanced search

FWH functions and mod harbour

Hello friends,

How can one use FIVEWIN functions, for example from the shellapi.prg

DLL32 FUNCTION or static HB_FUNC() in mod harbour?

Which functions are used in harbour to move a file or an entire directory?

Best regards,
Otto
by Otto
Mon Jan 08, 2024 7:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH functions and mod harbour
Replies: 1
Views: 641

Re: Generar codigo QR con fivewin.

Saludos
Alberto,
https://github.com/AdaptaProERP/kernel_ ... qrform.prg

DLL32 STATIC FUNCTION QRCode(cStr As STRING, cFile As STRING) AS LONG PASCAL ;
FROM "FastQRCode" LIB "QRCodelib.Dll"
RETURN NIL
by jnavas
Thu Jan 04, 2024 12:27 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Generar codigo QR con fivewin.
Replies: 9
Views: 1122

Re: Error al leer un dll

Estimado Jorge, Si estas usando estás funciones: DLL32 FUNCTION OpenComFiscal( nCom AS _INT, nMode AS _INT ) AS _INT PASCAL FROM "OpenComFiscal" LIB "winfis32.dll" DLL32 FUNCTION MandaPaqueteFiscal( nHandler AS _INT, cBuffer AS ...
by Antonio Linares
Sat Apr 22, 2023 10:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error al leer un dll
Replies: 19
Views: 1490

Re: New FTDN December/Diciembre 2022 (FW 22.12)

... puedes usar scripts desde tu código html usando un objeto TWebView. * Corrección: Los cambios recientes en DLL.CH no incluían también cambios en DLL32 FUNCTION. Este problema afectaba a los usuarios de xHarbour, ya que xHarbour usa su propia LoadLibrary() en lugar de LoadLibrary() de FWH, y como ...
by Antonio Linares
Wed Jan 04, 2023 6:55 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN December/Diciembre 2022 (FW 22.12)
Replies: 5
Views: 1225

New FTDN December/Diciembre 2022 (FW 22.12)

... shows how you can use scripts from your html code using a TWebView object. * Fix: Recent DLL.CH changes were not including changes for DLL32 FUNCTION too. This problem appeared for xHarbour users, as xHarbour LoadLibrary() gets used instead of FWH LoadLibrary(), and as xHarbour LoadLibrary() ...
by Antonio Linares
Tue Jan 03, 2023 7:31 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN December/Diciembre 2022 (FW 22.12)
Replies: 5
Views: 1225

Re: Problemas con Easy Report FWH2210

... un valor tipo "P" y cuando le aplicamos Abs() se genera el error Asegúrate de que esreport.prg este compilado usando DLL FUNCTION y no DLL32 FUNCTION y comprueba que en FWH dll.ch esten estas líneas: #xcommand DLL [<static:STATIC>] FUNCTION <FuncName>( [ ...
by Antonio Linares
Wed Dec 14, 2022 8:38 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problemas con Easy Report FWH2210 - SOLUCIONADO
Replies: 9
Views: 435

Re: DLLCALL under Fivewin

Dear Tim,

Many thanks fr sharing it

You can use DLL FUNCTION instead of DLL32 FUNCTION
by Antonio Linares
Fri Dec 02, 2022 11:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DLLCALL under Fivewin
Replies: 45
Views: 2623

Re: Everything under Fivewin

hi, still try to use Everything32.DLL but fail ... as i understand i have to use DLL32 FUNCTION for Fivewin DLL32 FUNCTION cFuncName( xParameter AS xType) AS xReturnValue PASCAL FROM "APIfunction" LIB "MyDLL.DLL" but it fail with this ...
by Jimmy
Mon Nov 21, 2022 8:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Everything under Fivewin
Replies: 17
Views: 1086

Re: call DLL under FiveWin

... ; [ <ParamN> AS <TypeN> ] ) ; AS <return> [PASCAL] [ FROM <SymName> ] LIB <DllName> To access a 32 bits DLL function DLL32 [STATIC] FUNCTION <FuncName> ( ;[ <Param1> AS <Type1> ] ; [ <ParamN> AS <TypeN> ] ) ; AS <return> [PASCAL] ...
by hua
Tue Aug 02, 2022 2:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: call DLL under FiveWin
Replies: 7
Views: 719

Re: USAR IMPRESORA FISCAL BERMATECH EN VENEZUELA EN PDV

... // MsgAlert(cHora) ? BemaReporteZeta(cFecha,cHora),"REPORTEZ" RETURN .T. FUNCTION ISWINXP() RETURN .T. //Faz abertura do dia // DLL32 FUNCTION LECTURA ( cPort AS LPSTR ) AS LONG PASCAL ; // FROM "IniPuertaStr" LIB oDp:nBemaDLL //DLL32 FUNCTION LECTURA( cPort AS STRING ...
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: 7784

Re: Starting monitor

I tried:

DLL32 FUNCTION EnumDisplayMonitors( hdc AS LONG, lprcClip AS LONG, ;
lpfnEnum AS Mnt_Lg, dwData AS LONG) AS BOOL PASCAL LIB "user32.dll"

But, apparently, I am wrong in the description of the call function :(
by Natter
Wed Dec 08, 2021 6:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Starting monitor
Replies: 15
Views: 1437

Re: Codigo QR directamente en fichero .JPG o .PNG

... lo que genera realmente es un BMP internamente, pero con extensión JPG Por cierto a modo de comentario, si en la llamada a la función DLL pongo DLL32 STATIC FUNCTION QRCode(cStr As STRING, cFile As STRING) AS LONG PASCAL FROM "FastQRCode" Lib "QRCodelib.Dll" con Lib en mayuscula, ...
by ArgConsulting
Mon Aug 16, 2021 6:58 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Codigo QR directamente en fichero .JPG o .PNG
Replies: 5
Views: 656

Re: Normas para el QR-Code

... MsgInfo("Qr Generado OK") Return NIL //----------------------------------------------------------------------------// DLL32 STATIC FUNCTION QRCode(cStr As STRING, cFile As STRING) AS LONG PASCAL FROM "FastQRCode" LIB "QRCodelib.Dll" RETURN NIL /*
by jpcavagnaro
Wed Jan 20, 2021 11:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Normas para el QR-Code
Replies: 29
Views: 2959

Re: Normas para el QR-Code

... MsgInfo("Qr Generado OK") Return NIL //----------------------------------------------------------------------------// DLL32 STATIC FUNCTION QRCode(cStr As STRING, cFile As STRING) AS LONG PASCAL FROM "FastQRCode" LIB "QRCodelib.Dll" RETURN NIL /*
by postinelli
Thu Jan 14, 2021 8:34 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Normas para el QR-Code
Replies: 29
Views: 2959

Re: Como cargar funciones desde una Dll?

Busca en el foro "DLL32 function"
by cnavarro
Fri Oct 30, 2020 8:11 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como cargar funciones desde una Dll?
Replies: 1
Views: 347
Next

Return to advanced search