Print the report without preview

mrigyamrigya Member Posts: 124
Hi NAV Expert,
How can i print(get the hard copy of) the report directly
without preview and without pushing print button.

Thanks in advance
Mrigya

Comments

  • kapil4dynamicskapil4dynamics Member Posts: 591
    Y not, at least documents definitely yes.
    Kapil Khanna
  • roshandilrukroshandilruk Member Posts: 51
    In coding level you could do this, a simple example as below,

    SaleInvHedr.RESET;
    SaleInvHedr.SETRANGE("No.","No.");
    REPORT.RUNMODAL(50106,FALSE,FALSE,SaleInvHedr);

    Apply similar kind of code, with RUNMODEL make sure both boolean parameters are FALSE.
  • kapil4dynamicskapil4dynamics Member Posts: 591
    :oops: Oh i missed this
    and without pushing print button
    Kapil Khanna
Sign In or Register to comment.