如何使用TCL打开现有的Excel文件?

时间:2014-03-09 07:39:25

标签: excel file tcl

我有一个问题是用Tcl打开现有的Excel文件。在这种情况下,我不想从文件中获取数据,但我想调用Excel文件并直接打开它。

有谁知道如何使用Tcl Tk打开现有的Excel文件,并使其保持打开状态?

1 个答案:

答案 0 :(得分:0)

最简单的尝试是:

# For convenience only, put the filename in a variable
set theExcelFile "FooBar.xlsx"

# Ask the OS to mimic a double-click on the file
exec {*}[auto_execok start] "" [file nativename [file normalize $theExcelFile]]

它适用于在Windows中注册的任何文件类型。