Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Strings and Arrays 1

Status
Not open for further replies.

TRHorn

Technical User
Feb 21, 2010
24
US
Is there an easy way to put an entire array into a string.

I have an array of numbers and I want to display them to my user in a message box. I don't want to have to convert every value one at a time. Any ideas?
 
Have a look at the Join function, eg:
MsgBox Join(yourArray, ",")

Hope This Helps, PH.
FAQ219-2884
FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top