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: 

PRINT

Former Member
0 Kudos

I have 4 radio buttions in that first 3 I have to get landscape and for 4th radio buttion potroit I have to get

when I execute the report I have to get output and then when I goto menu LIST in that I click on print PRINT I have to get print

1 ACCEPTED SOLUTION

naimesh_patel
Active Contributor
0 Kudos

You can set the optoins avaliable inthe NEW-PAGE to handle the line-size and this will determine the actual page setup for printing.

Try like this:

parameters: p_r1 radiobutton group rd1 default 'X',
            p_r2 radiobutton group rd1.

start-of-selection.
  if p_r1 = 'X'.
    NEW-PAGE LINE-SIZE 132 LINE-COUNT 65.  " << potrait
    write: ' I am potrait'.
  else.
    new-page line-size 256 line-count 30.  " << landscape
    write: ' I am landscape'.
  endif.

Regards,

Naimesh Patel

1 REPLY 1

naimesh_patel
Active Contributor
0 Kudos

You can set the optoins avaliable inthe NEW-PAGE to handle the line-size and this will determine the actual page setup for printing.

Try like this:

parameters: p_r1 radiobutton group rd1 default 'X',
            p_r2 radiobutton group rd1.

start-of-selection.
  if p_r1 = 'X'.
    NEW-PAGE LINE-SIZE 132 LINE-COUNT 65.  " << potrait
    write: ' I am potrait'.
  else.
    new-page line-size 256 line-count 30.  " << landscape
    write: ' I am landscape'.
  endif.

Regards,

Naimesh Patel