Solved...
I found the solution in another post in the ".NET & COM Library" (which didn't show up with the search, or better, didn't notice it).
The filepermissions seems to be set first, befor assigning..
So i.s.o.
I needed
Well, actually, as the new Filepermissions is empty, I actually used "fp.Numeric = 438 'oct 666"
The filepermissions seems to be set first, befor assigning..
So i.s.o.
transferOptions.FilePermissions.GroupWrite = True
I needed
Dim fp As New FilePermissions
fp.GroupWrite = True
transferOptions.FilePermissions = fp
Well, actually, as the new Filepermissions is empty, I actually used "fp.Numeric = 438 'oct 666"