Hello,
I am doing something very simple on a Samsung i600 smartphone.
I am creating a Progress Control via a Create Window Call
g_hWndProgress = CreateWindow(TEXT("msctls_progress32"), NULL, WS_CHILD |
WS_BORDER,
5, 100, iWidth - 10, 20, hwnd, (HMENU)IDC_PROGRESS, ghInst, NULL);
then issuing
SendMessage(g_hWndProgress, PBM_SETRANGE32, (LPARAM)0, (WPARAM)20);
SendMessage(g_hWndProgress, PBM_SETSTEP, 1, 0L);
SendMessage(g_hWndProgress, PBM_SETPOS, (WPARAM)0, 0L);
This works fine on a Pocket PC 2002 and up. But on the SMart phone it
creates the Progras Control no problem but it is always filled in at 100%
with red. There is no way for me to change it to any other Position. AM i
doing something Drastically wrong ?
Thanks
Ken Partridge