Quote:
Originally Posted by gekser
My task is to use not just 4 (four) words as an array but 160. VB does not allow me to use so many words in a single string.
|
Your array can have vastly more than 160 words. The problem you might encounter is the VBE's line length limit. To deal with that, simply use line separators. For example:
arrWords = Array("work", "dialogue", "would like", "first of all", _
"lorem ipsum", "dolor", "amet sit")
PS: When posting code, please use the code tags. They're on the 'Go Advanced'
tab at the bottom of this screen.