Skip to content

Latest commit

 

History

History
33 lines (20 loc) · 852 Bytes

README.md

File metadata and controls

33 lines (20 loc) · 852 Bytes

VFPStretch

VFPStretch is a free tool for resizing any form in Visual FoxPro 9.0

NOTE: This library was inspired by Stretchy Resize Control

Project Manager

Irwin Rodríguez (Toledo, Spain)

Latest Release

VFPStretch - v.1.2 (beta) - Release 2019-05-20 14:35:31


Example

 // 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)