Search found 431 matches: pascal

Return to advanced search

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: 1129

Re: Using Microsoft AI Phi-2 from FWH

... hb_stornl #endif agora o erro eh outro ao clicar em start DLL FUNCTION Llama( cModel AS LPSTR, cPrompt AS LPSTR, pFunc AS PTR ) AS VOID PASCAL LIB "llama64.dll" https://uploaddeimagens.com.br/images/004/700/688/original/erro.png?1703921284
by jhnsnlb
Sat Dec 30, 2023 7:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Using Microsoft AI Phi-2 from FWH
Replies: 51
Views: 8325

Re: HBIDE - Will there be any further development?

Hola, Aquí usando SetEdit y el editor de Free Pascal + SetEdit saca binarios para Linux pero no para Windows. https://setedit.sourceforge.net/ Tiene longitud de linea corta y para evitarlo en algunos .prg utilizo el editor de Free Pascal + Editor ...
by paquitohm
Wed Sep 06, 2023 11:38 am
 
Forum: To do - WishList / Por hacer - Peticiones
Topic: HBIDE - Will there be any further development?
Replies: 18
Views: 12788

xHarbour Commercial and latest FWH

... Should return true lSmtpInit := SmtpInitialize(CSTOOLS9_LICENSE_KEY) DLL FUNCTION SmtpInitialize(license AS LPSTR, initdata AS LPSTR) AS BOOL ; PASCAL FROM "SmtpInitializeA" LIB hSmtp The license key is a define for a long string of random letters. The error I get is: Compiler version: ...
by Randal
Sat Aug 05, 2023 2:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xHarbour Commercial and latest FWH
Replies: 3
Views: 358

Les saludo. Soy McCoy, nuevo en este foro

... Web, Linux, Mac). También he conocido otros lenguajes y plataformas informáticas, habiendo visto o aprendido un poco de lenguajes como Fortran, Pascal, un poquito de Lenguaje C, MS Basic de los 80s, un poquito de FiveWin en sus inicios, Apex de Oracle, VBA de MS Office, TCLOAD para POSs de los ...
by rodmc
Tue Jun 27, 2023 4:41 am
 
Forum: mod_harbour
Topic: Les saludo. Soy McCoy, nuevo en este foro
Replies: 3
Views: 678

Re: POR QUE ELIMINARON MI PREGUNTA...A QUE SE DEBE...

... pregunta jamás del foro. Si me consta que el foro a veces, de Pascuas a Ramos, podría sufrir algun tipo de problema Y basándonos en lo que decía Pascal: "El principio de toda moral es pensar bien de los demás", su pregunta más pertinente habría sido "¿ Alguien sabe qué pasó con ...
by paquitohm
Tue May 23, 2023 3:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: POR QUE ELIMINARON MI PREGUNTA...A QUE SE DEBE...
Replies: 2
Views: 333

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 LPSTR ) AS _INT PASCAL FROM "MandaPaqueteFiscal" ...
by Antonio Linares
Sat Apr 22, 2023 10:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error al leer un dll
Replies: 19
Views: 1498

Re: DLLCALL under Fivewin

... I use an external one. Any time I do a print preview, and then want a PDF, I call this. Thus it is called many times each day. Note these are PASCAL functions, and also note how I create the handle, and then release the .dll at the end. It never has a problem. The code is built with FWH, Harbour, ...
by TimStone
Thu Dec 01, 2022 10:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DLLCALL under Fivewin
Replies: 45
Views: 2633

Re: DLLCALL under Fivewin

To find if a function is PASCAL or not, simply use such clause or remove it and check if it works or not. Thats the simplest way FWH should not affect Harbour's DllCall() behavior, so I guess that you are using wrong parameters with DllCall() ...
by Antonio Linares
Thu Dec 01, 2022 4:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DLLCALL under Fivewin
Replies: 45
Views: 2633

Re: DLLCALL under Fivewin

hi Antonio,
Antonio Linares wrote:Why don't you try to use the FWH DLL FUNCTION way ? :-)

i have to find out Parameter Type "as PASCAL" to use DLL Function ...

DllCall() is a Harbour function.

it work with same Syntax and Result under HMG and Xbase++ so why not with Fivewin :?:
by Jimmy
Thu Dec 01, 2022 3:56 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DLLCALL under Fivewin
Replies: 45
Views: 2633

Re: Everything under Fivewin

Dear Jimmy, It seems that you have a typo here: DLL FUNCTION Everything_SetRequestFlags( nFlag AS DWORD ) AS VOID PASCAL FROM "Everything_SetSearchA" LIB hDll it should be: DLL FUNCTION Everything_SetRequestFlags( nFlag AS DWORD ) AS VOID PASCAL FROM "Everything_SetRequestFlags" ...
by Antonio Linares
Mon Nov 21, 2022 12:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Everything under Fivewin
Replies: 17
Views: 1089

Re: Everything under Fivewin

hi, i have build these DLL FUNCTION for Everything32.DLL (32 Bit) DLL FUNCTION Everything_SetSearchW(cText AS LPSTR )      AS VOID PASCAL LIB "Everything32.dll"DLL FUNCTION Everything_SetSearchA(cText AS LPSTR )      AS VOID PASCAL LIB "Everything32.dll"DLL ...
by Jimmy
Mon Nov 14, 2022 11:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Everything under Fivewin
Replies: 17
Views: 1089

Re: call DLL under FiveWin

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

Re: Win 10 and getUrl

... := .f. endif DLL FUNCTION URLDOWNLOADTOFILE( pCaller AS LONG, cUrl AS LPSTR, cFileName AS LPSTR, nReserved AS DWORD, nFnCB AS LONG ) AS LONG; PASCAL FROM "URLDownloadToFileA" LIB "urlmon.dll" but sometimes run on win 10 on windows seven Have problem I wish a system to use ...
by Silvio.Falconi
Sun Jun 12, 2022 7:59 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Win 10 and getUrl
Replies: 4
Views: 549

Re: IE

... browser</button> </body> </html> ENDTEXT return cHtml DLL FUNCTION WEBVIEW_CREATE( nDebug AS LONG, hWndParent AS LONG ) AS LONG PASCAL FROM "webview_create" LIB hDLL DLL FUNCTION WEBVIEW_RUN( hWebView AS LONG ) AS VOID PASCAL FROM "webview_run" LIB hDLL DLL ...
by Natter
Thu May 26, 2022 12:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: IE
Replies: 39
Views: 1680
Next

Return to advanced search