Tagged Questions

4
votes
2answers
848 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
911 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
233 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
43 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
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 ...
0
votes
2answers
154 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
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
605 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
73 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
0answers
78 views

Timeout/exception when accesing iTunes COM interface on Windows as admin

I'm trying to write an iTunes script for Samurize (the bundled media DLL doesn't grab album art), and running into all sorts of errors. I tried (Active)Python first and then JScript, and the error is ...
0
votes
1answer
98 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
63 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
455 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
195 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
259 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
196 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 ...