Re: Graphviz Python Binding for Python 2.5 on Windows?

2007-03-06 Thread Ian Parker
In message <[EMAIL PROTECTED]>, Alex Li <[EMAIL PROTECTED]> writes >Thanks Michel, I will give it a try. > >Alex > > > You could simply generate the .dot files from python and do os.startfile on the dot file (which is what I do because it is remarkably easy!) R

Re: User defined functions through Automation in Excel 2003

2006-09-17 Thread Ian Parker
tbl? Thanks again for your thought. > >-Jesse > Darn, I was interested in seeing an answer for this, although dismally unable to contribute myself. Did I miss the responses? Regards Ian -- Ian Parker -- http://mail.python.org/mailman/listinfo/python-list

Re: Python proficiency test

2006-07-23 Thread Ian Parker
e, I wanted to see a sample test (for any subject) but couldn't do that without a long-winded registration procedure. Regards Ian -- Ian Parker -- http://mail.python.org/mailman/listinfo/python-list

Re: os listdir access denied when run as a service

2006-05-26 Thread Ian Parker
return (1,filelist) > >anything I can do about this.. > > >- >Thomas Thomas > This may be relevant. IIRC, when you run a service under the system account it doesn't have network access. You need to run it under an account that does have access to the drive. Regards Ian -- Ian Parker -- http://mail.python.org/mailman/listinfo/python-list

Re: How I learned Tkinter

2006-04-23 Thread Ian Parker
;Peter > Recently I decided to use tkinter because it was included with Python and like you I suffered through a few weeks of puzzling out tkinter. I wish I'd read your notes before I started! Regards Ian -- Ian Parker -- http://mail.python.org/mailman/listinfo/python-list

Re: python interpreter widget for Tkinter?

2006-04-10 Thread Ian Parker
er app for >debugging purposes. I would assume that this would be possible using >idlelib, but i can't figure out how. Does anyone know how to do this? > >thx for any help >alex > Google for "tkinter console.py" - that did the job for me Regards Ian -- Ian Parker -- http://mail.python.org/mailman/listinfo/python-list

Re: What's The Best Editor for python

2006-03-24 Thread Ian Parker
version). You can include a "wordfile" to get Python syntax recognition. Tools are user configurable globally or by project - my first three global tools are Check (with pychecker), Test and Run Regards Ian -- Ian Parker -- http://mail.python.org/mailman/listinfo/python-list

Re: New python.org website

2006-03-06 Thread Ian Parker
Python In the logo but that's perhaps not obvious 2) I think the logo is a little faint, washed-out. I'd prefer something more dynamic, or at least brighter. (I suppose this shows how superficial my checking was!) Regards Ian -- Ian Parker -- http://mail.python.org/mailman/listinfo/python-list

Re: show in GUI stdout of a command

2005-12-25 Thread Ian Parker
hon/Console.py I find it a few days ago when I was hunting for a way to "print" to the tkinter window rather than stdout. Regards -- Ian Parker -- http://mail.python.org/mailman/listinfo/python-list

Re: Question of speed - Flat file DBMS

2005-03-06 Thread Ian Parker
entire indices in memory. Create an index for any field you'll be querying on to avoid having to read the entire record. If you're dealing with massive data, think about indices of indices. Work on the data, or at least the indices. in memory. Well, that's everything I ever