calling Printer

divyakm

New Member
HI

I am developing an application in webspeed with progress as RDBMS. I need to print a document on click on print button in the web page. How to do it? Can I call Windows Print Option, If yes, then how to do it ?

Regards
Divya
 

obio

New Member
Hi Divya,

if you mean printing the html page then use this:

Code:
<input type=button value=print onclick=print();>

This calls up the print dialog window that usually comes up when you go throught File -> Print.
 
Top