![]() |
|
#29
|
|||
|
|||
|
Where are you at in this project? (I returned from vacation.)
To respond to your most recent post, you initialize an array with parentheses, like so: Code:
Dim WordCollection() as String Code:
Dim WordCollection(70) As String Or Code:
Dim WordCollection(1 to 70) As String Once the array is initialized, you can assign values to it. Code:
WordCollection(0) = "Albania" WordCollection(1) = "Algeria" WordCollection(2) = "Austria" |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
Need macro to make list of "defined terms"
|
glnz | Word VBA | 8 | 09-07-2022 02:09 PM |
| How to extract names from a list | flyoverrunner | Excel | 3 | 06-06-2018 04:54 AM |
Best Practice for Indexing Multiple Word Terms and Sub-Terms
|
jhy001 | Word | 4 | 11-06-2017 02:08 PM |
How to Combine a Table of Contents Page with Another Document
|
Dante49 | Word | 2 | 10-24-2016 01:53 PM |
Need to extract two word domains from a list (BULK)
|
Maxwell314 | Excel | 3 | 12-08-2014 06:17 PM |