Origin Version (Select Help-->About Origin): 7.5G SR3
Operating System: w2k
Dear forum,
When I try to add more than 543 filenames to a StringArray, it doesn't work and the
array is just empty. With 543 it works fine, if I select one more file it doesn't work
anymore. Can anyone explain to me that strange behaviour?
Here's some code:
int iNumSelFiles;
StringArray saFiletypes, saFilePaths;
// ask user for the files to import
saFiletypes.SetSize( 2 );
saFiletypes[0]="[data (*.txt)] *.txt";
saFiletypes[1]="[all (*.*)] *.*";
iNumSelFiles = GetMultiOpenBox( saFilePaths, saFiletypes );
Cheers Armin