Page 1 of 1
(RPG) Screen Layout
Posted: Thu Oct 18, 2012 12:53 am
by JoeHam
Hello everybody,
I have a question concerning the layout of screens.
If you look at the attached screen shot there is a gap between the push button "Anzeigen" and the list. How can I get rid of that gap and present the list directly under the button?
I also attached the DDS of the application.
Many thanks in advance,
Joerg
Re: Screen Layout
Posted: Thu Oct 18, 2012 10:08 am
by tsupartono
Hi Joerg,
Your main form has 2 G-Row (first one on DDS row 4, second one on DDS row 5).
The problem I believe is that you set the height of your first G-Row (one located on DDS row 4) to FILL (by putting &&F in row 4 column 1).
Code: Select all
1
2
3
4 &&F <<FORMTABLE>>
5 <<DETAILSA>
Because of that, the upper portion of your form will expand to fill the full height of the screen - that's why you have some extra space at the end of the upper portion.
This is what creates the gap between the upper and lower portion of your form.
I think what you want is to set the height of the second G-Row (DDS row 5) to FILL, as opposed to the first G-Row, as it is more appropriate for your second portion (which is the table) to fill up the screen.
Code: Select all
1
2
3
4 <<FORMTABLE>>
5 &&F <<DETAILSA>
Let us know how you go.
Re: Screen Layout
Posted: Thu Oct 18, 2012 6:29 pm
by JoeHam
Small things - big effects!
Thank you for your help, the screen now looks exactly as desired.
With best regards from Germany,
Joerg