Collections to messagebox

Hi friends currently i am getting the running instance and non running instances in collections datatable how to print in message box. appreciate your expertise please

Hi @Sathish_Ashokan

Try this:

outputString= String.Join(Environment.NewLine, instancesDataTable.AsEnumerable().Select(Function(row) String.Join(", ", row.ItemArray)))

outputString is of DataType System.String

Hope it helps!!

Hi,

How about OutputDataTable activity?

Regards,

thanks madam it is working but is it possible to filter only specific values from collection ?

1 Like

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.