Ack!~ It doesn't work.
<{POST_SNAPBACK}>
Download the zip file from GMBase, that one is not corrupted.
I converted my app to use GM 7's extension with this. I notice a lot of the functions require an additional argument (
extstyle).
What is this for (the help files doesn't even list anything for API_Static_Create() and API_Trackbar_Create()...
Should I just add:
,0 ?
Examples:from:
Win2_Static_Brightness = API_Static_Create(Win2,156-25,left_y-20,80,15,0);
to:
Win2_Static_Brightness = API_Static_Create(Win2,156-25,left_y-20,80,15,0,0);
and
from
Win2_Brightness = API_Trackbar_Create (Win2,20,left_y,272,20,TBS_AUTOTICKS);
to:
Win2_Brightness = API_Trackbar_Create (Win2,20,left_y,272,20,TBS_AUTOTICKS,0);
Why is this different than just using the straight DLL way...?
Edited by Turbe, 03 February 2008 - 07:47 PM.