Tagged Questions
5
votes
1answer
55 views
“Not implemented” Exception when using pywin32 to control Adobe Acrobat
I have written a script in python using pywin32 to save pdf files to text, up until very recently it has worked fine. I use similar methods to control Excel. The code is below:
def __pdf2Txt(self, ...
2
votes
2answers
62 views
Printing Excel sheets with COM interface
I've programatically made a bunch of Excel sheets with xlwt in python. It's all gone fine, but now I need to convert them all to pdf. I've been trying to do this with pywin32 and the com interface. I ...
2
votes
1answer
106 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 ...
1
vote
1answer
40 views
Win32Com connection failure to Autocad via Python
I need to connect and control Autocad via Com interface. For this purpose, i use Python. In my first trial with a very basic snippet, i got an error. The code is
import win32com.client
acad = ...
0
votes
1answer
34 views
How to emulate press and hold with pywin32
I am trying to write a python script to send a press and hold key signal. Right now all I have managed to do is the following:
import win32com.client
shell = win32com.client.Dispatch("Wscript.Shell")
...
0
votes
0answers
60 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
2answers
173 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
206 views
Not getting all InfoMessage Events with Python and win32com
I am currently trying to get the percentage complete messages that are returned by the InfoMessage event from ADO (and a SQL server) when running the BACKUP command. (See my previous question for more ...
0
votes
0answers
91 views
How to add Content Menu item when no file object is selection in file explorer
I have done some basic code when i am trying to extent the shell content menu under windows file explorer by python and pywin32. Now via IShellExtInit and IContextMenu, i can get the opportunity to ...
0
votes
1answer
278 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?