Search found 196 matches: spinner

Return to advanced search

Re: Spinner arrows

Dear Antonio,
I have only one user. That's my wife.
I will ask her. :D
Regards
Detlef
by Detlef
Tue Jul 25, 2023 7:47 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Spinner arrows
Replies: 4
Views: 319

Re: Spinner arrows

Dear Detlef,

You could programatically modify the registry from your FWH app but that would modify the entire behavior for Windows 11

Will your users accept that ?
by Antonio Linares
Tue Jul 25, 2023 7:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Spinner arrows
Replies: 4
Views: 319

Re: Spinner arrows

Many thanks, Antonio.
Your link helped me to get visible spinner arrows on my PC.
But on an other machine the arrows will be invisible until the user does follow the instructions from your linked page.

Thanks anyhow,
Detlef
by Detlef
Mon Jul 24, 2023 10:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Spinner arrows
Replies: 4
Views: 319

Spinner arrows

If I create a get control for numeric inputs with spinner clause … under Windows 10 the arrows for increase and decrease are always visible. Under Windows 11 they appear only if the user navigates to the place where they will be shown. Does anyone ...
by Detlef
Sun Jul 23, 2023 10:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Spinner arrows
Replies: 4
Views: 319

Re: Owner of the object

Thanks for the help, Cgallegoa ! I need a TGet with a spinner and an arbitrary step of changes. I wrote it like this TGet():New(2, 2, GenLocalBlock( nGet ), oDlg, ;          100,, "9.999",,,,,,, .T.,,,,,,,,,,, .T., ;    ...
by Natter
Wed Mar 01, 2023 9:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Owner of the object
Replies: 7
Views: 350

Re: TGet():New() and :bUp/:bDown

Thank you for your help ! Everything works. However, I am interested in the option with spinner.
In this case, nothing works :(
by Natter
Sat Feb 25, 2023 1:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TGet():New() and :bUp/:bDown
Replies: 2
Views: 169

Re: PROBLEM WITH A TGET CONTROL & spinner

@ 100,10 GET aGet[1] VAR  nGiocata SPINNER MIN 0.50 MAX 200  ;      ON UP   GetStep( aGet[ 1 ],  0.50 ) ;      ON DOWN GetStep( aGet[ 1 ], -0.50 ) ;  ...
by nageswaragunupudi
Sat Nov 19, 2022 3:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: PROBLEM WITH A TGET CONTROL & spinner
Replies: 2
Views: 229

PROBLEM WITH A TGET CONTROL & spinner

...  ;   PIXEL TRUEPIXEL FONT oFont    ;     TiTle cTitle@ 100,10 GET aGet[1] VAR  nGiocata SPINNER MIN 0.50 MAX 200  ;      ON UP 0.50 ON DOWN 0.50 ;      SIZE 80,24 RIGHT PIXEL of oDlg PICTURE "€ 999.99"ACTIVATE ...
by Silvio.Falconi
Fri Nov 18, 2022 8:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: PROBLEM WITH A TGET CONTROL & spinner
Replies: 2
Views: 229

Re: set spinner on combobox

... decreases it does not return to the minimum number perhaps with a video I try to understand the problem https://i.postimg.cc/ZKGjXzV8/spinner.gif ie if the user presses the down arrow he cannot decrease the value the user can initially decrease or increase the value in the get ...
by Silvio.Falconi
Wed Nov 02, 2022 7:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: set spinner on combobox
Replies: 7
Views: 432

Re: set spinner on combobox

Silvio: Function ResetValore(nForma,nMetodo, nValore,oControls)   Do case      case nForma= 1 .and. nMetodo= 3          nValore:= 3      case nForma= 2 .and. nMetodo= 3          nValore:= 6      otherwise          nValore:= 1    endcase  // ***** This do the trick ***** //    oControls[8...
by Cgallegoa
Wed Nov 02, 2022 5:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: set spinner on combobox
Replies: 7
Views: 432

Re: set spinner on combobox

... oCbx3:nAt, oCbx4:nAt, @nValore, aGet ) )   @ 540, 630 GET aGet[8] VAR nValore SIZE 100, 20 PIXEL RIGHT OF oDlg ;      SPINNER MIN 1 MAX 90 UPDATE                                      ;      VALID( nValore >= 1 .AND. nValore <= 90 )   ACTIVATE DIALOG oDlg ...
by Silvio.Falconi
Tue Nov 01, 2022 10:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: set spinner on combobox
Replies: 7
Views: 432

Re: set spinner on combobox

hi Silvio,

i would try aGet[8]:bMin
Code: Select all  Expand view
METHOD Spinner( bUp, bDown, bMin, bMax ) CLASS TGet

   If ::lReadOnly
      return nil
   Endif

   ::bMin := bMin
   ::bMax := bMax
by Jimmy
Tue Nov 01, 2022 3:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: set spinner on combobox
Replies: 7
Views: 432

Re: set spinner on combobox

... @nValore, aGet ) )   @ 540, 630 GET aGet[8] VAR nValore SIZE 100, 20 PIXEL RIGHT OF oDlg ;      SPINNER MIN 1 MAX 90 UPDATE                                     ...
by karinha
Mon Oct 31, 2022 11:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: set spinner on combobox
Replies: 7
Views: 432
Next

Return to advanced search