In fact the config file is loaded into memory when the app is executed, after this time the file is never read until next run.

The section APPSETTINGS can't be updated into memory but if you create new section, you can re-read the config file and update it into memory.

I my case it is not possible, dynamic text are linked by VB to a record of the Appsetting section.

What I need is to create 2 APPs. The first one for the login and the update of the ConfigFile of the second App with label text of the language define in the user profile.

Then I need to pass information between APP1 and APP2 (login, authorisations, ...) and finally execute APP2.

Does anyone know how can I send data from APP1 to APP2 when I execute APP2 ? Other then via the configfile for security reason !!!


Thanks in advance.