(RPG) Screen Layout

Please do not use to report errors- use your regional help desk.
Please mark posts as being for RPG or RDMLX (LANSA) developer.
To subscribe by email, display this forum, scroll to the end and select ‘Subscribe Forum’.
Post Reply
JoeHam
Posts: 14
Joined: Thu Jul 19, 2012 5:35 pm

(RPG) Screen Layout

Post 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
Attachments
IMG_0051.PNG
IMG_0051.PNG (297.43 KiB) Viewed 3479 times
DDS.PDF
(39.77 KiB) Downloaded 337 times
tsupartono
Posts: 289
Joined: Wed Apr 18, 2012 10:21 am

Re: Screen Layout

Post 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.
JoeHam
Posts: 14
Joined: Thu Jul 19, 2012 5:35 pm

Re: Screen Layout

Post by JoeHam »

Small things - big effects!
Thank you for your help, the screen now looks exactly as desired.
With best regards from Germany,
Joerg
Post Reply