Search found 492 matches: limit

Return to advanced search

Re: Windows Toast notifications - second try

... the "official" C++ way to do it, as Borland simply does not compile the C++ code. And we use a different approach that help us but also limit us.
by Antonio Linares
Mon Apr 25, 2016 4:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Windows Toast notifications - second try
Replies: 86
Views: 25576

xBrowse improvement

... is the delay in a select with many many records . I saw that browse for SQL ( like Mysql-Front) use this process SELECT * FROM dabase.client LIMIT 100 when I go over the 100 records automatically there is another select SELECT * FROM dabase.client ORDER LIMIT 100,100; it would be nice to ...
by Maurizio
Wed Apr 13, 2016 7:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse improvement
Replies: 2
Views: 623

Re: Problem with EDIT_GET_LISTBOX in xBrowse

... 1 ] + COL_EXTRAWIDTH + ;                            IfNil( ::nBtnWidth, 10 ) + GetSysMetrics( 2 ))       //BYTE-ONE  2. To limit the listbox on small browses.   nWidth := min(nWidth,::oBrw:BrwWidth())  //BYTE-ONE
by byte-one
Thu Mar 03, 2016 2:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with EDIT_GET_LISTBOX: ADDITIONAL WORK REQUIRED
Replies: 6
Views: 1185

Re: Xbrowse a speed problem using SCOPE ?

...  33<     44      45      46      5       6 The SET RELATION does a SEEK on 3 iin the service file so the pointer is at 3 but there is no upper limit, so you will also see 4, 5, and 6 in this case. So, I do not understand why yours is limited to 3 unless it is an artifact of your test method. ...
by James Bott
Tue Mar 01, 2016 7:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse a speed problem using SCOPE ?
Replies: 30
Views: 9837

Re: Xbrowse a speed problem using SCOPE ?

Please explain how you solved it using SET RELATION. That just keeps the records synced but it doesn't limit the display to a set of data (e.g. one customer). I think SCOPED RELATION. Command syntax: SET RELATION TO ......... SCOPED Function: OrdSetRelation( .... ) Hi Mr. ...
by Horizon
Tue Mar 01, 2016 6:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse a speed problem using SCOPE ?
Replies: 30
Views: 9837

Re: Xbrowse a speed problem using SCOPE ?

Please explain how you solved it using SET RELATION. That just keeps the records synced but it doesn't limit the display to a set of data (e.g. one customer).

I think SCOPED RELATION.

Command syntax:
SET RELATION TO ......... SCOPED

Function:
OrdSetRelation( .... )
by nageswaragunupudi
Tue Mar 01, 2016 4:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse a speed problem using SCOPE ?
Replies: 30
Views: 9837

Re: Xbrowse a speed problem using SCOPE ?

Uwe, Please explain how you solved it using SET RELATION. That just keeps the records synced but it doesn't limit the display to a set of data (e.g. one customer). Also, speed could be affected by the database scope and/or the browse. Have you checked the speed of just the scope ...
by James Bott
Tue Mar 01, 2016 4:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse a speed problem using SCOPE ?
Replies: 30
Views: 9837

Re: Report Drill Down

ok ok I understood !! we have this limit !!! if you cannot create a report drill down, we must always be patient if some customers in the future ask us it, we must have patience to convince our customers that this type of report can not 'be ...
by Silvio.Falconi
Mon Feb 01, 2016 12:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Report Drill Down
Replies: 34
Views: 9192

Re: Fivewin SlotMachine

... a < ZONK > the game will be stoped and the reached values are set to 0 loosing the values 3. 2 players are gambling for POINTS 4. A trial-limit : Points are counted after reaching the limit of trials 5. adding any game-images ( to be loaded from a subdirectory ) 6. a DBF to add player-names, ...
by ukoenig
Sat Dec 12, 2015 1:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin SlotMachine
Replies: 58
Views: 16930

Re: TDolphin y FWH

... clave primaria y las sentencias que le preceden son: cSqlA := "SELECT * FROM latabla WHERE (TIPUSOLI = 'A' OR TIPUSOLI = 'B') AND ESTAT = 1 LIMIT 1" (Pongo 'LIMIT 1' porque quiero trabajar registro a registro). La clave primaria es fundamental para la modificación UPDATE y el borrado ...
by joseluisysturiz
Thu Oct 01, 2015 1:56 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: TDolphin y FWH
Replies: 8
Views: 1501

Re: TDolphin y FWH

... clave primaria y las sentencias que le preceden son: cSqlA := "SELECT * FROM latabla WHERE (TIPUSOLI = 'A' OR TIPUSOLI = 'B') AND ESTAT = 1 LIMIT 1" (Pongo 'LIMIT 1' porque quiero trabajar registro a registro). La clave primaria es fundamental para la modificación UPDATE y el borrado ...
by Hector Pedro Lerda
Wed Sep 30, 2015 1:31 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TDolphin y FWH
Replies: 8
Views: 1501

Re: TDolphin y FWH

... clave primaria y las sentencias que le preceden son: cSqlA := "SELECT * FROM latabla WHERE (TIPUSOLI = 'A' OR TIPUSOLI = 'B') AND ESTAT = 1 LIMIT 1" (Pongo 'LIMIT 1' porque quiero trabajar registro a registro). oQry := oConDB:Query( cSqlA ) While oQry:nRecCount > 0 ../... resto de ...
by FiveWiDi
Tue Sep 29, 2015 10:38 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: TDolphin y FWH
Replies: 8
Views: 1501

Re: Combobox Data

... I don't think I have ever dealt with the situation where we needed to remove an option for all future records. Is the purpose of the combobox to limit users to specific choices, or are these just suggestions? Maybe if you provided more details, I could offer more relevant suggestions. James
by James Bott
Fri Sep 18, 2015 5:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Combobox Data
Replies: 7
Views: 1794

Re: ADO RDD xHarbour

... a DBF RDD loads only 20 records into memory. Opening 20 databases with ADORDD loads 20 entire databases into memory. Yes modifying your code to limit the range of the records loaded is the best solution and that is a viable option if you have a program written for a single customer. However, ...
by James Bott
Fri Sep 11, 2015 11:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 473230

Re: ADO RDD xHarbour

James, adordd is in big changes and will only read from table once when it opens it. You can also use with a query to limit the range of the set. After loading the set it only re read the table again when new additions by others are made. Next week Ill post a new version with big ...
by AHF
Fri Sep 11, 2015 4:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 473230
PreviousNext

Return to advanced search