私はファイルとこれをスクリプトに含むフォルダーを持っています:
Set shObj=CreateObject("shell.Application")
Set shFold=shObj.NameSpace(FolderName)
Set shFiles=shFold.Items
その後、shFiles
印刷されます:
For each printfile in shFiles
printfile.InvokeVerbEx "Print"
....so on...
Next
必要なのは、取得したこれらのファイルのリストを並べ替えて、アルファベット順に印刷できるようにすることですshFold.Items
。 For each printfile in shfiles
なにか提案を?
ありがとうございました。