May 24th, 1997:
For our grand opening, we start off with two P++ 1.5 tips sent
in by Dennis Woo. (Dennis was the first to submit some tips...
thanks!) Tip number 1: If you want to set the restraining sizes
of a form, you should use the form's MinimumTrackingSize and MaximumTrackingSize properties rather than handling the SizeChanging event. It seems that the SizeChanging event doesn't work the way it is described in the programmer's
guide.
Tip number 2 from Dennis: If you want a Wizard form to return
a proper return value (i.e., false for the Cancel button and true for the Finish button), in the Create event of the Wizard form
remove the line:
Dismiss( true );
Then, in the Finish and the Cancel button click events, call Dismiss() with your return value.