ContributionsMost RecentMost LikesSolutionsRe: passing multiselect combo-box as parameter You can use linq and stringhelper to remove whitespace from each entry in the array before you loop e.g Dim split as String() = args.NameValuePairs.XFGetValue("ParamCC").Split(",").Select(Function(x...Re: passing multiselect combo-box as parameter E.g button {seq_name}{ParamCC=[|!ParamA!|]} E.g DM step ParamCC=[|!ParamA!|] Re: passing multiselect combo-box as parameter OK. I think you need to check you are passing in the param value via button AND DM step with square brackets around the parameter (see above). This behavior sounds like you are only picking up the fi...Re: passing multiselect combo-box as parameter P.s. make sure to put square brackets around the parameter passed in via button to pick up all comma separated values e.g {seq_name}{ParamCC=[|!ParamA!|]} Re: passing multiselect combo-box as parameter Hi. You can split the string in the receiving business rule by delimiter e g comma Dim split as String() = args.NameValuePairs.XFGetValue("ParamCC").Split(",") Then loop through rresults to get e...Re: WINSCP .filepart extension on SFTP files sent from OneStream Snippet sourced from stackoverflow https://stackoverflow.com/questions/48556236/upload-file-to-sftp-server-using-vb-net Re: WINSCP .filepart extension on SFTP files sent from OneStream This worked for me using WINSCP PutFiles command... Dim sessionOptions As New SessionOptions With sessionOptions .Protocol = Protocol.Sftp .HostName = "example.com" .UserName = "user...Re: Combobox Multiple select option. Re: Combobox Multiple select option. Hi Christian. I'm familiar with the tree view object but not familiar with multiselect option you have here. Can I ask what you are passing in as an example to the XFTreeItem? e.g.Return New XFTr...