Re: [Tutor] Printing txt files in landscape from python

2007-02-01 Thread Terry Carroll
On Thu, 1 Feb 2007, [ISO-8859-1] J?nos Juh?sz wrote: > do you have any idea, how I can send a txt file to the default printer in > landscape view with python on windows. > I wanted to set up just the char size and the orientation of the printout. I've gotten a crush on wxPython, now that it's ni

Re: [Tutor] Printing txt files in landscape from python

2007-02-01 Thread Tim Golden
> Hi All, > > do you have any idea, how I can send a txt file to the default printer in > landscape view with python on windows. > I wanted to set up just the char size and the orientation of the printout. > > thinking about > os.system('notepad.exe /pt "%%%s"' % filename) Doesn't complete

Re: [Tutor] Printing txt files in landscape from python

2007-02-01 Thread Christopher Arndt
János Juhász schrieb: > do you have any idea, how I can send a txt file to the default printer in > landscape view with python on windows. I assume that by "txt file", you mean a file containing ASCII text? > I wanted to set up just the char size and the orientation of the printout. Printers no

[Tutor] Printing txt files in landscape from python

2007-02-01 Thread János Juhász
Hi All, do you have any idea, how I can send a txt file to the default printer in landscape view with python on windows. I wanted to set up just the char size and the orientation of the printout. thinking about os.system('notepad.exe /pt "%%%s"' % filename) Yours sincerely, ___