Search found 1023 matches: numbers

Return to advanced search

Re: set spinner on combobox

... 6 the procedure could crash because I'll explain for example if we analyze the sequences 1-2 adds up to 3 this when it comes to sequences with two numbers 1-2-3 the minimum sum is 6 this when it concerns the sequences with three numbers if the user changes and puts 1 the procedure will never be ...
by Silvio.Falconi
Tue Nov 01, 2022 10:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: set spinner on combobox
Replies: 7
Views: 433

delete identical records

By creating an array with three for next loops I have to delete the records where I find equal numbers in the three columns for h=1 to Len(atmp)        If  atmp[h][1] == atmp[h][2]  .or. ;            atmp[h][1] == ...
by Silvio.Falconi
Mon Oct 31, 2022 4:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: delete identical records
Replies: 6
Views: 359

Re: asort with two numbers & 3 Numbers

If( x[ 1 ] == y[ 1 ], x[ 2 ] < y[ 2 ], x[ 1 ] < y[ 1 ] )   Nages, a sample I have this https://i.postimg.cc/sfnqYPk3/ff.png how I can have as this ? 1 2 1 90 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 10 11 the test to try #include...
by Silvio.Falconi
Thu Oct 27, 2022 10:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: asort with two numbers & 3 Numbers
Replies: 2
Views: 321

Re: asort with two numbers & 3 Numbers

Code: Select all  Expand view

If( x[ 1 ] == y[ 1 ], x[ 2 ] < y[ 2 ], x[ 1 ] < y[ 1 ] )
 
by nageswaragunupudi
Wed Oct 26, 2022 11:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: asort with two numbers & 3 Numbers
Replies: 2
Views: 321

asort with two numbers & 3 Numbers

ASort( aData, nil, nil, { |x| IF (x[1]<x[2], x[ 1 ] > x[ 2 ],x[ 2 ] > x[ 1 ]) } ) I'm afraid this ordering is wrong how can i fix it? that is, now the result obtained is this A   B1   112   123   134   145   156   167   178   189   1910  2021  1122  1223  1324  1425  1526  1627  1728  1829 ...
by Silvio.Falconi
Wed Oct 26, 2022 9:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: asort with two numbers & 3 Numbers
Replies: 2
Views: 321

Re: intercept repeated values in an array

...        nTemp:= n1-n2          Endif     Endcase     nNum := ntemp     return nNum  for the three-dimensional array I find it difficult to find the numbers to associate I explain you 1) I speak of two numbers because in the Italian lottery two numbers are equal to both 2) I speak of three numbers ...
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: 295

Re: Bug in Harbour Descend()

... to operate on binary (BYTE) sorting and gives reverted collation order only for codepages which use such collation. Because DESCEND() converts numbers to characters which have special order in CP you are using. Look at this list archive for some easy to create custom DESCEND() replacements ...
by cnavarro
Tue Oct 18, 2022 6:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bug in Harbour Descend()
Replies: 34
Views: 1709

Re: show a btnbmp pressed

No I made DEFINE BUTTON oSelf:oPlus FILENAME ".\bitmaps\plus.bmp" OF ::oBar ; TOOLTIP "plus numbers" ; ACTION (ChangePressedBtn(oSelf:oPlus)) Function ChangePressedBtn(oBtn)   local  bClrGradSelect := {| lPressed | if( lPressed ...
by Silvio.Falconi
Mon Oct 17, 2022 10:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: show a btnbmp pressed on buttonbar
Replies: 9
Views: 603

Re: show a btnbmp pressed

I tried DEFINE BUTTON oSelf:oPlus FILENAME ".\bitmaps\plus.bmp" OF ::oBar ; TOOLTIP "plus numbers" ; ACTION (oSelf:oPlus:lPressed:=!oSelf:oPlus:lPressed,; oSelf:oPlus:setcolor( CLR_BLUE, If( oSelf:oPlus:lPressed == .t., CLR_RED, CLR_BLUE )) ,; oSelf:oPlus:refresh() ...
by Silvio.Falconi
Mon Oct 17, 2022 10:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: show a btnbmp pressed on buttonbar
Replies: 9
Views: 603

show a btnbmp pressed on buttonbar

... pressed to simulate the select option , so I made DEFINE BUTTON oSelf:oPlus FILENAME ".\bitmaps\plus.bmp" OF ::oBar ; TOOLTIP "plus numbers" ; ACTION (oSelf:oPlus:lPressed:=!oSelf:oPlus:lPressed, oSelf:oPlus:refresh()) but it is pressed but not change the color how resolve?
by Silvio.Falconi
Mon Oct 17, 2022 10:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: show a btnbmp pressed on buttonbar
Replies: 9
Views: 603

Re: Search for a number on xbrowse and highlight it

... user clicks a number the procedure has to fill the background with the corresponding color and the procedure works fine. For example, if there are numbers selected and the user clicks a number that is in the column where there is already a colored number, it fills the background of the number but ...
by Silvio.Falconi
Wed Oct 12, 2022 3:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Search for a number on xbrowse and highlight it
Replies: 9
Views: 620

Search for a number on xbrowse and highlight it

i have an array with some numbers i would like that the user selects on the bar "N" if he wants to color a single number or "N +" if he wants to color all numbers equal to the one selected The user can delete the colors ...
by Silvio.Falconi
Tue Oct 11, 2022 11:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Search for a number on xbrowse and highlight it
Replies: 9
Views: 620

Re: AYUDA Explicación. WebApp - ModHarbour

... Can you please help me how to start with CGI? I am going to post an example. > Everything runs wonderfully. Of course, I don't have such large numbers of users. On small tests everything seems ok, but when you get into real production, then the real problems start, unless you use CGI. Trust me.
by Antonio Linares
Mon Sep 19, 2022 8:51 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: AYUDA Explicación. WebApp - ModHarbour
Replies: 24
Views: 2342

Re: AYUDA Explicación. WebApp - ModHarbour

... help me how to start with CGI? So far, I have only used modharbour with APACHE. Everything runs wonderfully. Of course, I don't have such large numbers of users. Best regards, Otto
by Otto
Mon Sep 19, 2022 6:14 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: AYUDA Explicación. WebApp - ModHarbour
Replies: 24
Views: 2342

Re: Select columns of a Xbrowse to print

Code: Select all  Expand view
obrw:Report (,,,,,,aCols)

is the right way to go.
My previous reply was for older versions of FWH.

aCols can be an array of
Column headers (or) Column numbers at the time of creation
by nageswaragunupudi
Sun Sep 11, 2022 3:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Select columns of a Xbrowse to print
Replies: 14
Views: 912
PreviousNext

Return to advanced search