@vedant
This can happen if your report band is outside declared report area or your whole report structure declared outside printable area . There are differences between printer drivers so you need to make sure you leave enough margin so that your report prints on different printers.
You need to adjust AT(,) attributes of your report bands and controls so that they fit in your paper size if your report is landscape you also need to indicate orientation of the report.
You can see and edit the report structure code when you press the square [âŚ] button next to the report button .
This is an example of one of my landscape reports
report REPORT,AT(5,22,285,170),PRE(RPT),LANDSCAPE,FONT(âVerdanaâ,9,CHARSET:DEFAULT), |
MM
HEADER,AT(5,10,285,16),#ORDINAL(1)
STRING(âSome headerâ),AT(72,6),USE(?String34:2),TRN,#ORIG(?String34),#ORDINAL(2)
STRING(@s120),AT(2,1,282,5),USE(ReportTitle),CENTER,TRN,#ORIG(ReportTitle),#ORDINAL(3)
STRING(âSome headerâ),AT(99,6),USE(?String34),TRN,#ORIG(?String34),#ORDINAL(4)
STRING(âSome headerâ),AT(126,6),USE(?String21),TRN,#ORIG(?String21),#ORDINAL(5)
LINE,AT(3,11,280,0),USE(?UnderLine),COLOR(COLOR:Black),#ORIG(?Line2),#ORDINAL(8)
END
detail DETAIL,AT(,284,4),USE(?detail),#ORDINAL(9)
STRING(@s12),AT(2,0,27,5),USE(FILE:Somefield1),#ORIG(FILE:Somefield),#ORDINAL(10)
STRING(@s20),AT(29,0,44,5),USE(FILE:Somefield2),#ORIG(FILE:Somefield2,#ORDINAL(11)
STRING(@s20),AT(71,0,44,5),USE(FILE:Somefield3),#ORIG(FILE:Somefield3),#ORDINAL(12)
END
END
FOOTER,AT(5,192,285,5),#ORDINAL(81)
STRING(@pPage <<<#p),AT(134,1,17,3),USE(?PageCount),FONT(âVerdanaâ,8,FONT:regular, |
),PAGENO,#ORDINAL(82)
END
END
See âReport Designer Lessonâ topic in help for explanation of all the attributes.