Notifications
Clear all

[Closed] Messagebox Array Output Formatting

I want to output the values of an array into a messagebox. I’m currently just saying show the array as a string which returns a pretty ugly mess into the messagebox. Is there way to format the array for the messagenox so that it looks better? Thanks!

2 Replies

Use for loop, build a string from your array elements and finally display the string in the message box.

Yea that works, thanks Tamyl!