win32com is a Python module to interact with windows COM components.
0
votes
1answer
27 views
Win32com python : impossible to access a chart on excel
I need to change the formula of a chart in excel using python,
to find out how to do it I recorded a macro and this is what I got :
ActiveSheet.ChartObjects("Graphique 1").Activate
...
0
votes
1answer
33 views
python win32com : Change Excel formula witout inputing value yourself
Is there a way to change a formula without inputing the new value yourself?
Example:
Données!$EX$68:$IN$68
should become
Données!$EY$68:$IN$68
I don't want to calculate myself EY comes after ...
0
votes
1answer
44 views
Python Excel Chart Type pywintypes.com_error
The following snippet of my code works fine. It creates a chart and sets it type to xlLine
chart = ws.Shapes.AddChart().Select()
xl.ActiveChart.ChartType = win32com.client.constants.xlLine
...
0
votes
1answer
43 views
Adding an Excel Textbox with win32com
I am trying to add an Excel Textbox to a worksheet... the typical shortcut I use in the Excel GUI is Alt+N X and then click where I want the Textbox; however, I don't have access to the COM browser, ...
0
votes
0answers
20 views
Wrap a python class with IDispatch
I want to use python to handle events from a COM server component. This server has a register() method which receive an IDispatch object and invokes OnXXX methods on it when various events are ...
0
votes
2answers
39 views
Reading Table Contet In Header And Footer In MS-Word File Using Python
This is my extended question for the question:
Reading Table Contetnts In MS-Word File Using Python
The solution provided by @YusuMishi is great, but it does not catch the headers in the header and ...
0
votes
1answer
31 views
Vba Sort.SetRange to python win32com (Excel)
I'd like to translate this macro to python 2.7,
Sheets("Données CENTRE").Select
Columns("A:G").Select
Application.CutCopyMode = False
ActiveWorkbook.Worksheets("Données ...
0
votes
1answer
41 views
Invoke a python script when an outlook email is received?
My requirement is to invoke a python script as soon as a particular email is sent to a specific address in outlook. I am using win32com outlook client in my script.
I am thinking of running the ...
2
votes
2answers
171 views
Memory Leak in Threaded COM Object with Python
I am creating a COM client within a thread and performing several operations with this client. Each thread is spawned from a server that uses Python's socketserver module which has built-in threading ...
0
votes
0answers
11 views
create pyExcelerator workbook and open it woth win32com.client to add charts?
I want to create pyExcelerator workbook and open it with win32com.client to add charts?
If anyone have another idea to all that then please help me.
Thanks in advance.
-2
votes
1answer
38 views
GetErrorInfo returns S_FALSE in WIN32 API
I am devloping on win32 console application in which some comm componant are used.But for little test i check out the function GetErrorInfo before any impementation.I found that i will return me ...
3
votes
1answer
45 views
Python and win32com.client seem to be missing methods, in particular SetSourceData
I'm working on using Python to automate some Excel data analysis. I have most of the basics down, but I can't seem to find any way to call SetSourceData or SeriesCollection successfully. I've read ...
1
vote
0answers
57 views
How to copy a whole paragraph from a MS Word document to another using Python
I'm meeting some problem : I wanna loop through all paragraphs in a MS word document and if there is some specific text in the paragraph, I want to copy the paragraph to another 'MS Word' file.
...
0
votes
1answer
49 views
Word : Deleting Lines in between a Table and a Heading using Python
I have a scenario in which there is a Heading/Constant Text like "Call Tree:" present all over the Word document and after that there are some lines, and once the line are over, there is a Table. So I ...
0
votes
1answer
45 views
Is there anyway to know what object does the file have in MS powerpoint or word
I use win32com to handle office document in Python.
There is no way to know what method does an Object have in win32com.
(In general, we can fetch properties or methods by DIR(OBJ) in Python )
So, if ...
0
votes
1answer
156 views
Python win32com.client.Dispatch looping through Word documents and export to PDF; fails when next loop occurs
Based on the script here: .doc to pdf using python I've got a semi-working script to export .docx files to pdf from C:\Export_to_pdf into a new folder.
The problem is that it gets through the first ...
0
votes
1answer
103 views
Selecting and deleting a Line Present in a Word Document Using Python / Win32
I'm trying to automate Word(2010) documents (all most 40-50 docs) using python and win32 component. Specifically in that, need to select a part of line and replace it all together with some content. ...
0
votes
1answer
69 views
Python : Win32 : Get the header Information in Word Document
I'm trying to automate Microsoft office word 2010 document using Python with win32 component. Over there I need to read and get the Header information of a WORD document. I had a look at MSDN library ...
1
vote
2answers
163 views
Python - Unable to Edit Table Contents in Microsoft Word using win32com
I'm trying to update a microsoft word - 2010 table by deleting its contents (except the first row contents) using python and win32com client component. I even looked at the MSDN library ...
0
votes
0answers
25 views
How emulate termial iteraction like putty using pySerial
I tried to use pySerial to build a simple terminal to interact COM1 in my PC,
I create 2 threads , one is for READ , the other is for Write
however,
def write_comport():
global ser,cmd, ...
0
votes
0answers
26 views
The method delete() missed after import MSO,MSPPT for MS Powerpoint in Python3
The methode disappeared after import
import win32com.gen_py.MSO as MSO # contains constants refering to Microsoft Office Objects
import win32com.gen_py.MSPPT as MSPPT # contains constants refering ...
0
votes
0answers
46 views
Python: how to improve win32 excel interface overriding methods?
I'm using win32com interface to access excel files. My idea is to improve some excel function to avoid boring code. As example I would write
val = sheet.Range(coord).Value
where coord may be one ...
0
votes
1answer
86 views
Access data in Excel - Reuter from python
I'm using Reuters integrated in Excel to retrieve market data. For task automation , I currently use VBA but now I want to switch to python. The package pyxll does not help much because the principle ...
1
vote
1answer
59 views
Error while getting details of the particular system through python script
I am using a script for getting system details. its all working fine in almost 1000 systems, but in one system its getting the below error.
File "SystemDetails.py", line 36, in __init__
File ...
0
votes
0answers
37 views
Python win32com : Range over masked sheet
is there a way to call the Range method over a masked sheet?
Right now I made this code :
def __determine_last_line(sheet_name, start_column, wb):
ws = wb.Sheets(sheet_name)
was_not_visible = ...
0
votes
1answer
218 views
Python, Excel, and Charts using win32com
Python and MS Excel question - using win32com, I'm able to create a chart within Excel but i'm unable to move it within a worksheet. I've found code online to generate the chart:
import ...
2
votes
1answer
80 views
In OnNotify what is the difference between returning TRUE or setting *pResult = TRUE
Given a notification handler
BOOL CMyWindow::OnNotify(WPARAM wParam, LPARAM lParam, LRESULT* pResult)
{
.......
If I process a particular notification. Should I return TRUE or set *pResult = ...
0
votes
1answer
51 views
How to get the zero based indexes all sub-menus in a CMenu object
I have a CMenu instance. I would like to dynamically traverse all menu and sub-menu items in the menu.
The API for getting a sub-menu is called CMenu::GetSubMenu. Its lone parameter is the sub-menu's ...
1
vote
1answer
71 views
Check in Python if Windows registry key already exists
Got the following code:
aReg = ConnectRegistry(None,HKEY_CURRENT_USER)
aKey = OpenKey(aReg, r"SOFTWARE\Microsoft\Windows\CurrentVersion\Run", 0, KEY_WRITE)
try:
...
3
votes
2answers
139 views
Python Create Access database using win32com
I want to create an Access database (*.accdb) from within a Python script.
Using win32com and Dispatch I can call the application. However, I cant find anything on how to create a new database.
...
0
votes
0answers
110 views
Python reload webpage
In Python 3.3, I'm running:
import win32com.client, pythoncom
from time import sleep
ie=win32com.client.Dispatch('internetexplorer.application')
ie.Visible=1
ie.Navigate('URL')
sleep(5)
...
0
votes
1answer
101 views
Python PowerPoint SaveAs Task Scheduler
I have automated the creation of a PowerPoint slide-deck via Python and have set-up a trigger in Task Scheduler for a daily report to be generated.
This is all fine while my computer is logged in, ...
0
votes
0answers
75 views
Python win32com outlook attach file with “insert as text” method
I am trying to send a HTML webpage via outlook with python win32com.
However, I don't know how to config the add attachment call to do "insert as text" method.
Does anyone know how to do that?
...
1
vote
2answers
65 views
How to create a url shortcut by python [closed]
I want to create a shortcut by python pywin32, but the code doesnot work.
the following is my code , I donnot know why i cannot create a shortcut by it !
Please help me check it, thanks for your ...
0
votes
1answer
75 views
Python and pure virtual function error
I wrote a GA with Python and PyEvolve. In this I used win32com.client to call a COM Library from another program ("Gsa.ComAuto" a program for structural engineering). For a number of generations the ...
0
votes
0answers
111 views
pandas dataframe to excel with win32 : numpy datatype error
I am trying to export a pandas dataframe to excel using win32.
The export seems to work only when the dataframe does not include numpy datatypes.
How can I convert numpy datatypes to their COM ...
0
votes
3answers
480 views
Error with win32com.dll in Eclipse
I am getting an error in eclipse with regards to my win32com.dll file. From the error it would appear I am trying to use a 32-bit .dll instead of a 64-bit, but unfortunately I haven't been able to ...
0
votes
0answers
80 views
Excel manipulation with python, no autocomplete in pydev and dir() is incomplete
I tried this :
from win32com.client.gencache import EnsureDispach
exc = EnsureDispatch("Excel.Application")
wb = exc.Workbooks.Open(r"C:\testBook.xlsx")
ws = wb.Sheets('Sheet1')
ws.Cells(1,1).Value = ...
0
votes
1answer
105 views
Erasing only a part of an excel with win32com and python
I have 3 parameters.
startLine, starColumn and width (here 2,8,3)
How can I erase the selected area without writing blanks in each cells?
(here there is only 30 line but there could potetialy be ...
0
votes
0answers
81 views
Is it possible to use win32com to copy a range in excel and then write that range to a text file and save it?
I have looked all over the web and have not seen this specific question asked, and now I am wondering if it is even possible. I can access excel and copy the range I want but I don't know if it is ...
0
votes
1answer
69 views
Communication between two different versions of python
I am using python 3.2 to build my windows application in which a DLL has to be created in addition to my application exe.
I googled and got py2exe can create a DLL from python script but supports ...
1
vote
0answers
63 views
Python/win32com - Check if Program is Open
I have a script where I use win32com to interact with a COM service. It works as intended when the program is already open. I connect to it using win32com.client.dynamic.Dispatch, then interact with ...
0
votes
0answers
57 views
Editing Word with Python errors if Word file name has spaces
def search_replace_all(newword, find_str, replace_str):
wdFindContinue = 1
wdReplaceAll = 2
app = win32com.client.Dispatch("Word.Application")
app.Visible = 0
app.DisplayAlerts = 0
...
0
votes
0answers
49 views
Tracking IOleInPlaceActiveObject Focus
I wish to host IE/mshtml in my app and I want to forward keyboard accelerators to my own implementation when the IE window has focus. I doubt this is an uncommon use case but I'm struggling to find ...
0
votes
1answer
85 views
win32com.client error
When using win32com, something puzzled my.
>>> import win32com
>>> w=win32com.client.Dispatch('Word.Application')
Traceback (most recent call last):
File "<pyshell#1>", ...
0
votes
0answers
192 views
python win32com.client.DispatchWithEvents does not catch all events
the following code is running on python2.7:
import win32com.client
import pythoncom
import IntelliCAD
import Tkinter
icad_CLSID = '{77E49E57-976B-11CF-8CCB-00A0245B09EB}'
icad_ProgID = ...
0
votes
1answer
63 views
How to F9 Excel book using Python?
I tried to adapt VBA examples from How do you get Excel to refresh data on sheet from within VBA?, they do not work: sheet.Calculate does nothing, other versions of calculate cannot be found...
0
votes
1answer
277 views
How to call Excel VBA functions and subs using Python win32com?
My Excel workbook contains VBA subs and macros similar to those below; they sit in Module1.
How to call them using Python win32com module?
Public Sub setA1(ByVal s As String)
...
2
votes
1answer
216 views
How can I get the text by color from a word document with win32com?
I have a word document with several tables. In each table there are two colors, black and red.
I'd like to get the text from cells in a word document table by its color. I found a way, but I think ...
0
votes
0answers
40 views
Passing IUnknown via ctypes
I am trying to pass an IUnknown pointer returned from win32com.server.util.wrap to a ctypes load DLL function. What is the correct argtypes description for it?
I have tried c_void_p but get an error ...

