Tagged Questions
4
votes
4answers
202 views
Delphi - how might I find out the source of long delays on resizing the main form? (solved)
I have a D2006 app that contains a page control and various grids, etc on the tabs. When I resize the main form (which ripples through and resizes just about everything on the form that is aligned to ...
4
votes
3answers
476 views
Under what conditions will a TForm fire OnResize on show?
As an extension of this question:
TForm.OnResize is sometimes fired before a form is first shown, but not always. For example, if BorderStyle is either bsDialog or bsNone, then OnResize will not ...
3
votes
1answer
403 views
Will a Delphi form always fire OnResize when it's shown?
If I create a new Delphi form, hook its OnResize event, and run the app, OnResize is fired before the window is shown. What I don't know is whether this will always happen, for any window.
(For ...
1
vote
1answer
232 views
onResize event with class object
Here's is my code:
type TNav = class(TPanel)
private
procedure CMMouseEnter(var AMsg: TMessage); message CM_MOUSEENTER;
procedure CMMouseLeave(var AMsg: TMessage); message CM_MOUSELEAVE;
public
...
1
vote
4answers
577 views
How to implement the OnResizeEnd Event for TFrame?
in the middle of the application is a frame. After resizing i need to rearrange controls on this panel (doing this in the resizing event is too busy).
Its more useful if this can be done once after ...
0
votes
1answer
531 views
Delphi - TPaintBox - Resize
I'm having problems resizing a TPaintBox and drawing on it:
On my Form (named FMain) I dropped a TPaintBox (named DisplayImage), which I am trying to resize as the Form is resized.
To do that I ...