‎2013 Mar 11 5:13 PM
Hello experts.
I have two subscreens in my program and I want to make both of them resizable during the execution of the program using a drag-to-resize feature.
I tried searching for this in the forum but unfortunately could not come to a conclusion .
I was wondering if its even possible to implement such a feature ??
Thanks in advance !!
‎2013 Mar 11 6:17 PM
One way do create a resizable window is to use a splitter.
You can create a splitter with two window like this:
CREATE OBJECT go_splitter
EXPORTING
parent = cl_gui_container=>default_screen
rows = 2 "<<< Two windows resizable
columns = 1
metric = '0001'.
And then you create one container for each row and associate one screen to each one.
Hope it helps,
Guilherme Frisoni
‎2013 Mar 14 2:27 PM