Hello community,
I'm using PASSOLO automation for exporting bundles.
I'd found the method above to select a folder, but I wonder to create a new folder within this method. Could anyone help me with this?
[1] Example
Dim ret As Boolean
Dim folder As String
folder = "c:\temp"
ret = PSL.SelectFolder(folder, "Select folder...")
If ret = False Then
MsgBox("Aborted dialog", vbCritical)
Exit Sub
End If
MsgBox("Choosen folder: " + folder)
Translate