Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
252 views

Problem with adding graphics to TLabel

I'm trying to create with Delphi a component inherited from TLabel, with some custom graphics added to it on TLabel.Paint. I want the graphics to be on left side of text, so I overrode GetClientRect: ...
0
votes
1answer
161 views

Alternative to GetClientRect?

I am monitoring DirectX application that is in windowed mode on Vista. GetClientRect reports correct size until application is minimized and restored then it always returns the preview size (106x160). ...
0
votes
1answer
387 views

MFC GetClientRect/GetWindowRect after a MoveWindow

m_PICTURE_OD is an IDC_STATIC, m_PICTURE_OD.MoveWindow(640 /*x*/,96/*y*/,480/*w*/,288/*h*/); RECT myrect; m_PICTURE_OD.GetClientRect(&myrect); myrect.bottom = 288; myrect.top = 0; myrect.left = ...
0
votes
3answers
212 views

How to get the full client rect?

The GetClientRect function, according to MSDN, is actually only good for determining the client width & height, since left & top are always zero. Is there a way to get the complete client ...