Search found 10 matches: cclsname

Return to advanced search

Re: Error: Unresolved external '_HB_FUN___CLS_PARAM' referenced

Prueba a cambiar esta línea:

__oDatabase := HBClass():New( cClsName, __CLS_PARAM ( cFromClass ) )

así:

__oDatabase := HBClass():New( cClsName, cFromClass )
by Antonio Linares
Sun Apr 16, 2017 12:03 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error: Unresolved external '_HB_FUN___CLS_PARAM' referenced
Replies: 27
Views: 2291

Re: Migrar xHarbour a Harbour HBClass

Y a que se debe que lance el error al cambiar __oDatabase := HBClass():New( cClsName, __CLS_PARAM ( cFromClass ) )por __oDatabase := HBClass():New( cClsName,{ cFromClass } ) ?
by Compuin
Sat Apr 15, 2017 12:09 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Migrar xHarbour a Harbour HBClass
Replies: 15
Views: 2252

Re: Migrar xHarbour a Harbour HBClass

Aca el codigo function TMyMSQuery( cCls ) ; return( MyGenClass( cCls, TMSQuery() ) ) The variable __aHCls AAdd( __aHCls, { cClsName, __nClassH } ) the class and handle How free static __aHCls := {} #include "HbClass.ch" function MyGenClass( cClsName, FromClass ) local n, __nClassH, ...
by Compuin
Fri Apr 14, 2017 11:53 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Migrar xHarbour a Harbour HBClass
Replies: 15
Views: 2252

Migrar xHarbour a Harbour HBClass

Hola

MIgrando de xHarbour a Habrbour 3.2 tengo problemas con la HBClass, al parecer Harbour no la reconoce

__oDatabase := HBClass():New( cClsName, __CLS_PARAM ( cFromClass ) )

Ya que me arroja lo siguiente

Error: Unresolved external '_HB_FUN___CLS_PARAM' referenced from...

Alguna solucion ?
by Compuin
Fri Apr 14, 2017 11:01 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Migrar xHarbour a Harbour HBClass
Replies: 15
Views: 2252

Re: "Snap" for Clipper

...  1143  1440  2036  2044                   3884  3887 CCLASSNAME              WINDOW.PRG     2074  2343  2348  2350  4052  4061  4080  4087  4091 CCLSNAME                WINDOW.PRG      528   962   964   974   980 CDATA                  WINDOW.PRG      665  3388  3396  3406  3409  3412  3416  3418 ...
by Antonio Linares
Sat Oct 26, 2013 9:44 am
 
Forum: Off Topic / Otros temas
Topic: "Snap" for Clipper
Replies: 7
Views: 6699

Language C ( To Antonio )

HB_FUNC( OLEWECREATE ) { HWND hWndCtrl; LoadAtl(); hWndCtrl = CreateWindowEx( (DWORD) 0 , // nExStyle (LPCTSTR) "AtlAxWin" , // cClsName (LPCTSTR) hb_parc( 1 ) , // cProgId (DWORD) WS_OVERLAPPEDWINDOW , // style CW_USEDEFAULT , // nLeft CW_USEDEFAULT , // nTop 0 , // nWidth 0 , // ...
by lailton.webmaster
Sat Jul 25, 2009 2:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Language C ( To Antonio )
Replies: 17
Views: 2814

Re: cActiveX ( To antonio )

... supplied as the first parameter HWND hWndCtrl; LoadAtl(); hWndCtrl = CreateWindowEx( (DWORD) 0 , // nExStyle (LPCTSTR) "AtlAxWin" , // cClsName (LPCTSTR) hb_parc( 1 ) , // cProgId (DWORD) WS_OVERLAPPEDWINDOW , // style CW_USEDEFAULT , // nLeft CW_USEDEFAULT , // nTop 0 , // nWidth 0 ...
by lailton.webmaster
Mon Jul 20, 2009 11:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: cActiveX ( To antonio )
Replies: 11
Views: 4212

cActiveX ( To antonio )

HB_FUNC( OLEWECREATE ) { HWND hWndCtrl; LoadAtl(); hWndCtrl = CreateWindowEx( (DWORD) 0 , // nExStyle (LPCTSTR) "AtlAxWin" , // cClsName (LPCTSTR) hb_parc( 1 ) , // cProgId (DWORD) WS_OVERLAPPEDWINDOW , // style CW_USEDEFAULT , // nLeft CW_USEDEFAULT , // nTop 0 , // nWidth 0 , // ...
by lailton.webmaster
Mon Jul 20, 2009 8:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: cActiveX ( To antonio )
Replies: 11
Views: 4212

How free Class Dymanic

... Have function for create DATAfields function TMyMSQuery( cCls ) ; return( MyGenClass( cCls, TMSQuery() ) ) The variable __aHCls AAdd( __aHCls, { cClsName, __nClassH } ) the class and handle How free static __aHCls := {} #include "HbClass.ch" //---------------------------------------------------------------------------// ...
by Vladimir Zorrilla
Thu Jun 12, 2008 12:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How free Class Dymanic
Replies: 1
Views: 487

Como libero de memoria una clase dinamica

... DATAfields function TMyMSQuery( cCls ) ; return( MyGenClass( cCls, TMSQuery() ) ) Uso una variable __aHCls a la que le agrego AAdd( __aHCls, { cClsName, __nClassH } ) la clase y su manejador pero no se como liberar esro por que cada vez que llamo a la clase me consume recursos static __aHCls ...
by Vladimir Zorrilla
Thu Jun 12, 2008 12:00 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como libero de memoria una clase dinamica
Replies: 3
Views: 1008

Return to advanced search