Click to See Complete Forum and Search --> : How to implement min win option in pocketpc win


talluritrk
July 6th, 2002, 09:57 AM
Hi

i am using windowCE3.0/EVC++3.0

how can i implement a window with min & max options in PocketPC/PDA's.

CWnd::ModifyStyle(0,WS_MINIMIZE | WS_ICONIC,0)
i used this method in my InitDialog member fun.it is giving undefined variable.
pls guide me regarding this

thanks
ramakrishna

kandukondein
July 6th, 2002, 12:24 PM
U can use
WS_OVERLAPPEDWINDOW option for that

ModifyStyle(NULL,WS_OVERLAPPEDWINDOW,0);
that will do the needful.
Regards
Kandukondein