Hello!
In my program I created language support, so I need an advice.
What's better: If I load all strings (for all forms, messages...) when my application starts or shall I load those strings when they're needed?
Zvonko
Printable View
Hello!
In my program I created language support, so I need an advice.
What's better: If I load all strings (for all forms, messages...) when my application starts or shall I load those strings when they're needed?
Zvonko
If your application is large, then I would suggest that you load them when they are needed. It will save memory.
Load them when they are needed. This will avoid having the user experience a "delay" when the program starts, and the individual load of a string will be transparent to the user.