Hello,
I have an MFC application.
In one of my screens the user need to choose a driver from a list of
thousands drivers.
We cannot use DB, so we use XML only.
The drivers files are in the system files every manufacturer has its own
directory and every model in the manufacturer directory has its own
directory too (many many directories and sub-directories), each model
directory has few files (driver files).
I need a very fast way to show the user all the manufacturers and when he
chooses the manufacturer I need to display all the chosen manufacturer's
models (dirs). After the user chooses the model name, the appropriate files
are copied to a specific location.
For now on every display of that screen, I go over the file system and
prepare the controls from the File System, which takes me too long time.
How do I do it faster, maybe using indexing files(that will be prepared on
my application launch).
Thanks,
Janiv Ratson.