VFPStretch is a free tool for resizing any form in Visual FoxPro 9.0
NOTE: This library was inspired by Stretchy Resize Control
Irwin Rodríguez (Toledo, Spain)
VFPStretch - v.1.2 (beta) - Release 2019-05-20 14:35:31
// Create the object anywhere in your main prg file.
// I highly recommend create a property in the _screen object.
If Type("_Screen.oVfpStretch") = "O"
Removeproperty(_Screen, "oVfpStretch")
Endif
SET PROCEDURE TO "VFPStretch.prg" ADDITIVE
=AddProperty(_Screen, "oVfpStretch", Newobject("vfpStretch",(Locfile("VfpStretch", "prg","VfpStretch Prg Class"))))
//Now put this in your init form event.
_Screen.oVfpstretch.Do(THISFORM)