Search found 324 matches: bool

Return to advanced search

Re: Creando Objetos desde un OCX

Estimados, Todavía no he logrado hacer funcionar las respuestas del OCX. Me podrian ayudar con algun ejemplo como se accede a los componentes de un OCX, ya sean sus métodos, sus constantes y sus estructuras. EJ: oFiscal es el objeto creado : oFiscal:= CreateObject("HasarArgentina.ImpresoraFisca...
by mterraz
Mon Jun 12, 2017 12:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Creando Objetos desde un OCX
Replies: 16
Views: 2805

Re: Creando Objetos desde un OCX

... el tema de las estructuras, en mi código defino la siguiente estructura oEstilo: oEstilo := TStruct():New() oEstilo:AddMember('BorradoTexto',BOOL,2) oEstilo:AddMember('DobleAncho' ,BOOL,2) oEstilo:AddMember('Centrado' ,BOOL,2) oEstilo:AddMember('Negrita' ,BOOL,2) oEstilo:dobleancho:=.T. Pero ...
by mterraz
Fri Jun 09, 2017 3:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Creando Objetos desde un OCX
Replies: 16
Views: 2805

Tsbrowse 9.0 Harbour FWH17.02 y Bc 7

... s:\bcc7\include\windows\sdk\windef.h 165: Earlier declaration of 'PWORD' Error E2238 S:\HARBOU~1\INCLUDE\clipdefs.h 100: Multiple declaration for 'BOOL' Error E2344 s:\bcc7\include\windows\sdk\windef.h 154: Earlier declaration of 'BOOL' Error E2238 S:\HARBOU~1\INCLUDE\clipdefs.h 103: Multiple declaration ...
by devtuxtla
Mon Mar 20, 2017 5:05 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Tsbrowse 9.0 Harbour FWH17.02 y Bc 7
Replies: 8
Views: 1763

Tsbrowse 9.0 Harbour FWH17.02 y Bc 7

... s:\bcc7\include\windows\sdk\windef.h 165: Earlier declaration of 'PWORD' Error E2238 S:\HARBOU~1\INCLUDE\clipdefs.h 100: Multiple declaration for 'BOOL' Error E2344 s:\bcc7\include\windows\sdk\windef.h 154: Earlier declaration of 'BOOL' Error E2238 S:\HARBOU~1\INCLUDE\clipdefs.h 103: Multiple declaration ...
by devtuxtla
Mon Mar 20, 2017 5:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Tsbrowse 9.0 Harbour FWH17.02 y Bc 7
Replies: 0
Views: 466

Canal5 Calendar

... and I was wondering if anyone saw anything about the .c source that may cause a problem. #include <hbapi.h> #include <windows.h> BOOL WINAPI StretchBlt(HDC, int, int, int, int, HDC, int, int, int, int, DWORD); HB_FUNC( COMPATDC ) // ( hDC ) { hb_retnl( ( LONG ) CreateCompatibleDC( ...
by Randal
Mon Feb 13, 2017 6:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Canal5 Calendar
Replies: 15
Views: 5697

Re: Web service HTTP GET Basic Authentication howto

... += ValidateRemoteCertificate; } /// <summary> /// Certificate validation callback. /// </summary> private static bool ValidateRemoteCertificate(object sender, X509Certificate cert, X509Chain chain, SslPolicyErrors error) { //Debug.WriteLine("Trusting X509Certificate ...
by Jack
Fri Feb 10, 2017 4:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Web service HTTP GET Basic Authentication howto
Replies: 2
Views: 1152

Re: Placa USB HID programar

En realidad esta función debe ser así:

BOOL WINAPI WriteEx(int pVendorID,int pProductID, unsigned char * pData );

Code: Select all  Expand view
HB_FUNC( MYWRITEEX )
{
   hb_retl( WriteEx( hb_parnl( 1 ), hb_parnl( 2 ), hb_parc( 3 ) ) );
}
by Antonio Linares
Thu Nov 17, 2016 6:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Placa USB HID programar
Replies: 11
Views: 1534

Re: Placa USB HID programar

... end IF return ¿Que puede hacer? #pragma BEGINDUMP #include <hbapi.h> #include <windows.h> // Funcion Para Conectar el Dispositivo BOOL WINAPI Connect( int pHostWin ); HB_FUNC( MYHIDCONNECT ) { INT pHostWin; BOOL lReturn; pHostWin = hb_parni(1); lReturn = Connect(pHostWin); hb_retl(lReturn); ...
by softruz
Thu Nov 17, 2016 10:28 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Placa USB HID programar
Replies: 11
Views: 1534

Re: Libreria rddads

/* * Header file for Advantage Database Server RDD * * Copyright 1999 Alexander S.Kresin <alex@belacy.belgorod.su> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; eit...
by CarlosFossati
Thu Sep 22, 2016 10:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Libreria rddads
Replies: 4
Views: 1258

Re: create a harbour dll containing functions to be executed

... 1, ( PHB_ITEM ) pItem, 0 ); hb_itemRelease( pItem ); } else MessageBox( 0, "inside the DLL", "DOPROC", 0 ); return 0; } BOOL WINAPI DllEntryPoint( HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved ) { HB_SYMBOL_UNUSED( hinstDLL ); HB_SYMBOL_UNUSED( fdwReason ); ...
by rkurian
Thu Sep 08, 2016 8:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: create a harbour dll containing functions to be executed
Replies: 23
Views: 4256

Re: create a harbour dll containing functions to be executed

... Unresolved external '_HB_FUN_NUMAT' referenced from C:\FWH7\LIB\FIVEH.LIB|MENUITEM . . and many other ************ I inserted in MYDLL.PRG the: BOOL WINAPI DllEntryPoint( HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved ) { HB_SYMBOL_UNUSED( hinstDLL ); HB_SYMBOL_UNUSED( fdwReason ); ...
by Romeo
Wed Sep 07, 2016 9:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: create a harbour dll containing functions to be executed
Replies: 23
Views: 4256

DLL32 type object...

... stSecondSelect; } MF_OCR_RELIABLE_INFO; // MICR/OCR structure typedef struct { int iSize; int iVersion; int iRet; BYTE bFont; BYTE bMicOcrSelect; BOOL blParsing; BYTE bStatus; BYTE bDetail; char szMicrStr[MF_MICR_CHAR_MAX]; MF_OCR_RELIABLE_INFO stOcrReliableInfo[MF_MICR_CHAR_MAX]; char szAccountNumber[MF_MICR_CHAR_MAX]; ...
by Tatoo
Tue Apr 12, 2016 7:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DLL32 type object...
Replies: 1
Views: 505

Re: Upload to FTP

... is how do you know how to write the "DLL32" declarations. DLL32 Function FtpSetCurrentlyDirectory( hFtp AS LONG, cDirName AS LPSTR ) AS BOOL PASCAL FROM " FtpSetCurrentDirecotry " LIB iDLL How do you determine what goes in the FROM parameter, FtpSetCurrentDirectory, FtpSetCurrentDirectorya, ...
by Enrico Maria Giordano
Tue Feb 02, 2016 9:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Upload to FTP
Replies: 7
Views: 2087

Re: Upload to FTP

... is how do you know how to write the "DLL32" declarations. DLL32 Function FtpSetCurrentlyDirectory( hFtp AS LONG, cDirName AS LPSTR ) AS BOOL PASCAL FROM " FtpSetCurrentDirecotry " LIB iDLL How do you determine what goes in the FROM parameter, FtpSetCurrentDirectory, FtpSetCurrentDirectorya, ...
by byron.hopp
Fri Jan 29, 2016 5:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Upload to FTP
Replies: 7
Views: 2087

Re: DllPreparecall

mosh1 wrote:
DLL FUNCTION Shell_NotifyIcon( nMsg AS LONG, pNID AS LPSTR ) AS BOOL PASCAL ;
FROM "Shell_NotifyIconA" LIB "shell32.dll"


Hi Antonio,

Is this function alive?. I have tried like below. It did not worked.

Shell_NotifyIcon("testtesttest")
by Horizon
Tue Dec 29, 2015 10:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DllPreparecall
Replies: 14
Views: 2916
PreviousNext

Return to advanced search

cron