Hi Marc,
For the height, On the form load event, resize your form to your original size you designed it.
ie. In B1Studio, your form Height is 2000
On the AfterformResize,
If form.Items.Count = 0 Then 'This will be called only when the form is drawn
If form.ClientHeight < 200 Then form.ClientHeight = 2000
Exit Sub
End If
Regards
Edy