Yes.
The only registry entries that are created are the ones that you define. For example, if you set the RegistryRepositoryKey property on a form, this key will be used to save the forms settings. So you are in control of this.
I do use getActiveLanguage, but at this point we only support 1033 until we have time to do the translations, so if I hard code the language = 1033 will this stop the access to AppLanguage.dat?
What about registry entries, other than domain, which I can move to the database, do you guys write any other registry entries?
Thanks
Tim
The second option basics would rely on you creating some other logic to pull your localization and connection string information from some source on which you do have access. For example, in our medical software we pull our connection strings from a server service that sends the connection string info through a UDP connection. So the local files are never touched. Then once a user logs in and I have access to a database, we pull their preferred language from a preferences table, so again the local folder is not touched.
Do you have any suggestions on how to solve this problem?
Thanks,