Search found 506 matches: limit

Searched query: limit

by cnavarro
Wed Jan 22, 2025 5:53 pm
Forum: FiveWin for Harbour/xHarbour
Topic: multi-column popup menu
Replies: 13
Views: 31355

Re: multi-column popup menu

... Test and Font" SEPARATOR OF oMenu BOLD //ITALIC
SEPARATOR
endif
MENUITEM Alias( 1 ) // COLORMENU CLR_RED, CLR_YELLOW
MENU SELECT Alias( 1 ) LIMIT 16 COLUMNS 1, 4, 5
ENDMENU
MENUITEM Alias( 2 )
MENU SELECT Alias( 2 ) LIMIT 06 COLUMNS 1, 2, 3
ENDMENU
MENUITEM Alias( 3 )
MENU SELECT Alias ...
by Antonio Linares
Mon Jan 06, 2025 8:29 am
Forum: Utilities / Utilidades
Topic: How to upgrade these forums / Como actualizar estos foros
Replies: 3
Views: 781

Re: How to upgrade these forums / Como actualizar estos foros

... 1234 fivetec1_forums phpbb_reports > fivetech_phpbb_reports.sql
...
mysqldump -u fivetec1_antonio -p fivetec1_forums phpbb_posts --where="1 LIMIT 50000" > parte1.sql
mysqldump -u fivetec1_antonio -p fivetec1_forums phpbb_posts --where="1 LIMIT 50000 OFFSET 50000" > parte2.sql
...

En el ...
by JoséQuintas
Mon Dec 30, 2024 1:52 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Lost connection to MySQL server during query
Replies: 40
Views: 17951

Re: Lost connection to MySQL server during query

... execute again will not solve problem.

Another common problem using connections on Windows:
Before Windows XP service pack 5, half open connections limit was anything about 67 millions, and from service pack 5 limit was reduced to 8, only 8 units.
When close connection, windows move connection to ...
by TOTOVIOTTI
Mon Nov 25, 2024 6:13 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Combobox y consultas MySql grande
Replies: 3
Views: 996

Re: Combobox y consultas MySql grande

Gracias José, si si, los índices están creados.

La consulta era referida al combobox cuando una consulta es muy grande y tenga
que usar el limit, como actualizarla...

Gracias
Roberto
by TOTOVIOTTI
Mon Nov 25, 2024 1:45 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Combobox y consultas MySql grande
Replies: 3
Views: 996

Combobox y consultas MySql grande

... esa consulta de clientes, la levanto en un ComboBox donde visualizo los mismos para el proceso
de facturación.

Podría realizar la consulta con un "limit", pero como hago con el combobox para que me refresque cada vez que busco?
Alguno me puede ayudar como lo tienen resuelto en caso de usar un ...
by Silvio.Falconi
Thu Nov 07, 2024 12:36 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse very slow vs Xbrowser
Replies: 18
Views: 3990

Re: xbrowse very slow vs Xbrowser

... myself and give up, unfortunately in the application I'm making I have to display a lot of data, a lot of columns because there are many of them from the Italian lottery archive, I could limit myself to not inserting frills that could weigh down the dialog too much but the result is not satisfactory
by JoséQuintas
Sun Oct 27, 2024 12:45 pm
Forum: FiveWin for Harbour/xHarbour
Topic: off topic: Xharbour mingw 32 bits
Replies: 24
Views: 3264

Re: off topic: Xharbour mingw 32 bits

32 bits limit is 4GB.
On Windows 32 bits, memory is used by Windows and video too, application is limited to remaining memory.
On Windows 64 bits, a 32 bits application can use up to 4GB memory.
Sometimes this may be helpfull, but seems that only mingw was updated.
by nageswaragunupudi
Sat Oct 19, 2024 3:06 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Extending SetScope()
Replies: 15
Views: 2460

Re: Extending SetScope()

... Since we already have and index on the field "INVOICE",
INCOICE="ABCDEF"
is highly optimized.
That means we can use filters instead of Scopes to limit visibility of parts table pertaining to an invoice using filters also.
Once we use filters instead of scopes, we can change the index order of the ...
by Silvio.Falconi
Wed Oct 16, 2024 10:41 am
Forum: FiveWin for Harbour/xHarbour
Topic: a math formula - RESOLVED -
Replies: 8
Views: 1373

Re: a math formula

... I needed to know how to make the progression with the bets but it is not clear to us how to change the bets
I have this initial data

local nLimiteSpesa:= 100 // is the spending limit
local nUtilePercent:= 50 // the percentage of profit
local nUtileFisso:= 50 // the fixed profit
local ...
by Otto
Wed Sep 25, 2024 9:03 am
Forum: FiveWin for Harbour/xHarbour
Topic: slowness
Replies: 76
Views: 17133

Re: slowness

... large fields could be used.

But now that I'm working more with the DBF format due to the php4dbf low-level access, there really seems to be no limit here.
Thank you for sharing this idea.

I bypass the FTP issue with external files.

Have you never had problems with index files?
In the future ...
by Cgallegoa
Mon Sep 23, 2024 7:17 pm
Forum: FiveWin para Harbour/xHarbour
Topic: TSBROWSE - TSBUTTON 64 bits
Replies: 2
Views: 776

Re: TSBROWSE - TSBUTTON 64 bits

... aka 'void *')
hOldBrush = SelectObject( hDC, hBrush ) ;
^~~~~~~~~~~~~~~~~~~~~~~~~~~
fatal error: too many errors emitted, stopping now [-ferror-limit=]
21 warnings and 20 errors generated.
hbmk2[sbutton]: Error: Running C/C++ compiler. 1
bcc64.exe -c -q -Ic:\borland7764\INCLUDE\windows\crtl -Ic ...
by TimStone
Mon Jul 08, 2024 10:00 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Numeric Comparison
Replies: 1
Views: 393

Numeric Comparison

... using VAL ( Harbour ). When I go to seek the value in the database ( 4051.21 ), it can't match because the two numbers are not the same.

I want to limit the number of decimals to 2 for the purpose of matching. I tried using SET DECIMAL TO 2 at the beginning of the function, and then resetting it ...
by TimStone
Mon Jul 08, 2024 10:00 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Numeric Comparison
Replies: 6
Views: 1067

Numeric Comparison

... using VAL ( Harbour ). When I go to seek the value in the database ( 4051.21 ), it can't match because the two numbers are not the same.

I want to limit the number of decimals to 2 for the purpose of matching. I tried using SET DECIMAL TO 2 at the beginning of the function, and then resetting it ...
by Otto
Tue Jul 02, 2024 8:34 am
Forum: FiveWin for Harbour/xHarbour
Topic: Question about Memo Field Storage Strategy?
Replies: 3
Views: 806

Re: Question about Memo Field Storage Strategy?

... access that much. So, I plan to dismiss them.

SQL is not an alternative for such lightweight, small applications like mine. Additionally, you are limited in developing ideas with fixed formats.

When I worked with "FiveWin for Pocket PC," we didn't have a database either. Back then, I used lock ...
by Silvio.Falconi
Fri Jun 14, 2024 7:06 am
Forum: FiveWin for Harbour/xHarbour
Topic: a folder into a dialog
Replies: 28
Views: 3899

Re: a folder into a dialog

... instead she cato sir, you have to review everything, wasting my time, moreover I have to suffer countless insults from you every day and frankly we have reached a limit and I don't understand why Antonio Linares hasn't stopped it yet because instead of helping you always try to do something else