Quote:
|
I have a bit of a problem cotrolling the Dialog Window's properties (say, of a combo-box), and I'm thinking of trying to use a text file to "encrypt" (save) and "decrypt" (load) info from and to the scouting application, becuase I haven't found any other easier way to do that.
|
What API or toolkit are you using? What you are trying to do is actually extremely simple in Qt but not so simple in others. All I did was save the index numbers of the combo-boxes to a file and then read them back and re
set the index parameters to the retrieved values. Also I would avoid generic text files for storing data. You might be working harder than you have to.