[python-win32] ANN: PyGUI 2.5.1

2011-06-18 Thread Gregory Ewing
PyGUI 2.5.1 is available: http://www.cosc.canterbury.ac.nz/greg.ewing/python_gui/ Minor update to fix missing distutils_extensions.py file. What is PyGUI? -- PyGUI is a cross-platform GUI toolkit designed to be lightweight and have a highly Pythonic API. -- Gregory Ewing

Re: [python-win32] Access Most Recently Used (MRU) entries ?

2011-06-18 Thread reckoner
On 17/06/2011 14:19, reckoner wrote: Depends what you need to do. To add in item, use the SHAddToRecentDocs API from the shell module: code import sys from win32com.shell import shell, shellcon shell.SHAddToRecentDocs ( shellcon.SHARD_PATHW, sys.executable ) /code To access its