RE: Print to Windows default Printer

2005-01-21 Thread Tim Golden
[Samantha] | Thanks for the URL. I finally am able to print the temp file. | Not exactly | what I wanted, but it will work. The code I used to print was this: | | os.system ("start /min notepad /P temp.txt") | | Thanks ALL! | S Glad you got it sorted. What you describe is, in fact, the sli

Re: Print to Windows default Printer

2005-01-20 Thread Peter Hansen
Tim Golden wrote: [Samantha] | The printer is on LPT1, but I sure can't get the temp file to | print for some | reason. | I am using Windows XP SP2. | S i'm afraid I have to step out here (metaphorically speaking): I'm using Win2K and have no access to XP boxes. The technique works fine here; it

Re: Print to Windows default Printer

2005-01-20 Thread Samantha
Thanks for the URL. I finally am able to print the temp file. Not exactly what I wanted, but it will work. The code I used to print was this: os.system ("start /min notepad /P temp.txt") Thanks ALL! S "Kristian Zoerhoff" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > On Thu,

Re: Print to Windows default Printer

2005-01-20 Thread Samantha
Thanks Scott, Not wasting any paper yet. I can't seem to get the file to print at all yet. S "Scott David Daniels" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Tim Golden wrote: >> [Samantha] >> | I am new to Python and I am having considerable trouble | trying to >> print | (usi

Re: Print to Windows default Printer

2005-01-20 Thread Kristian Zoerhoff
On Thu, 20 Jan 2005 19:14:10 -, Tim Golden <[EMAIL PROTECTED]> wrote: > [Kristian Zoerhoff] > | > | On Thu, 20 Jan 2005 18:58:25 -, Tim Golden > | <[EMAIL PROTECTED]> wrote: > | > > | > Can anyone else try a "PRINT blah" or a "COPY blah LPT1:" > | > on XP SP2? > | > | The printer is probabl

RE: Print to Windows default Printer

2005-01-20 Thread Tim Golden
[Samantha] | The printer is on LPT1, but I sure can't get the temp file to | print for some | reason. | I am using Windows XP SP2. | S i'm afraid I have to step out here (metaphorically speaking): I'm using Win2K and have no access to XP boxes. The technique works fine here; it may be that eithe

Re: Print to Windows default Printer

2005-01-20 Thread Samantha
The printer is on LPT1, but I sure can't get the temp file to print for some reason. I am using Windows XP SP2. S "Tim Golden" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > [Samantha] > > [... snip my explanation of PRINT / COPY LPTx: ...] > > | Thanks Tim, > | That is exactly wha

RE: Print to Windows default Printer

2005-01-20 Thread Tim Golden
[Samantha] [... snip my explanation of PRINT / COPY LPTx: ...] | Thanks Tim, | That is exactly what I want to do. | How do I map the printer to LPT1? | S Depends on a lot of things: whether the printer is local or networked; what version of Windows you're running, &. As a very basic starting p

Re: Print to Windows default Printer

2005-01-20 Thread Samantha
Thanks Tim, That is exactly what I want to do. How do I map the printer to LPT1? S "Tim Golden" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > [Samantha] > | Thanks Tim. I didn't realize it would be so difficult. > | S > > Strictly, if all you want to do is print text and you > have

Re: Print to Windows default Printer

2005-01-20 Thread Scott David Daniels
Tim Golden wrote: [Samantha] | I am new to Python and I am having considerable trouble | trying to print | (using a simple script) to the default printer rather than the screen. | Thanks for any help. | S It may be that something here will help you: http://tgolden.sc.sabren.com/python/win32_how

RE: Print to Windows default Printer

2005-01-20 Thread Tim Golden
[Samantha] | Thanks Tim. I didn't realize it would be so difficult. | S Strictly, if all you want to do is print text and you have mapped LPTx: to some printer (local or network) then the venerable "PRINT " or "COPY LPTx:" may well be what you want. You can issue these via an os.system call from

Re: Print to Windows default Printer

2005-01-19 Thread Samantha
Thanks Tim. I didn't realize it would be so difficult. S "Tim Golden" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] -- http://mail.python.org/mailman/listinfo/python-list

RE: Print to Windows default Printer

2005-01-19 Thread Tim Golden
[Samantha] | I am new to Python and I am having considerable trouble | trying to print | (using a simple script) to the default printer rather than the screen. | Thanks for any help. | S It may be that something here will help you: http://tgolden.sc.sabren.com/python/win32_how_do_i/print.html

Re: Print to Windows default Printer

2005-01-18 Thread Samantha
Thanks for he quick response. This is small sample code from a PSP script to get Exit Info of a digital image. I want to print to the printer rather than the screen. --- Info = App.Do( Environment, 'ReturnImageInfo' ) print print 'Input Device Information' for key in InputDev

Re: Print to Windows default Printer

2005-01-18 Thread Peter Hansen
Samantha wrote: I am new to Python and I am having considerable trouble trying to print (using a simple script) to the default printer rather than the screen. Thanks for any help. Please show some example code, and explain in more detail what you are trying to do. There are perhaps *dozens* of di

Print to Windows default Printer

2005-01-18 Thread Samantha
I am new to Python and I am having considerable trouble trying to print (using a simple script) to the default printer rather than the screen. Thanks for any help. S -- http://mail.python.org/mailman/listinfo/python-list