Irwin1985 / VFPStretch

Resize any form easily with VFPStretch. This PRG was inspired from "Stretchy Resize Control"

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.2.0 - Release 2020-10-22 13:18:15

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


New Features

** Zoom method ** - Automatically adjust the current form size by reading the _screen property 'CurrentZoom'. This property stores the current zoom percentage for all the forms. zero (0) means default size.

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)
 

About

Resize any form easily with VFPStretch. This PRG was inspired from "Stretchy Resize Control"


Languages

Language:xBase 100.0%