how to disable the print button in previewer [message #405786] |
Fri, 29 May 2009 07:42 |
shajat
Messages: 25 Registered: October 2008 Location: INDIA
|
Junior Member |
|
|
I want to avoid the output from printing. Just I want to see the output on the screen, it should not possible to print on the paper.
Pl help me , how to do this....
Thankyou........
|
|
|
Re: how to disable the print button in previewer [message #407417 is a reply to message #405786] |
Wed, 10 June 2009 02:39 |
ADNANTARIQ_85
Messages: 18 Registered: June 2009 Location: Faisalabad
|
Junior Member |
|
|
OK
DECLARE
pl_id ParamList;
BEGIN
pl_id := Create_Parameter_List('tmpdata');
Add_Parameter(pl_id,'DISABLEPRINT',TEXT_PARAMETER,'YES');
Run_Product(REPORTS, 'rpt_name', ASYNCHRONOUS, RUNTIME,
FILESYSTEM, pl_id, NULL);
END;
i Hope you understand
M. Adnan Tariq
JK Group of companies (Faisalabad Pakistan)
|
|
|
|