Re: [AFFUG Discuss] Better control of Print Jobs...

2010-12-16 Thread Laurence MacNeill
No, we just name the printers what we need 'em to be named (you can change their names when you hook 'em up to a computer, and when you network to 'em as well) then set the appropriate printer-name in the .xml configuration file for the Flex program... I suppose I could write something that would

Re: [AFFUG Discuss] Better control of Print Jobs...

2010-09-04 Thread Eric DeCoff
Laurence, This is part three that lets you hide the header... http://www.kalengibbons.com/blog/index.php/2009/04/custom-printing-with-flex-part-3-printing-data/ *source code* also available On Sat, Sep 4, 2010 at 7:05 AM, Eric DeCoff ericdec...@gmail.com wrote: Laurence, Back Home

Re: [AFFUG Discuss] Better control of Print Jobs...

2010-09-04 Thread Laurence MacNeill
Thanks for the info, Eric... Unfortunately that solution still appears to require user-interaction of some sort... You can't just hit Print and have it go to the printer that you want it to go to. Unless, of course, the printer is shared on the network and available to the server -- so it's the

Re: [AFFUG Discuss] Better control of Print Jobs...

2010-09-04 Thread Eric DeCoff
Laurence, Have you concidered using Microsoft reporting features? sent via droid On Sep 4, 2010 5:10 PM, Laurence MacNeill laurence5...@gmail.com wrote: Thanks for the info, Eric... Unfortunately that solution still appears to require user-interaction of some sort... You can't just hit

Re: [AFFUG Discuss] Better control of Print Jobs...

2010-09-04 Thread Laurence MacNeill
You mean from the MSSQL database? I'm unfamiliar with the reporting features from there, but it would seem to me to be the same situation as PHP and CF -- I need control of a client computer's printer(s). A server-side solution isn't going to work. And I seriously doubt that the MSSQL reporting

Re: [AFFUG Discuss] Better control of Print Jobs...

2010-09-04 Thread Eric DeCoff
Laurence, Here a link to SQL server client side printing http://msdn.microsoft.com/en-us/library/ms155874(SQL.90).aspx sent via droid On Sep 4, 2010 6:00 PM, Laurence MacNeill laurence5...@gmail.com wrote: You mean from the MSSQL database? I'm unfamiliar with the reporting features from

Re: [AFFUG Discuss] Better control of Print Jobs...

2010-09-04 Thread Laurence MacNeill
Two problems with that - #1, we use SQL 2000, not SQL 2005 or 2008 (doesn't seem like they offer a version of that library for SQL 2000, from what I can tell). Second, it still requires user interaction... It's basically a custom print-dialog box -- any print-dialog box is a bad thing for us.

Re: [AFFUG Discuss] Better control of Print Jobs...

2010-09-02 Thread Eric DeCoff
Air is definitely an option but version control becomes an issue PHP has the same drawback.. is the sharedprinter option viable for you... sent via droid On Sep 1, 2010 9:11 PM, Laurence MacNeill laurence5...@gmail.com wrote: AIR 2.0 is still so new that the info is still confusing... I'm not

Re: [AFFUG Discuss] Better control of Print Jobs...

2010-09-02 Thread Laurence MacNeill
Yeah, I don't care for the version-control stuff, if we wind up doing this with AIR... But the people who are going to access this program are pretty much in-house only, so hopefully it won't be too terrible... The only people outside of our company who will access this app are the IT staff from

Re: [AFFUG Discuss] Better control of Print Jobs...

2010-09-02 Thread Douglas Knudsen
Air 2.0 has the whole native process thing, so guess this is possible if you have a shell script or something that can do this. I have not looked at the PHP thing, but CF has access to printers via the server as of CF8. See CFPRINT and getPrinterInfo() for example. I've never used this, but

Re: [AFFUG Discuss] Better control of Print Jobs...

2010-09-02 Thread Laurence MacNeill
Yeah, looks like PHP and CF now offer pretty much the same setup, it seems. Looks like the printer(s) have to be shared on the network, thus allowing the server to know about them. Fine for the shows when we're using a local server; not good when the server is our web-hosting server. I'm

Re: [AFFUG Discuss] Better control of Print Jobs...

2010-09-01 Thread Cameron Childress
On Tue, Aug 31, 2010 at 4:47 PM, Laurence MacNeill laurence5...@gmail.com wrote: I could really use some major advice here. We're so close to the finishing point on this project, and we're being held back by stupid printing problems... We *HAVE* to be able to print with no pop-up dialog

Re: [AFFUG Discuss] Better control of Print Jobs...

2010-09-01 Thread Laurence MacNeill
From what I've read, it does appear that AIR 2.0 will do it. There are methods on PrintJob that will return a list of the client's printers, and let you select one to send the job to, and skip all dialog boxes. So AIR might actually be an option. But I'd prefer a solution with Flash Player.

Re: [AFFUG Discuss] Better control of Print Jobs...

2010-09-01 Thread Cameron Childress
On Wed, Sep 1, 2010 at 9:04 PM, Laurence MacNeill laurence5...@gmail.com wrote: From what I've read, it does appear that AIR 2.0 will do it.  There are methods on PrintJob that will return a list of the client's printers, and let you select one to send the job to, and skip all dialog boxes.  So

Re: [AFFUG Discuss] Better control of Print Jobs...

2010-09-01 Thread Laurence MacNeill
AIR 2.0 is still so new that the info is still confusing... I'm not 100% certain, myself, but it does look like a good possibility. On Sep 1, 2010 9:08 PM, Cameron Childress camer...@gmail.com wrote: On Wed, Sep 1, 2010 at 9:04 PM, Laurence MacNeill laurence5...@gmail.com wrote: From what

Re: [AFFUG Discuss] Better control of Print Jobs...

2010-08-31 Thread Eric DeCoff
Hey laurence, I'd love to see your solution to this... One of the biggest drawbacks to flashplayer... Are you using coldfussion? Also pdf printing might be an option... Will check when I get home sent via droid On Aug 31, 2010 4:48 PM, Laurence MacNeill laurence5...@gmail.com wrote: I

Re: [AFFUG Discuss] Better control of Print Jobs...

2010-08-31 Thread Eric DeCoff
Laurence, Read thru the comments for shareprinting ... I think this is what you are looking for... http://php.net/manual/en/ref.printer.php sent via droid On Aug 31, 2010 5:38 PM, Eric DeCoff ericdec...@gmail.com wrote: Hey laurence, I'd love to see your solution to this... One of the

Re: [AFFUG Discuss] Better control of Print Jobs...

2010-08-31 Thread Eric DeCoff
Lol Laurence, it called sharedprintername Okay thinking back coldfussion... sent via droid On Aug 31, 2010 6:24 PM, Laurence MacNeill laurence5...@gmail.com wrote: I'm not quite understanding the link you sent -- that seems to deal with PHP, which I'm not using... Maybe I'm missing

Re: [AFFUG Discuss] Better control of Print Jobs...

2010-08-31 Thread Laurence MacNeill
ahh -- ok. I see it. So I'd have to install PHP to get that to work, it seems?... Yuck... Not that I have a problem with PHP, per se, it's just that I've never used it, nor has anyone else in the office... I'd love to find a solution that involved Flex/FlashPlayer/AIR/ColdFusion somehow. L.

Re: [AFFUG Discuss] Better control of Print Jobs...

2010-08-31 Thread Eric DeCoff
Laurence, What is your current setup... Where is your office located.. sent via droid On Aug 31, 2010 6:42 PM, Laurence MacNeill laurence5...@gmail.com wrote: ahh -- ok. I see it. So I'd have to install PHP to get that to work, it seems?... Yuck... Not that I have a problem with PHP, per se,

Re: [AFFUG Discuss] Better control of Print Jobs...

2010-08-31 Thread Eric DeCoff
Luarence, Go to affug and send me a message.. I need to solve this for a 2011 project.. If you want to hookup and brainstorm this thru.. sent via droid On Aug 31, 2010 6:59 PM, Eric DeCoff ericdec...@gmail.com wrote: Laurence, What is your current setup... Where is your office located..

Re: [AFFUG Discuss] Better control of Print Jobs...

2010-08-31 Thread Laurence MacNeill
We're currently setup with a web-host in Dallas, TX, which is running CF 9, MSSQL 2000. The office is located in Alpharetta, GA. I work from home, in Mableton, GA, and generally don't go into the office... On Tue, Aug 31, 2010 at 6:59 PM, Eric DeCoff ericdec...@gmail.com wrote: Laurence,

Re: [AFFUG Discuss] Better control of Print Jobs...

2010-08-31 Thread Laurence MacNeill
I sent you an e-mail thru the AFFUG meetup site. I hope that was the site you were talking about. :-) L. On Tue, Aug 31, 2010 at 7:02 PM, Eric DeCoff ericdec...@gmail.com wrote: Luarence, Go to affug and send me a message.. I need to solve this for a 2011 project.. If you want to