[cfaussie] Silent Printing to a Named Printer

2008-08-31 Thread Steve Armstrong
We are currently developing a ColdFusion based POS application. We would
like to add the ability to silently print a plain text document to a named
local client printer (docket printer). In this case the printing would not
be the client's default printer.

Do we have anyone on cfaussie who has been able to acheive this?

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Silent Printing to a Named Printer

2008-08-31 Thread Andrew Scott
Yes.

 

Depending what version of ColdFusion you are going to use, there are many
different options available to you. And I believe ColdFusion 8 has that
support natively.

 

 

 

-- 
Senior Coldfusion Developer
Aegeon Pty. Ltd.
 http://www.aegeon.com.au/ www.aegeon.com.au
Phone: +613 9015 8628
Mobile: 0404 998 273

 

 

 

From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Steve Armstrong
Sent: Monday, 1 September 2008 10:24 AM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Silent Printing to a Named Printer

 

We are currently developing a ColdFusion based POS application. We would
like to add the ability to silently print a plain text document to a named
local client printer (docket printer). In this case the printing would not
be the client's default printer.

Do we have anyone on cfaussie who has been able to acheive this?




--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Silent Printing to a Named Printer

2008-08-31 Thread Gareth Edwards

Let me clarify what we are looking to do.

We require a solution that silent prints a document to a Printer not 
visible to the Coldfusion server, and in fact only visible to the Client 
PC.

Looking for possible, Javascript, Local java client, Local AIR 
application solutions? Due to the nature of this software solution, we 
are looking for a one time purchase or a free solution of which we are 
able to redistribute to our clients at no additional cost.

Cheers
Gareth.

Steve Armstrong wrote:
 We are currently developing a ColdFusion based POS application. We 
 would like to add the ability to silently print a plain text document 
 to a named local client printer (docket printer). In this case the 
 printing would not be the client's default printer.

 Do we have anyone on cfaussie who has been able to acheive this?

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Silent Printing to a Named Printer

2008-08-31 Thread Dale Fraser

Not sure that helps.

Silently print from the Client, why? What is it? Surely the server served
the content?

From my experience, there is no such thing as what you are looking for, you
could write one, but went looking for something similar once found a couple,
but none were cheep and none allowed royalty free redistribution.

What format is the content? Text, html, pdf?

Regards
Dale Fraser
http://learncf.com
http://flexcf.com


-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Gareth Edwards
Sent: Monday, 1 September 2008 12:25 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Silent Printing to a Named Printer


Let me clarify what we are looking to do.

We require a solution that silent prints a document to a Printer not 
visible to the Coldfusion server, and in fact only visible to the Client 
PC.

Looking for possible, Javascript, Local java client, Local AIR 
application solutions? Due to the nature of this software solution, we 
are looking for a one time purchase or a free solution of which we are 
able to redistribute to our clients at no additional cost.

Cheers
Gareth.

Steve Armstrong wrote:
 We are currently developing a ColdFusion based POS application. We 
 would like to add the ability to silently print a plain text document 
 to a named local client printer (docket printer). In this case the 
 printing would not be the client's default printer.

 Do we have anyone on cfaussie who has been able to acheive this?

 




--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Silent Printing to a Named Printer

2008-08-31 Thread Dale Fraser

I did it in .NET once.

A client side program, ran in tray.

Queried the DB every X seconds, to see if there were any invoices to be
printed to this client printer, if so print them.

It worked well, was real time invoicing, it required that PC to be on and
have the invoice printer appropriately connected.

Something in Air would work just as well.

Regards
Dale Fraser
http://learncf.com
http://flexcf.com



-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Barry Beattie
Sent: Monday, 1 September 2008 12:58 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Silent Printing to a Named Printer


I'm just putting the finishing touches on something similar, although
it's not POS dockets but PDF's and it had three options: email, print
to a server-connected printer or print to the local printer via a
print dialog  -with Javascript.

The browser (where your CF-based POS lives) doesn't talk to the
printer. It is the operating system that talks to the printer. the
browser negotiates that process with the O/S (hence the print dialogue
where the print type and which printer are selected)

some points
 - which client-side printer will it print to? what if there's more
than one? the obvious answer is the default printer, but what
happens if that's not the one needed? or there's no printers
installed?
- Silently print means that you want to suppress the print dialog
thrown up by the O/S when javascript calls print(). IIWY, I'd start
there first.







On Mon, Sep 1, 2008 at 12:25 PM, Gareth Edwards [EMAIL PROTECTED] wrote:

 Let me clarify what we are looking to do.

 We require a solution that silent prints a document to a Printer not
 visible to the Coldfusion server, and in fact only visible to the Client
 PC.

 Looking for possible, Javascript, Local java client, Local AIR
 application solutions? Due to the nature of this software solution, we
 are looking for a one time purchase or a free solution of which we are
 able to redistribute to our clients at no additional cost.

 Cheers
 Gareth.

 Steve Armstrong wrote:
 We are currently developing a ColdFusion based POS application. We
 would like to add the ability to silently print a plain text document
 to a named local client printer (docket printer). In this case the
 printing would not be the client's default printer.

 Do we have anyone on cfaussie who has been able to acheive this?

 


 




--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Silent Printing to a Named Printer

2008-08-31 Thread Toby Tremayne

Hah! I knew you were a closet .net geek.  You're so busted ;p

Toby
who is kidding, btw

On 01/09/2008, at 2:02 PM, Dale Fraser wrote:


 I did it in .NET once.

 A client side program, ran in tray.

 Queried the DB every X seconds, to see if there were any invoices to  
 be
 printed to this client printer, if so print them.

 It worked well, was real time invoicing, it required that PC to be  
 on and
 have the invoice printer appropriately connected.

 Something in Air would work just as well.

 Regards
 Dale Fraser
 http://learncf.com
 http://flexcf.com



 -Original Message-
 From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED]  
 On Behalf
 Of Barry Beattie
 Sent: Monday, 1 September 2008 12:58 PM
 To: cfaussie@googlegroups.com
 Subject: [cfaussie] Re: Silent Printing to a Named Printer


 I'm just putting the finishing touches on something similar, although
 it's not POS dockets but PDF's and it had three options: email, print
 to a server-connected printer or print to the local printer via a
 print dialog  -with Javascript.

 The browser (where your CF-based POS lives) doesn't talk to the
 printer. It is the operating system that talks to the printer. the
 browser negotiates that process with the O/S (hence the print dialogue
 where the print type and which printer are selected)

 some points
 - which client-side printer will it print to? what if there's more
 than one? the obvious answer is the default printer, but what
 happens if that's not the one needed? or there's no printers
 installed?
 - Silently print means that you want to suppress the print dialog
 thrown up by the O/S when javascript calls print(). IIWY, I'd start
 there first.







 On Mon, Sep 1, 2008 at 12:25 PM, Gareth Edwards  
 [EMAIL PROTECTED] wrote:

 Let me clarify what we are looking to do.

 We require a solution that silent prints a document to a Printer not
 visible to the Coldfusion server, and in fact only visible to the  
 Client
 PC.

 Looking for possible, Javascript, Local java client, Local AIR
 application solutions? Due to the nature of this software solution,  
 we
 are looking for a one time purchase or a free solution of which we  
 are
 able to redistribute to our clients at no additional cost.

 Cheers
 Gareth.

 Steve Armstrong wrote:
 We are currently developing a ColdFusion based POS application. We
 would like to add the ability to silently print a plain text  
 document
 to a named local client printer (docket printer). In this case the
 printing would not be the client's default printer.

 Do we have anyone on cfaussie who has been able to acheive this?









 

---

Life is poetry, write it in your own words

---

Toby Tremayne
CEO
Code Poet and Zen Master of the Heavy Sleep
Magic Industries
0416 048 090
ICQ: 13107913
Skype: lyricist1


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] It’s Going To Be Brilliant

2008-08-31 Thread Chris Velevitch

Meet on Monday, 29th September at 6pm for 6:30 start

Be one of the first to see the next big thing from Adobe on Monday
29th September. Join in to see and hear first hand how something very
special will help you get to brilliant faster. Save the date and get a
good look at what's to come.

We'll be meeting at a venue courtesy of Rocketboots.

Please RSVP on http://apugs2008september.eventbrite.com if you want to
get food and drink provided courtesy of Adobe.

Note: In order to be eligible for the major software prize, valued at
$US2100, drawn at the November meeting you must have attended at least
3 meeting since the June major software prize draw. Previous major
software winners within the last 2 years are ineligible.


Chris
--
Chris Velevitch
Manager - Adobe Platform Users Group, Sydney
m: 0415 469 095
www.apugs.org.au

Adobe Platform Users Group, Sydney
September meeting: It's Going To Be Brilliant
Date: Mon 29th September 6pm for 6:30 start
Details and RSVP on http://apugs2008september.eventbrite.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: It’s Going To Be Brilliant

2008-08-31 Thread Toby Tremayne

Chris - I assume this is in Sydney yeah?

Toby
On 01/09/2008, at 2:34 PM, Chris Velevitch wrote:


 Meet on Monday, 29th September at 6pm for 6:30 start

 Be one of the first to see the next big thing from Adobe on Monday
 29th September. Join in to see and hear first hand how something very
 special will help you get to brilliant faster. Save the date and get a
 good look at what's to come.

 We'll be meeting at a venue courtesy of Rocketboots.

 Please RSVP on http://apugs2008september.eventbrite.com if you want to
 get food and drink provided courtesy of Adobe.

 Note: In order to be eligible for the major software prize, valued at
 $US2100, drawn at the November meeting you must have attended at least
 3 meeting since the June major software prize draw. Previous major
 software winners within the last 2 years are ineligible.


 Chris
 --
 Chris Velevitch
 Manager - Adobe Platform Users Group, Sydney
 m: 0415 469 095
 www.apugs.org.au

 Adobe Platform Users Group, Sydney
 September meeting: It's Going To Be Brilliant
 Date: Mon 29th September 6pm for 6:30 start
 Details and RSVP on http://apugs2008september.eventbrite.com

 

---

Life is poetry, write it in your own words

---

Toby Tremayne
CEO
Code Poet and Zen Master of the Heavy Sleep
Magic Industries
0416 048 090
ICQ: 13107913
Skype: lyricist1


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: It’s Going To Be Brilliant

2008-08-31 Thread Chris Velevitch

On Mon, Sep 1, 2008 at 2:57 PM, Toby Tremayne [EMAIL PROTECTED] wrote:

 Chris - I assume this is in Sydney yeah?


Yes. Sorry, I left that out of the subject.


Chris
--
Chris Velevitch
Manager - Adobe Platform Users Group, Sydney
m: 0415 469 095
www.apugs.org.au

Adobe Platform Users Group, Sydney
September meeting: It's Going To Be Brilliant
Date: Mon 29th September 6pm for 6:30 start
Details and RSVP on http://apugs2008september.eventbrite.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] [Ann-Syd] It’s Going To Be Brilliant

2008-08-31 Thread Chris Velevitch

This announce is for Sydney members.

Meet on Monday, 29th September at 6pm for 6:30 start

Be one of the first to see the next big thing from Adobe on Monday
29th September. Join in to see and hear first hand how something very
special will help you get to brilliant faster. Save the date and get a
good look at what's to come.

We'll be meeting at a venue courtesy of Rocketboots.

Please RSVP on http://apugs2008september.eventbrite.com if you want to
get food and drink provided courtesy of Adobe.

Note: In order to be eligible for the major software prize, valued at
$US2100, drawn at the November meeting you must have attended at least
3 meeting since the June major software prize draw. Previous major
software winners within the last 2 years are ineligible.


Chris
--
Chris Velevitch
Manager - Adobe Platform Users Group, Sydney
m: 0415 469 095
www.apugs.org.au

Adobe Platform Users Group, Sydney
September meeting: It's Going To Be Brilliant
Date: Mon 29th September 6pm for 6:30 start
Details and RSVP on http://apugs2008september.eventbrite.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Silent Printing to a Named Printer

2008-08-31 Thread Dale Fraser

Hehe,

But in this case it was a good solution as the printout was a crystal report
and .NET gives you the crystal API stuff.

I am a MS fanboy at heart, those Mac Guy - PC Guy adds upset me.

Regards
Dale Fraser
http://learncf.com
http://flexcf.com



-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Toby Tremayne
Sent: Monday, 1 September 2008 2:30 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: Silent Printing to a Named Printer


Hah! I knew you were a closet .net geek.  You're so busted ;p

Toby
who is kidding, btw

On 01/09/2008, at 2:02 PM, Dale Fraser wrote:


 I did it in .NET once.

 A client side program, ran in tray.

 Queried the DB every X seconds, to see if there were any invoices to  
 be
 printed to this client printer, if so print them.

 It worked well, was real time invoicing, it required that PC to be  
 on and
 have the invoice printer appropriately connected.

 Something in Air would work just as well.

 Regards
 Dale Fraser
 http://learncf.com
 http://flexcf.com



 -Original Message-
 From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED]  
 On Behalf
 Of Barry Beattie
 Sent: Monday, 1 September 2008 12:58 PM
 To: cfaussie@googlegroups.com
 Subject: [cfaussie] Re: Silent Printing to a Named Printer


 I'm just putting the finishing touches on something similar, although
 it's not POS dockets but PDF's and it had three options: email, print
 to a server-connected printer or print to the local printer via a
 print dialog  -with Javascript.

 The browser (where your CF-based POS lives) doesn't talk to the
 printer. It is the operating system that talks to the printer. the
 browser negotiates that process with the O/S (hence the print dialogue
 where the print type and which printer are selected)

 some points
 - which client-side printer will it print to? what if there's more
 than one? the obvious answer is the default printer, but what
 happens if that's not the one needed? or there's no printers
 installed?
 - Silently print means that you want to suppress the print dialog
 thrown up by the O/S when javascript calls print(). IIWY, I'd start
 there first.







 On Mon, Sep 1, 2008 at 12:25 PM, Gareth Edwards  
 [EMAIL PROTECTED] wrote:

 Let me clarify what we are looking to do.

 We require a solution that silent prints a document to a Printer not
 visible to the Coldfusion server, and in fact only visible to the  
 Client
 PC.

 Looking for possible, Javascript, Local java client, Local AIR
 application solutions? Due to the nature of this software solution,  
 we
 are looking for a one time purchase or a free solution of which we  
 are
 able to redistribute to our clients at no additional cost.

 Cheers
 Gareth.

 Steve Armstrong wrote:
 We are currently developing a ColdFusion based POS application. We
 would like to add the ability to silently print a plain text  
 document
 to a named local client printer (docket printer). In this case the
 printing would not be the client's default printer.

 Do we have anyone on cfaussie who has been able to acheive this?









 

---

Life is poetry, write it in your own words

---

Toby Tremayne
CEO
Code Poet and Zen Master of the Heavy Sleep
Magic Industries
0416 048 090
ICQ: 13107913
Skype: lyricist1




--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: It's Going To Be Brilliant

2008-08-31 Thread Steve Onnis

Chris

Is it possible to have this available via connect for interstate people who
would like to see the meeting?

Steve 

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Chris Velevitch
Sent: Monday, 1 September 2008 3:01 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: It's Going To Be Brilliant


On Mon, Sep 1, 2008 at 2:57 PM, Toby Tremayne [EMAIL PROTECTED] wrote:

 Chris - I assume this is in Sydney yeah?


Yes. Sorry, I left that out of the subject.


Chris
--
Chris Velevitch
Manager - Adobe Platform Users Group, Sydney
m: 0415 469 095
www.apugs.org.au

Adobe Platform Users Group, Sydney
September meeting: It's Going To Be Brilliant
Date: Mon 29th September 6pm for 6:30 start Details and RSVP on
http://apugs2008september.eventbrite.com





--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: It's Going To Be Brilliant

2008-08-31 Thread Chris Velevitch

On Mon, Sep 1, 2008 at 3:33 PM, Steve Onnis [EMAIL PROTECTED] wrote:
 Is it possible to have this available via connect for interstate people who
 would like to see the meeting?

I'll see what I can do.


Chris
--
Chris Velevitch
Manager - Adobe Platform Users Group, Sydney
m: 0415 469 095
www.apugs.org.au

Adobe Platform Users Group, Sydney
September meeting: It's Going To Be Brilliant
Date: Mon 29th September 6pm for 6:30 start
Details and RSVP on http://apugs2008september.eventbrite.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: It's Going To Be Brilliant

2008-08-31 Thread Dale Fraser

Or just tell us what it is now.

Regards
Dale Fraser
http://learncf.com
http://flexcf.com



-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Steve Onnis
Sent: Monday, 1 September 2008 3:33 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: It's Going To Be Brilliant


Chris

Is it possible to have this available via connect for interstate people who
would like to see the meeting?

Steve 

-Original Message-
From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
Of Chris Velevitch
Sent: Monday, 1 September 2008 3:01 PM
To: cfaussie@googlegroups.com
Subject: [cfaussie] Re: It's Going To Be Brilliant


On Mon, Sep 1, 2008 at 2:57 PM, Toby Tremayne [EMAIL PROTECTED] wrote:

 Chris - I assume this is in Sydney yeah?


Yes. Sorry, I left that out of the subject.


Chris
--
Chris Velevitch
Manager - Adobe Platform Users Group, Sydney
m: 0415 469 095
www.apugs.org.au

Adobe Platform Users Group, Sydney
September meeting: It's Going To Be Brilliant
Date: Mon 29th September 6pm for 6:30 start Details and RSVP on
http://apugs2008september.eventbrite.com







--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: It's Going To Be Brilliant

2008-08-31 Thread Chris Velevitch

On Mon, Sep 1, 2008 at 3:40 PM, Dale Fraser [EMAIL PROTECTED] wrote:

 Or just tell us what it is now.

There's no fun in doing that!



Chris
--
Chris Velevitch
Manager - Adobe Platform Users Group, Sydney
m: 0415 469 095
www.apugs.org.au

Adobe Platform Users Group, Sydney
September meeting: It's Going To Be Brilliant
Date: Mon 29th September 6pm for 6:30 start
Details and RSVP on http://apugs2008september.eventbrite.com

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---



[cfaussie] Re: Silent Printing to a Named Printer

2008-08-31 Thread Barry Beattie

now-a-days MS are pushing SQLServer's reporting services (which IMHO
are very limiting as far as layout and I'd guess you'd get better
results from CF's report builder)

but you're talking about a client-server app.

OK, Steve, Gareth:

is the POS a web-delivered app? in other words, are you writing CF to
produce DHTML? and is the reason for this is because of web-type reach
and not needing to install software on the client machines?

if so, then you'll have to deal with the browser (that the HTML lives
in) to send print commands. and that's all you can do since your CF
app won't know anything about individual printer set-ups of client
machines.

HOWEVER, if you're able to install software then the question becomes:
do you need a DHTML/ traditional web app or can a client/server app
do? (keeping in mind AIR is pretty much client/server). A client app
has a better relationship with the O/S than a browser








On Mon, Sep 1, 2008 at 3:12 PM, Dale Fraser [EMAIL PROTECTED] wrote:

 Hehe,

 But in this case it was a good solution as the printout was a crystal report
 and .NET gives you the crystal API stuff.

 I am a MS fanboy at heart, those Mac Guy - PC Guy adds upset me.

 Regards
 Dale Fraser
 http://learncf.com
 http://flexcf.com



 -Original Message-
 From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf
 Of Toby Tremayne
 Sent: Monday, 1 September 2008 2:30 PM
 To: cfaussie@googlegroups.com
 Subject: [cfaussie] Re: Silent Printing to a Named Printer


 Hah! I knew you were a closet .net geek.  You're so busted ;p

 Toby
 who is kidding, btw

 On 01/09/2008, at 2:02 PM, Dale Fraser wrote:


 I did it in .NET once.

 A client side program, ran in tray.

 Queried the DB every X seconds, to see if there were any invoices to
 be
 printed to this client printer, if so print them.

 It worked well, was real time invoicing, it required that PC to be
 on and
 have the invoice printer appropriately connected.

 Something in Air would work just as well.

 Regards
 Dale Fraser
 http://learncf.com
 http://flexcf.com



 -Original Message-
 From: cfaussie@googlegroups.com [mailto:[EMAIL PROTECTED]
 On Behalf
 Of Barry Beattie
 Sent: Monday, 1 September 2008 12:58 PM
 To: cfaussie@googlegroups.com
 Subject: [cfaussie] Re: Silent Printing to a Named Printer


 I'm just putting the finishing touches on something similar, although
 it's not POS dockets but PDF's and it had three options: email, print
 to a server-connected printer or print to the local printer via a
 print dialog  -with Javascript.

 The browser (where your CF-based POS lives) doesn't talk to the
 printer. It is the operating system that talks to the printer. the
 browser negotiates that process with the O/S (hence the print dialogue
 where the print type and which printer are selected)

 some points
 - which client-side printer will it print to? what if there's more
 than one? the obvious answer is the default printer, but what
 happens if that's not the one needed? or there's no printers
 installed?
 - Silently print means that you want to suppress the print dialog
 thrown up by the O/S when javascript calls print(). IIWY, I'd start
 there first.







 On Mon, Sep 1, 2008 at 12:25 PM, Gareth Edwards
 [EMAIL PROTECTED] wrote:

 Let me clarify what we are looking to do.

 We require a solution that silent prints a document to a Printer not
 visible to the Coldfusion server, and in fact only visible to the
 Client
 PC.

 Looking for possible, Javascript, Local java client, Local AIR
 application solutions? Due to the nature of this software solution,
 we
 are looking for a one time purchase or a free solution of which we
 are
 able to redistribute to our clients at no additional cost.

 Cheers
 Gareth.

 Steve Armstrong wrote:
 We are currently developing a ColdFusion based POS application. We
 would like to add the ability to silently print a plain text
 document
 to a named local client printer (docket printer). In this case the
 printing would not be the client's default printer.

 Do we have anyone on cfaussie who has been able to acheive this?









 

 ---

 Life is poetry, write it in your own words

 ---

 Toby Tremayne
 CEO
 Code Poet and Zen Master of the Heavy Sleep
 Magic Industries
 0416 048 090
 ICQ: 13107913
 Skype: lyricist1




 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
cfaussie group.
To post to this group, send email to cfaussie@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cfaussie?hl=en
-~--~~~~--~~--~--~---