Logo on the Report

sridhar
sridhar Member Posts: 171
How to display a logo at the top of every page in the report ?

Comments

  • lzr
    lzr Member Posts: 264
    You do calcfields on the picture field in the company record, then you display that as a bitmap.

    Check one of the standard reports, they should give you an idea.
    Navision developer
  • Savatage
    Savatage Member Posts: 7,142
    search logo & you have many posts - don't forget the search feature is very useful

    here's one to get you started

    http://www.mibuso.com/forum/viewtopic.p ... light=logo
  • ramesh.ayn
    ramesh.ayn Member Posts: 41
    Hi Sridhar,

    If the logo in Company information table we use the following statement to print the logo on the top of the report :

    Put the following statement onpredata item trigger

    "company information".CALCFIELDS(Picture);

    if you want print the logo on the every page, put the picture control on the header section of the data item and select the property print on every page yes.

    Ramesh
  • sridhar
    sridhar Member Posts: 171
    Thanks Guys