Hello everyone,
unfortunately a mistake has crept in. In the training video “For Each Starting Project with Input Files” at minute 9:26 (Log Message) the following must be entered:
“The new name of the file " + InvoiceName.FullName + " is: " + NewInvoiceName.Substring(NewInvoiceName.LastIndexOf(”"))
Otherwise the thing will fall flat on its face ![]()
And to get just the file name like this:
“The new name of the file ” + InvoiceName.FullName.Substring(InvoiceName.FullName.LastIndexOf(“\”)) + “ is: ” + vbNewLine + NewInvoiceName.Substring(NewInvoiceName.LastIndexOf(“\”))
Greetz
Clinty


