Tagged Questions
6
votes
3answers
5k views
Asynchronous data through Bloomberg's new data API (COM v3) with Python?
Does anyone know how to get asynchronous data through Bloomberg's new data API (COM v3) with Python? I found this code below on wilmott.com and it works just fine, but it's for the old API version.
...
5
votes
1answer
508 views
How do I search & replace all occurrences of a string in a ms word doc with python?
I am pretty stumped at the moment. Based on http://stackoverflow.com/questions/1045628/can-i-use-win32-com-to-replace-text-inside-a-word-document I was able to code a simple template system that ...
4
votes
1answer
158 views
Python, Pyinstaller creating shortcuts in windows
I am making a python script that creates a shortcut (.lnk) file, using win32com.client module, I am using pyinstaller to convert it to exe. I'm also using Tkinter, so I need --tk support in ...
4
votes
1answer
284 views
'proper' & reliable way to get all installed windows programs in Python?
I've seen numerous ways of retrieving installed programs on WinXP+ in python. What is the proper and most robust way of doing this?
Currently I'm accessing ...
4
votes
1answer
3k views
How to use python win32com to save as excel file
I have a small python code to open an Excel file. Now I want to "Save As" with a different name but same format.
How do I do that.. Any help will be great.
FK
4
votes
2answers
846 views
How can I use Microsoft Word's spelling/grammar checker programmatically?
I want to process a medium to large number of text snippets using a spelling/grammar checker to get a rough approximation and ranking of their "quality." Speed is not really of concern either, so I ...
3
votes
1answer
209 views
Setting a property using win32com
I'm trying to create a bunch of Outlook rules automatically. I'm using Python 2.7, win32com, and Outlook 2007. To do this I must create a new Rule object and specify a folder for its move action. ...
3
votes
2answers
786 views
Python WMI calls not working under Windows 7
I've run into a sticky problem using WMI (via win32com) in Python under Windows 7. I haven't been able to find a resolution for this.
Here is my code:
from win32com.client import GetObject
def ...
3
votes
2answers
516 views
py2exe and win32com
Can py2exe create standalone executables even ones requiring the win32com package?
I've googled / searched SO to no avail.
2
votes
1answer
92 views
How do you debug win32 com integration from Python?
I'm trying to call the text to speech API from Python using win32com.client. The Python interpreter is bundled with Splunk and I'm able to invoke it manually using "splunk cmd python".
Here's a ...
2
votes
4answers
203 views
Python Win32, how to save an XLS as a CSV?
I'm loading up a .xlsx with win32com and would like to save the results as a csv when I'm done.
myworkbook.SaveAs('results.csv')
gives me an xlsx file with a csv extension. How do I save as an ...
2
votes
1answer
562 views
Excel win32com programming with Python. Passing Parameters to function
I suspect there is an easy answer for this question but I can't find it anywhere! I am writing a function to plot a lot of data in excel and I am controlling the plotting with Python. I have ...
2
votes
1answer
362 views
Python x64 bit on Windows x64 copy file performance evaluation / problem
when programming a kind of backup application, I did an evaluation of file copying performance on Windows.
I have several questions and I wonder about your opinions.
Thank you!
Lucas.
Questions:
...
2
votes
2answers
194 views
Why are some callable attributes not listed by the dir() function?
How come the dir() function in Python doesn't show all of the callable attributes?
import win32com.client
iTunes = win32com.client.gencache.EnsureDispatch("iTunes.Application")
currentTrack = ...
2
votes
2answers
909 views
Accessing unregistered COM objects from pythonvia a registered TLB
I have three pieces of code that i'm working with at the moment:
A closed source application (Main.exe)
A closed source VB COM object implemented as a dll (comobj.dll)
Code that I am developing in ...
2
votes
3answers
856 views
py2exe/pyinstaller and DispatchWithEvents
I have a program that uses the win32com library to control iTunes, but have been having some issues getting it to compile into an executable. The problem seems to revolve around using ...
2
votes
1answer
406 views
Python: error while checking IE state
Please, help me with Python 2.6 and win32com.
I'm a newbie to Python and I got error
when I start the next program:
import pywintypes
from win32com.client import Dispatch
from time import sleep
ie ...
1
vote
0answers
13 views
added typelib via makepy for AutoCAD, now win32com not working for AutoCAD
I have been running win32com to access AutoCAD for quite some time without issue. I learned that applying the makepy utility could create a more user friendly experience at the interactive prompt, so ...
1
vote
0answers
22 views
How to Get gencache.EnsureDispatch Name
How do you get the name of a win32com.client.gencache.EnsureDispath name?
For example, I have an application named "xxxxx", and the Python object browser detects it when I use makepy.py. How do I ...
1
vote
1answer
130 views
How to read the displayed value of a spreadsheet cell, not the formula?
I have a program that reads the value of a cell in a spreadsheet (via COM) by accessing its 'Text' member. When I was using Excel 2003, my program correctly returned the displayed value of the cell. ...
1
vote
2answers
108 views
Python Printing from python32
I can't get Python to print a word doc. What I am trying to do is to open the Word document, print it and close it. I can open Word and the Word document:
import win32com.client
msword = ...
1
vote
1answer
206 views
Why is the information for pywintypes.com_error unreadable?
Under Python 2.7.2 with pywin32-216.win32-py2.7 installed, when I use win32com module to process Excel on windows as follows:
>>> import win32com.client
>>> xlsApp = ...
1
vote
1answer
231 views
Calling Excel macros/Excel Solver from Python over com
I have a macro inside a 2007 xlsm file that, when called, creates a solver configuration (target, constraints, ...) and performs the solve without any user interaction. When run manually from excel ...
1
vote
1answer
484 views
Error “The object invoked has disconnected from its clients” - automate IE 8 with python and win32com
I would like to automate Interent Explorer 8 (using python 2.7 on Windows 7) machine. Here is my code after a post found on SO:
import sys, time
from win32com.client import WithEvents, Dispatch
...
1
vote
3answers
248 views
Python: How to search all file types for a text string
I'm trying to write a program which will be able to search all files (both the file names and their contents) in a user-specified directory for a particular string, and then move these files to a new ...
1
vote
1answer
83 views
How do I run excel using all the default add-ins from Python win32com
import win32com
import win32com.client as win32
xl = win32.gencache.EnsureDisplatch('Excel.Application')
This fires up Excel, but for whatever reason none of the plugins load.
If Excel was already ...
1
vote
1answer
344 views
Getting SQL Server messages using ADO and win32com
I am currently trying to write a tool that will make it very easy for a non-computer literate user to backup a SQL Server database.
To do this I am hoping to use an interesting mix of ADO, win32com ...
1
vote
0answers
163 views
Python script(win32com, excel) crashes when I edit another open workbook. Is this the expected behavior, can I prevent this?
The error looks like this:
File "C:\Python27\lib\site-packages\win32com\client\__init__.py", line 471, i
__setattr__
self._oleobj_.Invoke(*(args + (value,) + defArgs))
pywintypes.com_error: ...
1
vote
0answers
336 views
Python win32com - application installed with both 32bit and 64bit versions
I am using pythons win32com module to automate Adobe Photoshop. This works fine on some machines (have had issues with it not working on users with limited windows account permissions, but thats ...
1
vote
1answer
1k views
Python win32com - Automating Word - How to replace text in a text box?
I'm trying to automate word to replace text in a word document using Python. (I'm on word 2003 if that matters and Python 2.4)
The first part of my replace method below works on everything except ...
1
vote
0answers
612 views
Python win32com opening Excel with Bloomberg plugin
I'm trying to automate construction of an Excel 2007 spreadsheet that uses the Bloomberg plugin to pull down live prices. The problem is that when I open Excel through win32com the Bloomberg plugin ...
1
vote
0answers
175 views
RegFree DLL with CPython using win32com module
I am currently using the win32com module of CPython to use a DLL.
I know some people using IronPython to automagically get the list of functions provided by this DLL. They don't need to register the ...
1
vote
1answer
166 views
Using win32com and/or active_directory, how can I change the conversation of a MailItem?
In Python w/ Outlook 2007, using win32com and/or Active Directory, how can I change the conversation of an email? Is there a way to change the mapping of a ConversationIndex to a ConversationTopic?
...
1
vote
2answers
545 views
How to mimic vb's control array in python for win32com?
I need to dynamically create com objects from an activex dll and each of the objects can raise events which should be handled with event handlers.
I can do this easily with win32com.client.Dispatch ...
0
votes
0answers
20 views
How can I solve this Python comtypes DLL error?
I have two DLLs. One is a much smaller library than the other. I need to access both these two from Python.
I found this code snippet here detailing how I can create the object from the dll.
import ...
0
votes
0answers
50 views
Python Win32 and VBA - Pasting Values from one workbook to another
I'm working on a project that utilizes Python to Automate the running of an Excel Macro and then with the help of Win32, copying and pasting the formatted values into a single destination Workbook. ...
0
votes
1answer
49 views
Python While Not recordset.EOF that wont .MoveNext
I don't really understand why this is happening. Maybe a fresh set of eyes could help.
in the table of an access database, say C:\dbase.mdb, I have a table called tProcedureGroups with two fields, ...
0
votes
0answers
44 views
win32com help translating VBA to python
I am doing a lot of work with excel and would like to automate some of the more repetitive
process. My problem is I can't quite figure out how to translate VBA (from macro's) over to python. I ...
0
votes
1answer
62 views
run an Excel Macro from Python (but an Excel process stays in memory)
with the following python method, I make a call to an Excel macro. I was happy when I got that to work, however I was wondering everytime I was executing this I could see a Windows temporary/lock file ...
0
votes
1answer
74 views
win32print and multiple printers
I should print a local pdf file, if printer_name is defined (a normal string) the program should send the document to a specific printer otherwise it should use the default printer.
This code works ...
0
votes
0answers
43 views
Loading in add-ins when opening excel from win32com
When trying to open up an excel file using python win32com, the excel instance does not load in any add-in. I looked at How do I run excel using all the default add-ins from Python win32com but it ...
0
votes
1answer
91 views
Set focus to window based on ID using win32com.client's AppActivate
I've tried the following, but focus isn't returned to the program that had focus when the script was run:
import win32com.client
import win32gui
current = win32gui.GetForegroundWindow()
shell = ...
0
votes
0answers
53 views
win32com.client plot existing data from workbook
I am trying to use win32com to automate some repetitive charting I need to do.
I have learned the basic calls to interact with Excel but I am running into a problem finding anything that will help me ...
0
votes
1answer
61 views
Py2Exe Error: Win32com.client causes errors when trying to run created executable
My script that I'm trying to create into an executable contains the following imports:
import csv, time, BeautifulSoup, sys, mechanize, os, traceback, win32com.client as win32
My setup.py looks ...
0
votes
0answers
45 views
OpenXML AutoFill (like the Excel Event)
I need the following spreadsheet editing capabilities in order of importance:
Autofill user defined formulas
client-side doesn't install anything (such as win32com, python
interpreter..)
basic read ...
0
votes
2answers
82 views
Is there any document for the Python win32com operations on Powerpoint?
I have gat some samples about how to open a presentation and access the slides and shapes. But I want to do some more other operations(e.g. generate a thumbnail from a specified slide). What methods ...
0
votes
0answers
35 views
Failing to generate a com_record from struct in typelib
I need to provide automatic manipulation of a com object via python. This have been working fine until I were supposed to use some functions that passed a struct around as argument.
I have an idl ...
0
votes
2answers
154 views
Python win32com - Read text in a text box to a cell?
I would like to read the text from a text box in an Excel File and save that value to a variable. The problem I am having is with the reading of the TextBox. I have tried several methods, this one ...
0
votes
1answer
94 views
How to change the color of single characters in a cell in excel with python win32com?
I have a question regarding the win32com bindings for excel. I set up early bindings and followed some examples from the "Python Programming on Win32" book from O'Reilly.
The following code works ...
0
votes
1answer
134 views
Taking full screen images with Python (Windows)
I've tried a number of things, but all I can get if I try to do an auto screen shot of a full size window is a black screen.
I've tried ImageGrab.grab(), and automated Prt Scr press and I've had no ...