Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

WinCE 6.0

Status
Not open for further replies.

Tremorblue

Programmer
Apr 30, 2004
56
0
0
GB

Hi,

I am using WinCE 6.0 with VS2005

We have fitted a new size screen to our board and set it up in the registry.

Angle = Angle % 360;
RegistryKey reg = Registry.LocalMachine.OpenSubKey(@"\System\GDI\Rotation", true);
reg.SetValue("Angle", Angle, RegistryValueKind.DWord);
int value = (int)reg.GetValue("Angle", 0);
reg.Flush();

In portrait mode everything seems to work correctly. But in landscape mode, when a combo box nears the edge of the screen instead of changing direction and scrolling upwards. They now scroll down and off the screen.

The application is a managed app, but I assume this is an OS platform builder issue.

The OS image I built by choosing a driver 480x272. When rotated the OS shell looks to be running correctly with the task bar at the bottom of the screen.

Blue
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top