Application Development and Automation 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: 
Read only

tab strip control

Former Member
0 Likes
386

Hi,

I created 9000 main screen and tab strip control on the main screen 9000.

I am controlling the three sub screens on the main screen( subscreens are 9001,9002,9003).

In 9001 subscreen i am adding two text box and a push button.

My requirement is when ever i click the push button ,how to call the subscreen area of 9003 for printing output.

2 REPLIES 2
Read only

seshatalpasai_madala
Product and Topic Expert
Product and Topic Expert
0 Likes
364

Hi,

In your flow logic use a variable to pass the screen number to the CALL SUBSCREEN statement.

And on the push button just set the variable to 9003.

Then automatically when the PBO is called again you will have this new screen.

Regards,

Sesh

Read only

Former Member
0 Likes
364

Hi,

MODULE USER_COMMAND_9001 INPUT.

case okcode_9001.

when 'PUSH'.

SCRNO = 9003.

TABS-ACTIVETAB = 'TAB3'.

endcase.

ENDMODULE.

<b>flow logic:</b>

PROCESS BEFORE OUTPUT.

MODULE STATUS_9001.

CALL SUBSCREEN SUBA INCLUDING 'ZBHTSTRIP' SCRNO.

*

PROCESS AFTER INPUT.

MODULE USER_COMMAND_9001.

  • CALL SUBSCREEN SUBA.

rgds,

bharat.