Search found 431 matches: pascal

Return to advanced search

Re: Fastreport help

... to select between: effective bill, print only a proforma bill or cancel. EasyReport is Fivewin. You do not have to use a scripting language like PASCAL. EasyReport can do all what you can do with FR and even more. EasyReport designer is the unique designer I know where a novice can do some changes ...
by Wanderson
Thu Nov 02, 2017 3:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fastreport help
Replies: 9
Views: 2091

Re: Fastreport help

... to select between: effective bill, print only a proforma bill or cancel. EasyReport is Fivewin. You do not have to use a scripting language like PASCAL. EasyReport can do all what you can do with FR and even more. EasyReport designer is the unique designer I know where a novice can do some changes ...
by Otto
Wed Nov 01, 2017 8:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fastreport help
Replies: 9
Views: 2091

Re: Current state of the display

DLL32 Function MonitorFromWindow( hDevice AS LONG, pr AS LONG ) AS LONG PASCAL FROM "MonitorFromWindow" LIB "user32.dll"
by Antonio Linares
Thu Aug 31, 2017 8:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Current state of the display
Replies: 7
Views: 1078

Re: Current state of the display

DLL32 Function MonitorFromWindow(hDevice AS LONG, pr AS DWORD) AS BOOL PASCAL FROM "MonitorFromWindow" LIB "user32.dll"
by Antonio Linares
Thu Aug 31, 2017 8:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Current state of the display
Replies: 7
Views: 1078

Re: AYUDA CON DLL Y ARREGLOS

Buenas Tardes. Muy agradecido por tus respuestas. Haber esta. El $ en Pascal es como el 0x en C, y significa que a continuación hay un número en hexadecimal. Por ejemplo, en Pascal escribir $FF es lo mismo que 255. En C, 0xFF es 255. Ahora necesito crear una ...
by Busmatic_wpb
Fri Aug 25, 2017 11:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: AYUDA CON DLL Y ARREGLOS
Replies: 7
Views: 845

Re: AYUDA CON DLL Y ARREGLOS

... fretcode := ACR120_Read(frHandle, Bloque, @dataRead) ::::: DLL FUNCTION ACR120_Read(frHandle AS LONG, Bloque AS LONG, @dataRead AS PTR ) AS LONG PASCAL FROM "ACR120_Read" LIB ACR120libHandle El parametro AS LONG PASCAL SERIA CORRECTO Entonces cuando se usa LPSTR Muchas Gracias..
by Busmatic_wpb
Wed Aug 23, 2017 9:57 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: AYUDA CON DLL Y ARREGLOS
Replies: 7
Views: 845

AYUDA CON DLL Y ARREGLOS

... fretcode := ACR120_Read(frHandle, Bloque, @dataRead) ::::: DLL FUNCTION ACR120_Read(frHandle AS LONG, Bloque AS LONG, @dataRead AS LPSTR) AS LONG PASCAL FROM "ACR120_Read" LIB ACR120libHandle Como pasaria al llamado para la funcion con una arrelgo a llamado a la funcion ACR120_Read y ...
by Busmatic_wpb
Wed Aug 23, 2017 4:10 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: AYUDA CON DLL Y ARREGLOS
Replies: 7
Views: 845

Re: LECTURA DE UN DLL ..

... EL LECTOR SIN CONTACTO // SI RETORNA ERRRO -xxxx QUE PUSIMOS ARRIBA Y VER ARRIBA. return DLL FUNCTION ACR120_Open(fPuerto AS LONG ) AS LONG PASCAL FROM "ACR120_Open" LIB ACR120libHandle Funciona perfecto.. ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ ...
by Busmatic_wpb
Fri Aug 11, 2017 11:45 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: LECTURA DE UN DLL ..
Replies: 14
Views: 2284

Re: LECTURA DE UN DLL ..

... ENDIF if ACR120libHandle <> 0 FreeLibrary(ACR120libHandle) ENDIF return DLL FUNCTION ACR120_Open(fPuerto AS _INT ) AS LONG PASCAL FROM "ACR120_Open" LIB ACR120libHandle DLL FUNCTION ACR120_ListTags(fPuerto AS _INT , TagFound AS _INT , @TagType AS STRING , ; @TagLength ...
by Busmatic_wpb
Fri Aug 11, 2017 12:48 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: LECTURA DE UN DLL ..
Replies: 14
Views: 2284

Re: LECTURA DE UN DLL ..

Prueba usando la claúsula PASCAL:

DLL FUNCTION ACR120_Open(fPuerto AS LONG ) AS LONG PASCAL FROM "ACR120_Open" LIB "ACR120U.DLL"
by Antonio Linares
Wed Aug 09, 2017 3:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: LECTURA DE UN DLL ..
Replies: 14
Views: 2284

LECTURA DE UN DLL ..

... ) return nil DLL FUNCTION SCardEstablishContext( SCARD_SCOPE_USER AS LONG , notUsed AS VOID , notUsed1 AS VOID , @FContext AS STRING ) AS LONG PASCAL LIB "WINSCARD.DLL"
by Busmatic_wpb
Sat Aug 05, 2017 1:57 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: LECTURA DE UN DLL ..
Replies: 14
Views: 2284

Re: lectura de un DLL -

... ) return nil DLL FUNCTION SCardEstablishContext( SCARD_SCOPE_USER AS LONG , notUsed AS VOID , notUsed1 AS VOID , @FContext AS STRING ) AS LONG PASCAL LIB "WINSCARD.DLL"
by Busmatic_wpb
Sat Aug 05, 2017 1:47 am
 
Forum: FiveWin para CA-Clipper
Topic: lectura de un DLL -
Replies: 5
Views: 2717

Re: Collegare una DLL con C Struttura

... // Stringa in Output TransactionR:=IAE17AX_Payment(@ECRBuffer,@POSBuffer) DLL32 FUNCTION IAE17AX_InitEth(ETHBuffer AS LPSTR) AS VOID PASCAL LIB "IAE17.DLL" DLL32 FUNCTION IAE17AX_Payment(@ECRBuffer AS LPSTR, @POSBuffer AS LPSTR) AS _INT PASCAL LIB "IAE17.DLL"
by a.tixi@htech.it
Wed Mar 22, 2017 3:18 pm
 
Forum: All products support
Topic: Collegare una DLL con C Struttura
Replies: 7
Views: 2901

Re: Collegare una DLL con C Struttura

... TransactionR:=IAE17AX_Payment(@ECRBuffer,@POSBuffer) DLL32 FUNCTION IAE17AX_InitEth(@ETHBuffer AS LPSTR) AS VOID PASCAL LIB "IAE17.DLL" DLL32 FUNCTION IAE17AX_Payment(@ECRBuffer AS PTR, @POSBuffer AS PTR) AS _INT PASCAL LIB "IAE17.DLL"
by a.tixi@htech.it
Wed Mar 22, 2017 1:32 pm
 
Forum: All products support
Topic: Collegare una DLL con C Struttura
Replies: 7
Views: 2901

Collegare una DLL con C Struttura

... TransactionR:=IAE17AX_Payment(@ECRData,@POSData) DLL32 FUNCTION IAE17AX_InitEth(@ETHParameters AS PTR) AS VOID PASCAL LIB "IAE17.DLL" DLL32 FUNCTION IAE17AX_Payment(@ECRData AS PTR, @POSData AS PTR) AS _INT PASCAL LIB "IAE17.DLL"
by a.tixi@htech.it
Tue Mar 21, 2017 4:11 pm
 
Forum: All products support
Topic: Collegare una DLL con C Struttura
Replies: 7
Views: 2901
PreviousNext

Return to advanced search