Re: [PHP] Print current page with no printer dialog box - How ?

2001-09-20 Thread * RzE:
I guess people can always use the browser's print button, but this has some limitation on pages that use frames etc. I figure you already know this one: window.print(); (JavaScript) :) You still get the print-dialog, but the user doesn't have to push the print button of the browser and

Re: [PHP] Print current page with no printer dialog box - How ?

2001-09-18 Thread * RzE:
Original message From: hue micheal [EMAIL PROTECTED] Date: Mon, Sep 17, 2001 at 09:51:07PM -0400 Message-ID: [EMAIL PROTECTED] Subject: [PHP] Print current page with no printer dialog box - How ? Do you know how to create a button to print current page without bringing up the printer dialog

RE: [PHP] Print current page with no printer dialog box - How ?

2001-09-18 Thread Matthew Loff
current page with no printer dialog box - How ? Original message From: hue micheal [EMAIL PROTECTED] Date: Mon, Sep 17, 2001 at 09:51:07PM -0400 Message-ID: [EMAIL PROTECTED] Subject: [PHP] Print current page with no printer dialog box - How ? Do you know how to create a button to print current

Re: [PHP] Print current page with no printer dialog box - How ?

2001-09-18 Thread * RzE:
Original message From: Matthew Loff [EMAIL PROTECTED] Date: Tue, Sep 18, 2001 at 04:11:34AM -0400 Message-ID: 017f01c14019$887d5600$0ce60281@bang Subject: RE: [PHP] Print current page with no printer dialog box - How ? FYI-- Page breaks can be designated with CSS (style sheets)... Although

Re: [PHP] Print current page with no printer dialog box - How ?

2001-09-18 Thread Chris Lambert
[EMAIL PROTECTED] (* RZe:) wrote in news:20010918101659.I17452@pro- pain.telemediair.nl: Yep... that's what I said; You can't use pagebreaks. First... they're not part of HTML. Second; like you said yourself... it's not cross-platform... and like everyone knows; creating sites/pages that

Re: [PHP] Print current page with no printer dialog box - How ?

2001-09-18 Thread * RzE:
Original message From: Chris Lambert [EMAIL PROTECTED] Date: Tue, Sep 18, 2001 at 08:52:46AM - Message-ID: [EMAIL PROTECTED] Subject: Re: [PHP] Print current page with no printer dialog box - How ? However, using CSS to insert page breaks causes no problem at all in older browsers. HTML

Re: [PHP] Print current page with no printer dialog box - How ?

2001-09-18 Thread Chris Lambert
[EMAIL PROTECTED] (* RZe:) wrote in [EMAIL PROTECTED]:">news:[EMAIL PROTECTED]: FYI; pagebreaks are added CSS2. Not available in CSS1, so not compatible with older versions of browsers (opposite to what you say). I know that. I did not say it would work - I said it would not cause any

Re: [PHP] Print current page with no printer dialog box - How ?

2001-09-18 Thread * RzE:
I know that. I did not say it would work - I said it would not cause any problems. The HTML specification says that clients/browsers should ignore any tags they don't understand. Therefore any old browser coming across a STYLE=... will ignore it. Pages made solely for newer browsers

Re: [PHP] Print current page with no printer dialog box - How ?

2001-09-18 Thread Marc Swanson
Do you know how to create a button to print current page without bringing up the printer dialog box? I just print to the default printer. And also how do I insert a page break ? Yes, to both questions. See http://www.meadroid.com/scriptx It is an ActiveX component that allows pretty

RE: [PHP] Print current page with no printer dialog box - How ?

2001-09-18 Thread hue micheal
Thanks everyone for ideas and suggestions. In short, it is no easy way, but there are work arounds by using scripting, CSS etc, but it may not be portable. I guess people can always use the browser's print button, but this has some limitation on pages that use frames etc. Regards, Huem --