Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Change the window size on runtime

RadimB
Product and Topic Expert
Product and Topic Expert
0 Kudos
164

Hello colleagues,

I call a function module in a new task and then I create a new window with CALL SCREEN 1001. I (or customer) would not like to have a dialog box, so I cannot call CALL SCREEN 1000 STARTING AT 3 3 ENDING AT 80 24. I cannot set a screen size in a design phase for some reason. Is there a possibility to influence the screen size on runtime?

Kind regards

Radim Benek

3 REPLIES 3

Former Member
0 Kudos
73

Hi Radim,

You can see this only at run time but not at design time. You can't influence the size of the window in runtime. If you felt it is small or bigger, then do changes according to the STARTING AT and ENDINT AT positions.

Thanks,

Vinay

Former Member
0 Kudos
73

Please try to put variable in place of screen defination.

Like below ;

CALL SCREEN 1000 STARTING AT <VAR1> <VAR2>

ENDING AT <VAR3> <VAR4>.

The variable you can decide depend upon the contains need to display in new dialog window.

RadimB
Product and Topic Expert
Product and Topic Expert
0 Kudos
73

Hello colleagues,

if I do STARTING AT 3 3 ENDING AT 80 24 then a dialog box is created, which customer do not want. He wants to have a normal screen.

Regards

Radim