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, ...
4
votes
2answers
881 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 ...
2
votes
2answers
1k 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 ...
1
vote
1answer
62 views
passing arguments to COM object in python
I am writing a python script to control a Com object. The official documentation is in C#, VB and C.
the documentation (in VB) is as follows:
Public Function GetDATA {
ByVal vecRecords() As ...
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 = ...
1
vote
1answer
264 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
2answers
44 views
Tracking COM object error in application
I was using an application and it was working perfect. After some months of not using it, I tried to run it and it doesn't work. It shows a message box saying that it cannot instance a COM object.
Do ...
1
vote
0answers
349 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 ...
0
votes
1answer
27 views
How to pass an argument using IShellLink::SetPath function
I am using this win32 based C program to change the target of a shortcut from
["C:\Program Files\YP\YPseries\Bin\myexe.exe"] to
["C:\Program Files\YP\YPseries\Bin\myexe.exe" -Start UDCDevicePage]
...
0
votes
2answers
158 views
how not showing the popup message after ShowDeskBand?
My program looks like that:
ComPtr<ITrayDeskBand> spTrayDeskBand;
CoInitialize(NULL);
HRESULT hr = spTrayDeskBand.CoCreateInstance(CLSID_TrayDeskBand);
hr = ...
0
votes
0answers
39 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
740 views
python win32 COM closing excel workbook
I open several different workbooks (excel xlsx format) in COM, and mess with them. As the program progresses I wish to close one specific workbook but keep the rest open.
How do I close ONE workbook? ...
0
votes
0answers
76 views
Component creation fails under UAC admin, works without UAC elevation
I have a .NET COM dll with a custom registration procedure so it gets registered under HKEY_CURRENT_USER\Software\Classes as opposite to HKEY_LOCAL_MACHINE. So there are the following keys (current ...
0
votes
1answer
111 views
Python Visual Basic's CDate equivalent
I used to have this code in Visual Basic:
rpt.ParameterFields.GetItemByName("RowDate").AddCurrentValue CDate("2010-03-19")
and I cannot figure out into what I have to convert date to make eatable ...
0
votes
1answer
67 views
IExplorerBrowser control in python
I'm try to embed a IExplorerBrowser (Windows Explorer) in a wxpython application but I cannot seem to get the IExplorerBrowser module opened in python
I have the CLSID of IExplorerBrowser from the ...
0
votes
1answer
482 views
python win32com EXCEL data input error
Welcome,
I'm exporting results of my script into Excel spreadsheet. Everything works fine, I put big sets of data into SpreadSheet, but sometimes an error occurs:
File ...
0
votes
1answer
214 views
Working with multiple excel workbooks in python
Using win32com, I have two workbooks open.
How do you know which one is active?
How do you change which one is active?
How can you close one and not the other? (not Application.Quit())
0
votes
1answer
275 views
win32com equivalent of xlrd's sheet.ncols
xlrd makes it pretty easy to know what the last column is.
is there an easy way using win32com?
I have tried using ws.UsedRange.Rows.Count but this doesnt seem to give a correct answer.
0
votes
2answers
205 views
How to force Excel VBA to use updated COM server
I'm developing a COM server to be used from Excel VBA. When I update the server (edit code, unregister, re-register) Excel seems to carry on using the original version of the COM server, not the ...