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
(RPG) Screen Layout
(RPG) Screen Layout
- Attachments
-
- IMG_0051.PNG (297.43 KiB) Viewed 3480 times
-
- DDS.PDF
- (39.77 KiB) Downloaded 337 times
-
tsupartono
- Posts: 289
- Joined: Wed Apr 18, 2012 10:21 am
Re: Screen Layout
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).
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.
Let us know how you go.
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>
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>
Re: Screen Layout
Small things - big effects!
Thank you for your help, the screen now looks exactly as desired.
With best regards from Germany,
Joerg
Thank you for your help, the screen now looks exactly as desired.
With best regards from Germany,
Joerg