Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

python integrated with activeX

import win32com.client

xlApp = win32com.client.Dispatch("Excel.Application")
xlApp.Visible=1

workBook = xlApp.Workbooks.Open(r"C:MyTest.xls")
print str(workBook.ActiveSheet.Cells(i,1))
workBook.ActiveSheet.Cells(1, 1).Value = "hello"                
workBook.Close(SaveChanges=0) 
xlApp.Quit()
Comment

PREVIOUS NEXT
Code Example
Python :: Qt convert image to base64 
Python :: How to count a consecutive series of positive or negative values in a column in python 
Python :: jama python rest api 
Python :: how to crack a 4 way handshake with python 
Python :: sum elements array with step numy 
Python :: add a third dimension matrix dataset python 
Python :: dinoscape für pc 
Python :: Print Odd Even Negative Integer Count 
Python :: how to change the type of a values in list from str to object python 
Python :: who is bayceee roblox id 
Python :: ec2 ssh terminal hangs after sometime 
Python :: fix certain parameters during curve fit python lambda 
Python :: return a tuple c++ python 3 
Python :: numpy bitwise_or multiple images 
Python :: pandas resample fill missing values 
Python :: example of a bad code 
Python :: fibonacci series python using function 
Python :: code.org void loops 
Python :: remove exponent pandas plot 
Python :: Django pull from Google Sheets 
Python :: how to read backslash slash python 
Python :: get decimal value of char python 
Python :: off to obj python 
Python :: How do I select certain columns for regression plots 
Python :: how to separate audio frequencies python 
Python :: # colab, display the DataFrame in table format 
Python :: for i in range(1, 11): print(i, end="") 
Python :: R[~i] in python 
Python :: Load None python values to Databricks SQL Table 
Python :: Using python permutations function on a list with extra function 
ADD CONTENT
Topic
Content
Source link
Name
7+2 =