Stretchy Resize Control
Copyright 1999 Soft Classics, Ltd.
www.codemine.com

  The cmStretcher control adds proportional resize ability to any VFP form. When the form is resized at runtime, all controls are proportionaly resized and repositioned to grow and shrink with the form. Font sizes within each control also grow and shrink with the form.

  This version of the cmStretcher control (Stretch.vcx) is distributed by Soft Classics as a freeware developer tool for anyone to use. It should work well with all commercial and private VFP frameworks and class libraries. You may use or modify the control for your own applications however you like.

  The freeware version of the control supports only VFP version 6.0 and later. The full version of the control (shipped with the CodeMine framework) also supports VFP 5.0.

  You are not allowed to re-distribute the source code for this control as part of any commercial package, or post it on any web site.

Usage:
======
  To use the cmStretcher control, simply drop it onto a form, and call its Stretch() method from the form's Resize() event, pasing a reference to the form as a parameter. For example:

FUNCTION form.Resize
  THIS.cmStretcher1.Stretch(THIS)
ENDFUNC

That's all there is to it. The form will now shrink and grow proportionaly when it is interactively resized.
