Tagged Questions
The win32com tag has no wiki summary.
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
509 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
3answers
103 views
How to provide image data for embedded web control in C++
In my C++ app I'm embedding (via COM) a web browser (Internet Explorer) control (CLSID_WebBrowser).
I can display my own html in that control by using IHTMLDocument2::write() method but if the html ...
4
votes
1answer
163 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
287 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
851 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
793 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
47 views
How to detect Windows is locked?
How to detect Windows is locked (Win+L or locked by screensaver)? Is it possible?
2
votes
1answer
46 views
How to use win32com module in Jython
I have some codes of python that convers word file to html file, it uses win32com module, like this
from win32com import client as wc
I hoped to invoke python program in java codes, so I used ...
2
votes
1answer
93 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
206 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
568 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
363 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
196 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
1answer
98 views
How to get the Last Active Date of a Process?
I have an assignment were in I have to print the last active date of the process using a COM In Proc Server in C++. I tried doing that with getProcessTimes() function, but that gives me an access ...
2
votes
2answers
918 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
859 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
15 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
1answer
78 views
How can I use automation to right-click with a mouse in Windows 7?
I've spent a while getting my mouse to be able to right-click in Windows XP. Here's the code:
public class Mouse
{
[DllImport("user32.dll", SetLastError = true)]
internal static extern uint ...
1
vote
0answers
23 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
132 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
111 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
208 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
235 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
495 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
249 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
240 views
Win32 PrintDlg, PrintDlgEx, Crashing and quirkiness
I'm tasked with solving the following issue: My application crashes when running on a 64 bit machine when the PrintDlg() function is called.
After digging and hair pulling, I've decided the best ...
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
349 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
164 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
175 views
Fragility of using Excel Object Library in Visual Basic
A bit of preface: this project, while technically homework, is completely under my 5-man team's control. We came up with the project, defined the scope, and exercise full creative control. So it's not ...
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
339 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
614 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
176 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
550 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
11 views
how to get attributes from win32com.client.dispatch(“Shell.Application”)
I am trying to control my device manager programmatic through python (ie disable and re-enabling devices). However I am having trouble figuring out what are the attributes in the namespace of the ...
0
votes
0answers
24 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
54 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
2answers
75 views
Would it be technically difficult to recreate windows for workgroup clipboard on windows 7 with c#?
In the old days of windows workgroup 3.11 there was the possibility to copy and paste on the network.
This feature has been removed which is weird today as we are in sharing information era !
So ...
0
votes
1answer
51 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
45 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
65 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
78 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 ...