TheSwamp

Code Red => Visual DCL Programming => AutoLISP (Vanilla / Visual) => OpenDCL => Topic started by: Shade on April 02, 2008, 01:47:07 PM

Title: Resize Form
Post by: Shade on April 02, 2008, 01:47:07 PM
I am fairly new to OpenDCL and need a little help.

I have allowed my form (dialog box) to be resized, but how does one get the rest of the controls to automatically resize as the user resizes the form??  :ugly:

Any help is appreciated
Title: Re: Resize Form
Post by: BazzaCAD on April 02, 2008, 01:55:45 PM
Try the "Use..." properties:
UseBottomFromBottom
UseLeftFromRight
UseRightFromRight
UseTopFromBottom
And check out the samples, most of them have these properties set.
Title: Re: Resize Form
Post by: owenwengerd on April 03, 2008, 03:19:08 AM
In OpenDCL Studio, right click on a control and select 'Properties' to change the geometry properties. This controls how the control is resized when the dialog size changes (it does this by setting the properties that Barry mentioned).
Title: Re: Resize Form
Post by: Shade on April 08, 2008, 02:43:41 PM
Thanks for the help, I was able to figure it out with the tips give.