我有一个 Tiff 文件拆分器 DLL,它有一个 VBA 代码:
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
如何在 a 中运行这行代码command prompt
?我需要用这段代码制作一个批处理文件(.bat)。