|
From: Steve T. <sti...@ad...> - 2006-01-05 13:01:39
|
> As a result, I am working with the idea that the text is getting=20 > drawn, but something additional is getting drawn/erased and obscuring=20 > the text in the group case.=20 I'm guessing what you're seeing is the group box painting itself after the button has been painted and since the group box's extent covers the button, it would be erasing it. Controls are painted in the order they're created I believe, but this is also controlled by the WS_CLIPSIBLINGS window style. If this isn't set, then one button can paint over another one that's on top of it - it's an optimization thing. Perhaps setting this style will prevent what you're seeing. -- Steve Tibbett sti...@ad... |