Page 1 of 1

WM_MEASUREITEM

Posted: Wed Mar 19, 2014 3:53 pm
by Shrek

Code: Select all

__DrawProc = function(hWnd,message,wParam,lParam)
 if (message == 0x002C) then -- Measure Item, return true if processed.

 end
 if (message == 0x002B) then -- Draw Item, return true if processed.
  
 end
end;
The WM_MEASUREITEM gives a pointer to a structure, how do I fill in the MEASUREITEMSTRUCT members from that pointer with APM?

The WM_DRAWITEM message does the same thing.

Re: WM_MEASUREITEM

Posted: Mon Mar 31, 2014 8:37 am
by Shrek
Bump.........................................

Re: WM_MEASUREITEM

Posted: Sat Apr 26, 2014 6:56 pm
by Serkan
Hi
Sorry for late reply

currently there is no support to produce a structure representation from a memory pointer
i tried to do it with Raw Data Access method ,to show as a workaround but that did not help as well

i hope that most of this limitations will be fixed in next version

Thanks