0
votes
3answers
303 views
getting pywin32 to work inside open office 2.4 built in python 2.3 interpreter
I need to update data to a mssql 2005 database so I have decided to use adodbapi, which is supposed to come built into the standard installation of python 2.1.1 and greater.
It ne …
0
votes
3answers
30 views
On Windows in python, possibly using the Outlook API, how can I get the full name of a user from their smaller login name?
At work, we have short login names, e.g. hastingsg, but Outlook and I believe other parts of the Windows system also have access to a longer name, e.g. Jeff Hastings.
In cpython ( …
0
votes
1answer
19 views
Updating MS Word (or Open Office) bookmarks with Python
I'd like to fill MSWord bookmarks from a python script.
I can't find such functions in win32com(MSWord) or in PyUno(OpenOffice).
Does anyone know how to use bookmarks from Python? …
1
vote
1answer
74 views
[Python] Best way to extract .ico from .exe and paint with PyQt?
Hello,
I am looking for a way to extract an icon from a .exe file using Python. I know that you can use win32gui's ExtractIconEx function to grab the icon of a .exe but this retur …
2
votes
3answers
123 views
Detecting symlinks (mklink) on Vista/7 in Python without Pywin32
Currently the buildout recipe collective.recipe.omelette uses junction.exe on all versions of Windows to create symlinks. However junction.exe does not come with Windows by default …
1
vote
4answers
69 views
python win32 extensions documentation
I'm new to both python and the python win32 extensions available at http://python.net/crew/skippy/win32/ but I can't find any documentation online or in the installation directorie …
0
votes
0answers
74 views
Windows impersonation for WMI calls via python?
I'm using PyWin32 to make WMI calls to the system in python from my django web application. My goal is to allow users to add printers to the system via a web interface. To do this, …
0
votes
1answer
52 views
GetForegroundWindow returns Null when remote desktop is disconnected
I have a test that launches an app and verifies it has launched through calls to GetForegroundWindow(). The test is run on a remote machine that we usually access through remote de …
4
votes
4answers
135 views
Symlinks on windows?
Does anyone know of a way to make/read symbolic links across versions of win32 from Python? Ideally there should be a minimum amount of platform specific code, as I need my app to …
2
votes
1answer
94 views
Problem with loading win32file.pyd on python 2.6
I can't make py2exe to pack correctly even a simple script that uses win32file
I'm constantly getting the following error message:
Traceback (most recent call last):
File "depen …
3
votes
2answers
113 views
Python change screen resolution virtual machine
In virtualbox, the screen resolution can be anything - even something strange like 993x451, etc. I tried changing it using pywin32 but I failed::
>>> dm = win32api.EnumDi …
2
votes
2answers
177 views
Is there any preferable way to get user/group information from an Active Directory domain in Python?
For a Django application that I'm working on, I wanted to allow group membership to be determined by Active Directory group. After a while of digging through the pywin32 documenta …
0
votes
1answer
40 views
CheckedListBox used from Python(pywin32)
Does anyone know how to get the list of items and check/uncheck items in a CheckedListBox from python?
I've found this to help me partly on the way. I think I've found the handle f …
0
votes
1answer
58 views
Python / ADOX: ‘The specified module could not be found.’ (win32 extensions)
I'm running pywin32 for python 2.5.
I'm following the instructions for python ADO given at http://www.ecp.cc/pyado.html.
Creating an ADODB.Recordset object works fine. But when …
6
votes
2answers
460 views
How can I determine the display idle time from Python in Windows, Linux, and MacOS?
I would like to know how long it's been since the user last hit a key or moved the mouse - not just in my application, but on the whole "computer" (i.e. display), in order to guess …
