需要在命令提示符中运行VBA代码

时间:2013-03-22 14:02:21

标签: vba batch-file tiff

我有一个包含VBA代码的Tiff文件分割器DLL:

Dim tsplit As New SCTiffPageSplitNetDLL.TiffPageSplitterDLL
Dim rslt as Integer
To call the function and split TIFF files, you could use the following:

rslt = tsplit.Tiff_PageSplit("C:\test\test.tif", "C:\outputdir") 
MsgBox rslt

如何在command prompt中运行此行代码?我需要从这段代码中创建一个批处理文件(.bat)。

1 个答案:

答案 0 :(得分:0)

您可以将其放在VBScript(.vbs)文件中并使用cscript运行它。请参阅此主题How to run a .vbs from a .bat