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

PRINT

Former Member
0 Likes
411

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
Read only

naimesh_patel
Active Contributor
0 Likes
383

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

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
Read only

naimesh_patel
Active Contributor
0 Likes
384

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