0

我是 vba 的新手,我想问一下如何通过宏在 Catia 中打开特定的 excel 文件(xxx.xls)。提前谢谢你的帮助。干杯

4

1 回答 1

1

使用 catia 文件系统对象,如下所示

Dim FileSys
Set FileSys = CATIA.FileSystem

Dim xlApp 
Set xlApp = CreateObject("Excel.Application")

Dim mydoc 
Set mydoc = xlApp.workbooks.open("Add the file path here")
于 2015-06-08T19:17:15.997 回答