Where to store info between program usage

  • Thread starter Thread starter Michael Murschell
  • Start date Start date
M

Michael Murschell

If I want to save the last thing to be in a field when they exit the
program, and be there when they log back in, how would I do that?

Would I put it in the Registry or an ini file or something? And how?
 
Michael,

From my research it appears that the general consensus is to begin migrating
AWAY from the registry and to start using the IsolatedStorage assembly in
System.IO.IsolatedStorage.

Dan
 
Michael,

Look at application.LocalUserAppDataPath and
Application.CommonAppDataPath
 
Back
Top