[RESOLVED] Number of Strings in a Resource File Programatically?
Hello everybody, is there a way to programatically know how many strings are in a resource file in your own program programatically? Currently I just look at the number of strings directly in the resource file.
Re: Number of Strings in a Resource File Programatically?
No the only way is to count them. I suppose you could have a special resource that contained the count and then just read that one.
Re: Number of Strings in a Resource File Programatically?
Alright thanks. I have a constant in the application with the count which I use however I manually change the number, I will just have to remember to do that everytime I change thecount of strings.