Search found 113 matches: skipper

Return to advanced search

Re: Area de trabajo no usada: ORDKEYNO

... = { || oRS1Cli:RecordCount } oBrow:bGoTop = { || oRS1Cli:MoveFirst() } oBrow:bGoBottom = { || oRS1Cli:MoveLast() } oBrow:bSkip = { | nSkip | Skipper( oRs1Cli, nSkip ) } oBrow:lcellstyle := .f. oBrow:nlinestyle := 2 oBrow:nclrpane := { || iif( ( oRS1Cli:AbsolutePosition / 2 ) - INT( oRS1Cli:AbsolutePosition ...
by jpcavagnaro
Sun Sep 11, 2022 12:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Area de trabajo no usada: ORDKEYNO
Replies: 3
Views: 318

Re: dbfntx very slow with 2+ users

... in older Network it was slow to open a DBF, read/write and close it. but that have change very slow are TBrowse & Co which use a "Skipper" to navigate. Spezial when using FILTER without SCOPE / Index it can very slow on big Database and make much Traffic btw. same with SQL ...
by Jimmy
Thu Mar 31, 2022 3:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: dbfntx very slow with 2+ users
Replies: 41
Views: 6803

Re: System info, Tips & Tricks, scharing project info

hi

as James say you are using FILTER on "Skipper" of "Browse"
DbSetFilter() will use hole DBF and "Skipper" will test until EOF() / BOF()

i use DbSetFilter() only with SCOPE
SCOPE will "limit" EOF() / BOF()
by Jimmy
Mon Jan 17, 2022 3:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: System info, Tips & Tricks, scharing project info
Replies: 20
Views: 1450

Re: conflicto con database

... LISTBOX olbm FIELDS (oDbf:calias) ->NAPE ID 101; ON DBLCLICK (lacepto:= .t.,odlg:end()) of odlg olbm:setfocus() olbm:bSkip := { | nRecs | odbf:Skipper( nRecs ) } 1-Quite esta parte olbm:bSeek := {|lRet| olbm:DbfSeek(.T.) } oLbm:bkeydown := {|nkey,nflags| iif(nKey = VK_RETURN, nBut:setfocus(),.f.)} ...
by surGom
Thu Oct 24, 2019 1:12 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: conflicto con database
Replies: 4
Views: 917

SEAMAP your Skipper Guide

https://mybergland.com/fwforum/seamap.jpg Hello friends, we have now ready two version of SEAMAP for mod harbour. One based on functions and one in OOP style. SEAMAP shows all functionality you need to create a dbf file, browse the data, add, edit and delete records. SEAMAP is a web pag...
by Otto
Mon Sep 23, 2019 12:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SEAMAP your Skipper Guide
Replies: 0
Views: 337

SEEMAP your Skipper Guide

https://mybergland.com/fwforum/seamap.jpg Hello friends, we have now ready two version of SEAMAP for mod harbour. One based on functions and one in OOP style. SEAMAP shows all functionality you need to create a dbf file, browse the data, add, edit and delete records. SEAMAP is a web pag...
by Otto
Mon Sep 23, 2019 12:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: SEEMAP your Skipper Guide
Replies: 0
Views: 312

SEEMAP your Skipper Guide

https://mybergland.com/fwforum/seamap.jpg Hello friends, we have now ready two version of SEAMAP for mod harbour. One based on functions and one in OOP style. SEAMAP shows all functionality you need to create a dbf file, browse the data, add, edit and delete records. SEAMAP is a web pag...
by Otto
Mon Sep 23, 2019 12:36 pm
 
Forum: mod_harbour
Topic: SEEMAP your Skipper Guide
Replies: 0
Views: 286

TDatabase FWH 17.08 : Datas and Methods

... method 89. Skip( nRecords ) Skips nRecords, executes bBof or bEof when necessary and loads field values into ::aBuffer if ::lBufer is true. 90. Skipper Internal Used by XBrowse, This method is not useful directly in application. 91. SqlQuery( cSql, lExecute, lCompact ) 92. UnLock() Removes all ...
by nageswaragunupudi
Fri Sep 15, 2017 12:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TDatabase FWH 17.08 : Datas and Methods
Replies: 1
Views: 1782

Re: Twbrowse skipper tdata

Norberto,

Try using your database with fwh\samples\testbrw.prg and see if that is working.

Possibly your program is working but showing an unexpected result, i.e. there is a filter that filters out all the data.

Let us know what you find.

Regards,
James
by James Bott
Mon Jun 12, 2017 4:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Twbrowse skipper tdata
Replies: 3
Views: 1222

Re: Twbrowse skipper tdata

... Here is some ListBox code I used before xBrowse and ADO ... and not tData .. I don't know if this code will help you ?? I have included the Skipper function as well. Rick Lipkin @ 0,0 LISTBOX oBrw FIELDS   ;      oRs:Fields("novellid"):Value,;      substr( trim(oRs:Fields("lname"):Value)+", ...
by Rick Lipkin
Mon Jun 12, 2017 4:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Twbrowse skipper tdata
Replies: 3
Views: 1222

Re: Twbrowse skipper tdata

Norberto,

TData inherits the skipper() method from TDatabase (it doesn't have one of it's own), so any changes would have been in TDatabase. I haven't use TWBrowse in years so I haven't noticed your problem.

Do you know what version your app was previously compiled with when it was working?

James
by James Bott
Mon Jun 12, 2017 4:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Twbrowse skipper tdata
Replies: 3
Views: 1222

Twbrowse skipper tdata

HI, i have a old appl, i try compile with fwh17.04 and my twbrowse is empty, without records, i use twbrowse, tdata (from james), something is changed ? i dont change the code of this appl for years.

this code Works or something is changed:

oLbx:bSkip := { | nRecs | oCCBA:skipper( nRecs ) }

thanks
by norberto
Mon Jun 12, 2017 1:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Twbrowse skipper tdata
Replies: 3
Views: 1222

Re: pagers for xBrowse

... one skip. Mouse Click causes full refresh. Keeping this in mind, I provide you here a test program, which shows continuously how many times the Skipper is called. #include "fivewin.ch"REQUEST DBFCDX#ifndef __XHARBOUR__   #xtranslate DbSkipper => __DbSkipper#endifstatic nSkipperCalls ...
by nageswaragunupudi
Wed May 18, 2016 6:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: pagers for xBrowse
Replies: 14
Views: 3867

Re: Problem with TPanel Paint Method

... click it changes to the new name. I am using FWH 15.05/xHarbour Update 2: OK, I found the problem. Replace this line: oBrw:bSkip:= {|nRecs| oCust:skipper(nRecs) } With this: oBrw:setoDBF( oCust ) And all is OK. My bad! James
by James Bott
Wed Sep 09, 2015 4:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with TPanel Paint Method
Replies: 12
Views: 2566

Re: xBrowse + OO Array

... oArray:aData ), without it, xbrowse shows more data that array has, and the navigation work bad, I think I need to review some method like EOF or skipper. regards Marcelo 1) I have just posted a sample SetXBrowse() method calling SetArray() internally. We have done this because the internal data ...
by nageswaragunupudi
Sat Jun 07, 2014 3:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse + OO Array
Replies: 16
Views: 4793
Next

Return to advanced search