我有一个包含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)。