GET SPINNER height

Post Reply
User avatar
Enrico Maria Giordano
Posts: 7355
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia
Contact:

GET SPINNER height

Post by Enrico Maria Giordano »

Is it possible to reduce the height of a GET with SPINNER? This is a sample:

Code: Select all

#include "Fivewin.ch"


FUNCTION MAIN()

   LOCAL oDlg

   LOCAL oGet, nVar := 10

   DEFINE DIALOG oDlg 

   @ 1, 1 GET oGet VAR nVar;
          PICTURE "99";
          SPINNER MIN 6 MAX 99;
          SIZE 100, 10

   @ 3, 1 BUTTON "&Close";
          ACTION oDlg:End()

   ACTIVATE DIALOG oDlg; 
            CENTER

   RETURN NIL
EMG
Rossine
Posts: 343
Joined: Tue Oct 11, 2005 11:33 am

Post by Rossine »

Hi Enrico,

Try this:

Code: Select all

   ACTIVATE DIALOG oDlg; 
            CENTER on init oGet:nHeight := 10

Regards

Rossine.
Post Reply