ok, here is the situation...

I am searching several files for specific strings.

If found, I want to store in a QStringList.
It is possible that my search does not return a valid string from File1
and does return a valid string from File2.


I want to store the strings in the QStringList location associated with the file.

My_QStringList << found_search_string WILL NOT work because it may be stored
in location 2 incorrectly.

I need to
My_QStringList[i] = found_search_string (where i is the file number)

How is this accomplished? I am running into errors using:

My_QStringList[i] = this_string and
My_QStringList.at(i) = this_string.

Any assistance would be appreciated.

thanks

John