Search found 133 matches: dbskipper

Return to advanced search

using the method bskip wbrowse

... ); ENDIF ELSEIF nRadio == 2 IF (cAlias)->PrEstq > 0 ; IF( nRecords < 0, nRecords--, nRecords++ ) ; ENDIF ENDIF nSkipped := (cAlias)->( DbSkipper( nRecords ) ) RETURN nSkipped
by Joao Cezar
Fri Oct 25, 2013 6:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: using the method bskip wbrowse
Replies: 1
Views: 521

Utilizando el método bSkip wbrowse

... ); ENDIF ELSEIF nRadio == 2 IF (cAlias)->PrEstq > 0 ; IF( nRecords < 0, nRecords--, nRecords++ ) ; ENDIF ENDIF nSkipped := (cAlias)->( DbSkipper( nRecords ) ) RETURN nSkipped
by Joao Cezar
Fri Oct 25, 2013 5:49 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Utilizando el método bSkip wbrowse
Replies: 0
Views: 286

Re: Migrating to Harbour

Richard, Enrico I use this in my main program #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 Thank you. And ...
by Enrico Maria Giordano
Sat Oct 05, 2013 12:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Migrating to Harbour
Replies: 52
Views: 16820

Re: Migrating to Harbour

Enrico

I use this in my main program

#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 Oct 05, 2013 11:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Migrating to Harbour
Replies: 52
Views: 16820

Re: Mysql ABM

... es un complemento más de Eagle1 y se pueden usar conjuntamente. E1RDD implementa navegación por las tablas (DbGoTo(), DbGoBotton(), DbGoTop(), DbSkipper(), etc), Altas, bajas y modificaciones, aceso a registros y sus campos etc en definitiva está implementado todo el RDD DBF... pero no hay ...
by xmanuel
Wed Jul 31, 2013 12:08 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Mysql ABM
Replies: 13
Views: 4745

Re: How do xHarbour and Harbour compatible?

... xharbour to harbour I have added in my main program the following (maybe now it is not needed anymore, Antonio ?) #ifndef __XHARBOUR__ FUNCTION DbSkipper( n ) ; RETURN __DbSkipper( n ) FUNCTION DbPack() ; RETURN __DbPack() FUNCTION DbZap() ; RETURN hb_DbZap() FUNCTION CurDrive( x ) ; RETURN ...
by Richard Chidiak
Mon Jul 01, 2013 11:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How do xHarbour and Harbour compatible?
Replies: 19
Views: 3902

From Xharbour to Harbour

... , we have to #include "hbcompat.ch" on the top of ever program, easier to change fivewin.ch 2. From Bayron #ifndef __XHARBOUR__ FUNCTION DbSkipper( n ) ; RETURN __DbSkipper( n ) FUNCTION DbPack() ; RETURN __DbPack() FUNCTION DbZap() ; RETURN hb_DbZap() FUNCTION CurDrive( x ) ; RETURN ...
by Richard Chidiak
Mon Mar 11, 2013 8:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: From Xharbour to Harbour
Replies: 7
Views: 2533

Re: Clase TDb o TDatabase....cual usar?

#INCLUDE "FIVEWIN.CH" #define _DbSkipper DbSkipper //----------------------------------------------------------------------------// CLASS TDb DATA nArea AS NUMERIC INIT 0 DATA lBuffer DATA lShared AS LOGICAL INIT .t. DATA aBuffer DATA ...
by Compuin
Thu Feb 28, 2013 6:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Clase TDb o TDatabase....cual usar?
Replies: 10
Views: 2891

Re: listbox recno() display

... 45, 45, 45, 45, 45 , 40, 50 ; ON CHANGE ( have tried all the syntax below and more ) ; SIZE 284, 137 OF oDlg //ON CHANGE oLbx:bSkip:= {|nRecno| , (dbskipper(TM->recno() ) ) } ; //ON CHANGE {|nRecno|, oLbx:recno() } ; //ON CHANGE oLbx: {|nRecno|, TM->recno() } ; frustration is just clouding ...
by brewster
Sun Dec 16, 2012 2:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: listbox recno() display
Replies: 7
Views: 1345

listbox recno() display

... "DR","Notes" ; FIELDSIZES 60, 45, 45, 45, 45, 45 , 40, 50 ; SIZE 284, 137 OF oDlg // possible ?? // space(5)+ {|nRecs|,dbskipper()} //trans(oTmd:recno(),'99,999') +; // ' / '+trans(oTmd:lastrec(),'99,999') OF oDlg // possible //{|nRecs|,oLbx:keyno() } Any help, much ...
by brewster
Fri Dec 14, 2012 8:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: listbox recno() display
Replies: 7
Views: 1345

Re: recompilar fiveh.lib

Antonio probé con la función (yo las veo las dos iguales). Hice un prg con tu función la compile y el obj lo adicione a la librería fiveh.lib e intenté ingresando la función en mi prg original y en los dos casos siguió dando el mismo error. Lo que hice fue reemplazar tanto en tdatabse como en wbrows...
by surGom
Sat Sep 22, 2012 12:38 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: recompilar fiveh.lib
Replies: 47
Views: 15727

Re: recompilar fiveh.lib

Disculpa, creo que es al reves:

Prueba con dos guiones:

function _DbSkipper( x )

return __DbSkipper( x )

ó

function _DbSkipper( x )

return __DbSkipper( x )

Esto se debe a que usaba distintos nombres en Harbour y xHarbour
by Antonio Linares
Fri Sep 21, 2012 9:04 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: recompilar fiveh.lib
Replies: 47
Views: 15727

Re: recompilar fiveh.lib

Prueba con dos guiones:

function DbSkipper( x )

return __DbSkipper( x )
by Antonio Linares
Fri Sep 21, 2012 8:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: recompilar fiveh.lib
Replies: 47
Views: 15727

Re: recompilar fiveh.lib

Complie nuevamente y dió esto Error: Unresolved external '_HB_FUN_FW_GT' referenced from E:\FWH712\LIB\FIVEH.LIB|DBTOOLS Error: Unresolved external '_HB_FUN__DBSKIPPER' referenced from E:\FWH712\LIB\FIVEH.LIB|DATABASE Error: Unresolved external '_HB_FUN_CREATEOBJECT' referenced from OBJ\RMAIL.OBJ Er...
by surGom
Fri Sep 21, 2012 5:48 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: recompilar fiveh.lib
Replies: 47
Views: 15727

Re: recompilar fiveh.lib

Añade esta función:

function DbSkipper( x )

return _DbSkipper( x )
by Antonio Linares
Fri Sep 21, 2012 4:30 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: recompilar fiveh.lib
Replies: 47
Views: 15727
PreviousNext

Return to advanced search

cron