Roland,
Context, for those who want it:
I have a form where the top and bottom half are very much related, but you don't always want / need one or the other. Sometimes you want both halves, sometimes you only want one, and I'd like a way to incorporate that. I tried disabling scrolling completely and setting the TabOrder to open on specific halves, but you can't fit everything on one screen (well, you can, but condensing things that much is not ideal)
Perhaps you could have 2 forms and some control logic. The logic would depend on whatever you use to determine which half or both are required for the specific user.
You might also have a table of users with the "required form part(s)"
General logic:
Code:
IF user requires top form
open top form
(other validation logic would be included )
END IF
IF user requires bottom form
open bottom form
(other validation logic would be included )
END IF