Hi All,
I have one appliaction which is meant for PocketPC devices.
the GUI which i have made runs fine in an some versions of IPAQ(hp
iPAQhx2410, hp iPAQ h6365, hp iPAQhw6965 etc.... ), which has got 240 X
320 pixel size and OS version is winCE4.21.
Then i tried the same application on a later version of iPAQ with 240 X
240 pixel size, it shows only a part of it.
the GUI is not full on the screen.
means half the screen is only shown along with the menu bar.
am using the following :
RECT rc;
GetWindowRect(hWnd, &rc);
rc.bottom -= MENU_HEIGHT;
if (hwndCB)
MoveWindow(hWnd, rc.left, rc.top, rc.right, rc.bottom,
CVX_BOOL_FALSE);
How to rectify this problem?
thanks in advance
Sabyasachi