Forum: Python Jul 4th, 2006 |
| Replies: 1 Views: 3,376 :?: I am using Python IDLE 2.4.3 on Windows XP. I use File->New Window to create a new program. In the Save As dialog, it always takes me to the python program directory (where python is installed).... |
Forum: Python Jul 3rd, 2006 |
| Replies: 2 Views: 3,646 I ran the following program to retrieve entries from the windows registry on Windows XP:
import win32api, win32con
aReg = win32api.RegConnectRegistry(None, win32con.HKEY_CURRENT_USER)
aKey... |