Search found 48 matches: exceeds

Return to advanced search

Re: Count xbrowse records

... to you: at the bottom of the Xbrowse I want to insert two buttons to move the records and I want them to be activated only if the record count exceeds the actual display of the Xbrowse @ 148, 320  BTNBMP aBtnBrow[1] ;     RESOURCE "DWN_TBL", "", ...
by Silvio.Falconi
Fri Feb 23, 2024 1:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Count xbrowse records
Replies: 5
Views: 214

Long file names

Hi,

In the archives (and just like that) files come across the length of the name + path exceeds 259.
Is it possible to pull them out and rename them on FW?
by Natter
Mon Oct 30, 2023 11:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Long file names
Replies: 3
Views: 296

Re: cyclometric circle

... definition: The cyclometric distance between two numbers is obtained by calculating the arithmetic difference (major minus minor); if the result exceeds "the limit" 45, the latter is subtracted from the fixed 90. EXAMPLE "A". Let's consider the numbers 5 - 34 and, in the cyclometric ...
by Silvio.Falconi
Tue Dec 06, 2022 12:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: cyclometric circle
Replies: 46
Views: 2963

Re: Everything under Fivewin

... with a NULL character. nMaxCount Specifies the maximum number of characters to copy to the buffer, including the NULL character. If the text exceeds this limit, it is truncated. Return Value If lpString is NULL, the return value is the number of TCHARs excluding the null terminator needed ...
by Jimmy
Mon Nov 14, 2022 11:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Everything under Fivewin
Replies: 17
Views: 1021

Re: intercept repeated values in an array

... sum 2) cyclometric distance 3) math addition 4) mathematical distance for the cyclometric sum it is always necessary to subtract 90 if the sum exceeds 90 The cyclometric distance between two numbers is obtained by calculating the arithmetic difference (major minus minor); if the result exceeds ...
by Silvio.Falconi
Wed Oct 26, 2022 8:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: intercept repeated values in an array
Replies: 5
Views: 283

Re: use fw_arraytodbf with conditions

... It should be aData[ n, nCol ] or aData[ n ][ nCol ] but not aData[ nCol ][ n ] When in the for loop "n" exceeds 7, you get this error.
by nageswaragunupudi
Sun Sep 18, 2022 1:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: use fw_arraytodbf with conditions
Replies: 5
Views: 606

Re: Printing RTF 22.03

... ), and only 6 will print on the first page. If you look at my example, you will see we check the row after each line is printed. If the number exceeds what can be printed on a page ( usually 54 lines considering a top and bottom margin ), then it ejects the page, prints the header info on a ...
by TimStone
Tue Apr 12, 2022 2:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Printing RTF 22.03
Replies: 6
Views: 550

Re: control exceeds size in run time

I resolved of this way: source code REDEFINE BUTTONBAR oBar ID 100 OF oFld:aDialogs[3] 2007 TRANSPARENT       DEFINE BUTTON OF oBar PROMPT "Add"     FILE "c:\1712\fwh\bitmaps\32x32\new.bmp" ACTION ( IIF(cCodpag='02', AddRow(oBrwC), MsgAlert("Cond...
by richard-service
Thu Mar 04, 2021 9:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: control exceeds size in run time RESOLVED
Replies: 5
Views: 684

Re: control exceeds size in run time

I resolved of this way: source code REDEFINE BUTTONBAR oBar ID 100 OF oFld:aDialogs[3] 2007 TRANSPARENT       DEFINE BUTTON OF oBar PROMPT "Add"     FILE "c:\1712\fwh\bitmaps\32x32\new.bmp" ACTION ( IIF(cCodpag='02', AddRow(oBrwC), MsgAlert("Condi...
by artu01
Wed Mar 03, 2021 3:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: control exceeds size in run time RESOLVED
Replies: 5
Views: 684

Re: control exceeds size in run time

thank you Mr. Rao y Richard-Service for his reponse
by artu01
Fri Feb 19, 2021 11:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: control exceeds size in run time RESOLVED
Replies: 5
Views: 684

Re: control exceeds size in run time

Hi
I use this code.

Code: Select all  Expand view

LOCAL oRect := ::oDlg:GetCliRect()

::oDlgBar := TBar():NewAt( oRect:nTop+60, 00, 486, 42, 40, 40, ::oDlg, .F., , )
 
by richard-service
Mon Feb 15, 2021 10:10 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: control exceeds size in run time RESOLVED
Replies: 5
Views: 684

Re: control exceeds size in run time

Buttonbar always extends to the full width of the window/dialog.
by nageswaragunupudi
Mon Feb 15, 2021 6:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: control exceeds size in run time RESOLVED
Replies: 5
Views: 684

control exceeds size in run time RESOLVED

Hi guys, I don't understand Why the control buttonbar appreciate more large than the normal? https://i.postimg.cc/RhHhKxnm/buttonbar1.jpg imagenes online Into the pelles you can notice that the control is smaller than the program in run time https://i.postimg.cc/jdCrjYJ3/...
by artu01
Mon Feb 15, 2021 12:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: control exceeds size in run time RESOLVED
Replies: 5
Views: 684

XBrowse 2101: bBmpData : enhancment

... is an index value into the list of bitmaps already attached to the column with oCol:AddBitmap( aBitmaps ). If the value returned is not numeric or exceeds the length of the bitmap list, no bitmap is painted. In some cases, it may not be possible to anticipate all the bitmaps that need to be displayed ...
by nageswaragunupudi
Mon Feb 01, 2021 6:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse 2101: bBmpData : enhancment
Replies: 3
Views: 551

Re: Font sizing for printout.

... in pixels. Generally, one uses the widest character (usually a W or M). Just create a DO WHILE loop that keeps adding a new "W" until it exceeds the printable width of the printer page. Then subtract 1. Now any combination of characters will fit. Alternatively, you could do a similar ...
by James Bott
Tue Jun 23, 2020 12:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Font sizing for printout.
Replies: 3
Views: 749
Next

Return to advanced search