Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 3 of 3 total
Thread Making a form sizeable
Wed, Mar 7 2018 5:53 PMPermanent Link

Paul Coshott

Avatar

Hi All,

I am showing a TForm using ShowModal, and I'd like this form to be sizeable. Is this possible and if so, what do I need to do?

Thanks,
Paul
Wed, Mar 7 2018 6:16 PMPermanent Link

Rick

On 08/03/18 09:53, Paul Coshott wrote:
> I am showing a TForm using ShowModal, and I'd like this form to be sizeable. Is this possible and if so, what do I need to do?
>
>

If you mean mouse resizable then use TDialog instead of TForm and set
the Sizable property to True. This will activate a hot spot on the
bottom right corner of the form.

If you really do want to use a TForm then you can drop a TSizeGrip on it
which should also allow resizing of the form from the bottom right hand
corner.

--
Rick
Mon, Mar 12 2018 5:23 AMPermanent Link

Paul Coshott

Avatar

Rick wrote:

>>If you mean mouse resizable then use TDialog instead of TForm and set
>>If you really do want to use a TForm then you can drop a TSizeGrip on it
>>which should also allow resizing of the form from the bottom right hand corner.

Thanks Rick, I'll give that a try.

Cheers,
Paul
Image