How to set the scrollbars size?

  • Thread starter Thread starter Gianco
  • Start date Start date
G

Gianco

Hello

Anyone knows how to set the width of the vertical scrollbars in
Windows CE? In Windows 2000 there's a setting in the screen appareance
page. In Windows CE this parameter doesn't exist, so I should change
this value by software. I would help the users of my program to use
the scrollbars with a touch screen

Can anyone help me

Thanks and Merry Christmas to all!
Gianco
 
I found this info on PHM's website (
http://www.phm.lu/PocketPC/RegTweaks/ ). It changes the scroll bar width's
globally though. I would suggest creating a custom control for your app so
that the other programs are not affected.

///Changing scroll bars sizes
Using a registry editor, browse to \HKLM\SYSTEM\GWE\ and change the
following values as you want :

cyHScr : Horizontal Scrollbars Height in pixels (default is 13)
cxHScr : Horizontal Scrollbars Width in pixels (default is 20)
cyVScr : Vertical Scrollbars Height in pixels (default is 20)
cxVScr : Vertical Scrollbars Width in pixels (default is 13)
 
Back
Top