Re: print some text

2008-04-27 Thread Bjoern Schliessmann
barronmo wrote: > I haven't found a way from within python to print f. I'm sure > there it is something simple but I've been searching for a couple > weeks now with no luck. Tried some searching? http://wiki.wxpython.org/Printing HTH&Regards, Björn -- BOFH excuse #374: It's the InterNIC's

Re: print some text

2008-04-27 Thread barronmo
On Apr 25, 2:44 pm, "Gabriel Ibanez" <[EMAIL PROTECTED]> wrote: > Hi ! > > Other idea (old style school): > > def printing(): >f=open("lpt1", "w") >f.write("\nSomething to print\f") >f.close() > > Cheers.. > > - Ibanez - > I haven't found a way from within python to print f. I'm sure

Re: print some text

2008-04-25 Thread Gabriel Ibanez
Hi ! Other idea (old style school): def printing(): f=open("lpt1", "w") f.write("\nSomething to print\f") f.close() Cheers.. - Ibanez - - Original Message - From: <[EMAIL PROTECTED]> Newsgroups: comp.lang.python To: Sent: Wednesday, April

Re: print some text

2008-04-23 Thread castironpi
On Apr 23, 2:05 pm, barronmo <[EMAIL PROTECTED]> wrote: > I'm a beginner searching for an easy way to print the contents of a > text control.  So far I've come up with the following(difficulties): > > 1) using wxPython >      -convert to HTML and then print (I don't know anything about > HTML) >