我正在尝试通过单击一个来连接两个不同的文件。例如,当我点击test.rcp时,我想在后台打开oven.xls excel文件。然后,当我点击test2.rcp时,它会关闭oven.xls并打开oven2.xls。这可能是使用vbscript或任何其他方法吗?任何输入将不胜感激。谢谢。
答案 0 :(得分:1)
我不确定" rcp"文件是,但这里有两个vbs
文件,可以满足你的需要。
' test.vbs
With CreateObject("Excel.Application")
.Visible = True
.Workbooks.Open "oven.xls"
End With
' test2.vbs
Set e = GetObject(, "Excel.Application")
If Not e Is Nothing Then
e.Workbooks.Close
e.Workbooks.Open "oven2.xls"
End If