Search found 133 matches: dbskipper

Return to advanced search

Re: Insertar registro dentro xBrowse...

... aRecord,nRecord   local aRecordUp,nRecordUp   if NetRecLock(, nRecord:=RECNO() )      aRecord := FieldsToArray()      if DbSkipper(-1)=-1 .and. NetRecLock(, nRecordUp:=RECNO() )         aRecordUp := FieldsToArray()         ArrayToFields(aRecord)  ...
by ACC69
Thu Mar 03, 2016 9:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Insertar registro dentro xBrowse...
Replies: 16
Views: 6530

Re: ADORDD on FW9.12

Antonio, I follow your advice and try with Harbour 3.4 and now I have this errors: the same: _hb_vmProcessSymbolsEx from adordd.lib and added the follows: _hb_fun_loadlibrary, _hb_fun_freelibrary and _hb_fun_dbskipper, from fiveh.lib I need to upgrade something else, isn't it.? FW9.12, is compatible...
by lgarcia
Wed Nov 18, 2015 2:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADORDD on FW9.12
Replies: 6
Views: 1014

Re: ADO RDD xHarbour

... index condition. All this without adding or changing keys being filtered. So in xbrowse what is your bskip ? ::bSkip := {| n | ( ::cAlias )->( DbSkipper( IfNil( n, 1 ) ) ) },; adordd should be treated as any dbf rdd.
by AHF
Mon May 25, 2015 3:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 468648

Re: Xbrowse multi dbcombos

Mr. Nages, Thank you for the reply. I understand your use of 1) & 2) in your response, but not in the context of my above attached compileable sample. How would 1) or 2) apply to configuring the excerpt from compilable sample supplied above           WITH OBJECT oBrw    ...
by brewster
Fri Apr 10, 2015 2:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse multi dbcombos
Replies: 4
Views: 1413

Re: Migrar a Harbour - Errores del compilador

Añade este fichero de cabecera:

#include <hbapiitm.h>

Y prueba a añadir esta función:

function DBSKIPPER( x )

return __DBSkipper( x )
by Antonio Linares
Tue Dec 16, 2014 8:58 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Migrar a Harbour - Errores del compilador
Replies: 29
Views: 6071

Re: Migrar a Harbour - Errores del compilador

Con lo que dice Antonio queda arreglado ese error. Pero ahora me da otros nuevos en el linkado: call to function hb_itemRelease with no prototipe call to function hb_itemReturn with no prototipe call to function hb_itemArrayNew with no prototipe call to function hb_itemPutC with no prototipe unresol...
by Verhoven
Tue Dec 16, 2014 8:30 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Migrar a Harbour - Errores del compilador
Replies: 29
Views: 6071

Re: TWBrowse en Harbour..

Adrian, Prueba a añadir esta función a tu PRG principal: function _DbSkipper( ... ) // escribe esos puntos tal cual return DbSkipper( ... ) // igual aqui Gracias Antonio Linares por tu interes, pero creo que me dedicare todo este fin de semana a pasar de ...
by ACC69
Sun Jul 13, 2014 1:18 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: TWBrowse en Harbour..
Replies: 8
Views: 1050

Re: TWBrowse en Harbour..

Adrian,

Prueba a añadir esta función a tu PRG principal:

function _DbSkipper( ... ) // escribe esos puntos tal cual

return DbSkipper( ... ) // igual aqui
by Antonio Linares
Sun Jul 13, 2014 12:18 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: TWBrowse en Harbour..
Replies: 8
Views: 1050

Re: TWBrowse en Harbour..

Adrian en que te falla, yo lo estoy utilizando con harbour 3.2 la librería que está en el enlace y no hay fallos. Luis Hola Luis, gracias de nuevo por contestar, es que me indica el error: que no existe la funcion _DbSkipper, y yo uso igual Harbour 3.20 y Bcc582 con fivewin 10.6,no se si tendra que...
by ACC69
Sat Jul 12, 2014 11:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TWBrowse en Harbour..
Replies: 8
Views: 1050

Re: Error con la librería twbrw32.lib

Hola,
Para dbskipper trata insertando la siguiente funcion:
Code: Select all  Expand view
FUNCTION DbSkipper( n ) ; RETURN __DbSkipper( n )

Si te funciona habria que hallar el equivalente para "_HB_FUN___CLS_PARAM"

Saludos,

George
by George
Thu Apr 03, 2014 4:23 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error con la librería twbrw32.lib
Replies: 10
Views: 903

Error con la librería twbrw32.lib

Hola :-) Parece que ya estoy logrando migrar mi proyecto de FHW rpe-release a la última versión. Gracias a vuestra ayuda. Este es el último error que aparece (y creo que el último). Resulta que uso la librería twbrw32.lib. Con FWH pre-release ha funcionado correctamente, pero aquí es como si no se i...
by mlolo
Thu Apr 03, 2014 4:00 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error con la librería twbrw32.lib
Replies: 10
Views: 903

xBrowse ERROR

Hi I have any time this error on my application How to resolve it ??? Error DBCMD/2001 Workarea non in use: __DBSKIPPER Stack-List ========== Called from: => __DBSKIPPER(0) Called from: fiveh\xbrowse.prg => (b)TXBROWSE_SETRDD(3936) Called from: fiveh\xbrowse.prg => (b)TXBROWSE(436) Called f...
by vensanto
Thu Mar 13, 2014 1:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse ERROR
Replies: 14
Views: 2374

Re: Trying to Migrate Harbour

try this

#ifndef __XHARBOUR__
FUNCTION DbSkipper( n ) ; RETURN __DbSkipper( n )
FUNCTION DbPack() ; RETURN __DbPack()
FUNCTION DbZap() ; RETURN hb_DbZap()
FUNCTION CurDrive( x ) ; RETURN hb_CurDrive( x )
#EndIf

Hth

Richard
by Richard Chidiak
Sat Feb 08, 2014 7:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Trying to Migrate Harbour
Replies: 3
Views: 697

Re: Trying to Migrate Harbour

Try

#ifdef __HARBOUR__
#ifndef __XHARBOUR__
#xtranslate DbSkipper => DbSkip
#endif
#endif
by Lailton
Sat Feb 08, 2014 12:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Trying to Migrate Harbour
Replies: 3
Views: 697

Trying to Migrate Harbour

... from C:\FWH13\LIB\TWBRW32H.LIB|WBROWSE I Have tbrowse.prg includes the following: #ifdef __HARBOUR__   #ifndef __XHARBOUR__      #xtranslate _DbSkipper => DbSkipper   #endif#endif But not solved ... Does anyone have this working class to harbour 3.2/FWH 13/08?
by vilian
Fri Feb 07, 2014 7:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Trying to Migrate Harbour
Replies: 3
Views: 697
PreviousNext

Return to advanced search