I'm using the MultiSelect option with the Application.GetOpenFilename method in my VBA code to open mulitple text files. However, the returning array of file names is always option base 1. I'm using option base 0 throughout the rest of my code and would like all arrays be be option base 0 if possible, so as to reduce possible errors. Is there any way to set the returning array from the Application.GetOpenFilename method to be option base 0?
It's not a big deal but thought that I should ask the question.