[jQuery] Re: RAW PRINTING - How can I print DIRECTLY to DOT Matrix Printer from jquery?

2008-10-22 Thread Jon Ursenbach

You don't need jQuery to do this.



On Oct 22, 6:00 am, Vedia [EMAIL PROTECTED] wrote:
 Hi!

 I want to sent text with javascript directly to Dot Matrix printer
 like Panasonic KXP-1050 without using true type fonts. As I know, this
 means: RAW Printing

 I want to use this for printing bills or ticket on continuous-form
 paper.

 There is ActiveX sample for InternetExplorer on this 
 link:http://www.xuebrothers.net/ax/activeprinter/interfaces.htm

 How can I this with jQuery? Can it be possible?

 Regards,
 Nuri AKMAN


[jQuery] Re: RAW PRINTING - How can I print DIRECTLY to DOT Matrix Printer from jquery?

2008-10-22 Thread alexb

Umm, I suggest you read this article: 
http://javascript.about.com/od/events/a/print.htm

Basically you can simply use a button with the onclick attribute to
tell the browser to bring up the print dialog box, i.e.:

input type=button value= Print this page
onclick=window.print();return false; /

Hope this helps,
Alex

Vedia wrote:
 Hi!

 I want to sent text with javascript directly to Dot Matrix printer
 like Panasonic KXP-1050 without using true type fonts. As I know, this
 means: RAW Printing

 I want to use this for printing bills or ticket on continuous-form
 paper.

 There is ActiveX sample for InternetExplorer on this link:
 http://www.xuebrothers.net/ax/activeprinter/interfaces.htm

 How can I this with jQuery? Can it be possible?

 Regards,
 Nuri AKMAN


[jQuery] Re: RAW PRINTING - How can I print DIRECTLY to DOT Matrix Printer from jquery?

2008-10-22 Thread alexb

Umm, I suggest you read this article: 
http://javascript.about.com/od/events/a/print.htm

Basically you can simply use a button with the onclick attribute to
tell the browser to bring up the print dialog box, i.e.:

input type=button value= Print this page
onclick=window.print();return false; /

Hope this helps,
Alex

On Oct 22, 4:00 pm, Vedia [EMAIL PROTECTED] wrote:
 Hi!

 I want to sent text with javascript directly to Dot Matrix printer
 like Panasonic KXP-1050 without using true type fonts. As I know, this
 means: RAW Printing

 I want to use this for printing bills or ticket on continuous-form
 paper.

 There is ActiveX sample for InternetExplorer on this 
 link:http://www.xuebrothers.net/ax/activeprinter/interfaces.htm

 How can I this with jQuery? Can it be possible?

 Regards,
 Nuri AKMAN