how can i retrieve resolution at begunning of my application like 1027X768
Thanks
how can i retrieve resolution at begunning of my application like 1027X768
Thanks
#define SM_CXFULLSCREEN 16 #define SM_CYFULLSCREEN 17
function ScreenWidth()
return GetSysMetrics( SM_CXFULLSCREEN )
function ScreenHeight()
return GetSysMetrics( SM_CYFULLSCREEN )