Difference between revisions of "Using Excel with Python"
Jump to navigation
Jump to search
PeterHarding (talk | contribs) (Created page with "=Examples= <pre> >>> from win32com.client.dynamic import Dispatch >>> >>> from win32com.client.dynamic import Dispatch >>> >>> excel = Dispatch('Excel.Application') >>> >>> >...") |
PeterHarding (talk | contribs) |
||
Line 12: | Line 12: | ||
>>> excel.visible = True | >>> excel.visible = True | ||
</pre> | </pre> | ||
=Links= | |||
* http://robotframework-autoitlibrary.googlecode.com/svn/tags/robotframework-AutoItLibrary-1.0/doc/AutoItLibrary.html | |||
[[Category:Examples]] | [[Category:Examples]] | ||
[[Category:Python]] | [[Category:Python]] | ||
[[Category:Excel]] | [[Category:Excel]] |
Revision as of 09:44, 19 February 2013
Examples
>>> from win32com.client.dynamic import Dispatch >>> >>> from win32com.client.dynamic import Dispatch >>> >>> excel = Dispatch('Excel.Application') >>> >>> >>> >>> excel.visible = True