How to Launch WinBatch with a
List of WBT FilesKeywords: WinExeName
Here's how to launch a new copy of WinBatch.exe, along with a list of WBT files:origdir=Dirget() wbtfiles=FileItemize("xxx*.wbt") FileNum=ItemCount(wbtfiles, @tab) For FileIndex=1 to FileNum File=ItemExtract(FileIndex, wbtfiles, @tab) RunWait(WinExeName(""), File) ; returns full path to WB wbt
Article ID: W13271Filename: Launch WinBatch with List of WBT Files.txt