thanks! I will try that out
On Apr 23, 10:28 am, "Tarren" <noemailple...@thanks.com> wrote:
> Hi:
>
[quoted text clipped - 11 lines]
> fire
> only after they are done resizing?
Set a flag (boolean variable) to true in the Resize event. Then, in
the MouseUp event, check the flag. If true, reset to false, and
perform your resizing code.
Andrus - 23 Apr 2008 18:43 GMT
> Set a flag (boolean variable) to true in the Resize event. Then, in
> the MouseUp event, check the flag. If true, reset to false, and
> perform your resizing code.
Why you recommend so sophisticated solution ?
Form has ResizeEnd event which is designed for this. So your trick is not
required.
Andrus.
zacks@construction-imaging.com - 23 Apr 2008 19:04 GMT
> > Set a flag (boolean variable) to true in the Resize event. Then, in
> > the MouseUp event, check the flag. If true, reset to false, and
[quoted text clipped - 4 lines]
> Form has ResizeEnd event which is designed for this. So your trick is not
> required.
I was not familiar with the ResizeEnd event.
If nothing else, it would be a good exercise to do. Helps to
understand form event handling.