Get spinners in windows 7

Post Reply
User avatar
AlexSchaft
Posts: 172
Joined: Fri Oct 07, 2005 1:29 pm
Location: Edenvale, Gauteng, South Africa

Get spinners in windows 7

Post by AlexSchaft »

Hi,

It appears Windows 7 is drawing the scroll bars wrong on single line get controls with spinner enabled.

Is there any way around this?

Alex
User avatar
IBTC
Posts: 103
Joined: Sat Oct 18, 2008 8:13 pm
Location: Stuttgart, Germany
Contact:

Re: Get spinners in windows 7

Post by IBTC »

Hi Alex,

What version of FWH are you using?

Can you make a screenshot, put it on a webserver and can tell the link to it? Thanks.
Best Regards,
Ruediger Alich

---
HMG 3.1.3 | FTDN/FWH 13.12 | Harbour 3.2 | BCC/MinGW | Windows XP/Vista/7/8/10 (32/64-Bit), Wine (Linux/Mac) - started 1999 with FW, 1989 with Clipper
User avatar
AlexSchaft
Posts: 172
Joined: Fri Oct 07, 2005 1:29 pm
Location: Edenvale, Gauteng, South Africa

Re: Get spinners in windows 7

Post by AlexSchaft »

Hi,

This is on version 2010.12

Image

Code: Select all

#include "Fivewin.ch"


FUNCTION MAIN()

    LOCAL oDlg
    Local oget

    LOCAL nVal := -1

    DEFINE DIALOG oDlg

    @ 1,1 GET oget var nVal;
          PICTURE "999";
          SPINNER           ;


    ACTIVATE DIALOG oDlg;
             CENTER on init oget:move(5,5,50,20)

    RETURN NIL


 
This screen is the same code on a Win 2003 server


Image
Post Reply