How to create an array during runtime?
Hi all,
What I'm trying to do is the following:
I want to open one or more files and store their data in an array - a seperate array for each one of the files.
Now I know how many files there will be, but the problem is that it can be one file this run, but next run it can be 5 files and then 3 adn then 4 and so on and so on. So, I figured I need to make arrays (Strings like Tmp1() Tmp2() etc) in runtime.
How do I do this? I think this can only be done by the Dim statement? (Dim Tmp1() As String)
Please advise.
Thanks in advance!