To use the FFC Resize class, you simply add the class to your form, and
call the 'adjustcontrols' method of the Resize object in the form's
"Resize" event. Seems to work well.
How about the alternative: Add the following code to the Init of the
Resize class:
--------------------
DODEFAULT()
BINDEVENT(thisform, "Resize", this, "adjustcontrols", 1)
---------------------
Seems to work just fine. Any reason not to do it this way other than
'inverse coupling' the object to the form, instead of the form to the
object.