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
Get spinners in windows 7
- AlexSchaft
- Posts: 172
- Joined: Fri Oct 07, 2005 1:29 pm
- Location: Edenvale, Gauteng, South Africa
Re: Get spinners in windows 7
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.
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
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
- AlexSchaft
- Posts: 172
- Joined: Fri Oct 07, 2005 1:29 pm
- Location: Edenvale, Gauteng, South Africa
Re: Get spinners in windows 7
Hi,
This is on version 2010.12
This screen is the same code on a Win 2003 server
This is on version 2010.12
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