hi there,
I'm trying to solve a problem I'm having with writing in a text file using 2 arrays
the first array is the normal text, line by line
e.g.
dim arrCode as string()
arrcode(0) = "This is the first line"
arrcode(1) = "The second line etc."
now, the 2nd array would have to be implemented in the first array.
I'm using this array to get the filenames from a specific folder.
but now my question is, how do I write these filename in the same textfile as the first array?
Considering there is some text after the filenames, I haven't got a clue how to mix these 2 together :/
I thought it may be possible to work with a For Each to write these in the textfile.
but if there are any other suggestions, better ones, feel free to share them.
I'm stuck and it's sort of a huge assignment for me, and I can't put the pieces in the right place.
If I'm unclear 'bout my situation, I can post my code, or an example of what I mean exactly.
thanks you guys!
I'm trying to solve a problem I'm having with writing in a text file using 2 arrays
the first array is the normal text, line by line
e.g.
dim arrCode as string()
arrcode(0) = "This is the first line"
arrcode(1) = "The second line etc."
now, the 2nd array would have to be implemented in the first array.
I'm using this array to get the filenames from a specific folder.
but now my question is, how do I write these filename in the same textfile as the first array?
Considering there is some text after the filenames, I haven't got a clue how to mix these 2 together :/
I thought it may be possible to work with a For Each to write these in the textfile.
but if there are any other suggestions, better ones, feel free to share them.
I'm stuck and it's sort of a huge assignment for me, and I can't put the pieces in the right place.
If I'm unclear 'bout my situation, I can post my code, or an example of what I mean exactly.
thanks you guys!