Click here to Skip to main content
15,881,638 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hello,

I am developing a system application. I have a requirement that a boolean value to be remembered on application restart without the usage of database.

Is it possible to remember any value without storing/saving it into database?

If YES, Could you please elaborate the steps?

Thanks in Advance..!
Posted

Well you will have to save it somewhere, but I agree using a database seems a bit much for a single boolean value. You could look at the application configuration file or the registry. Understanding Section Handlers - App.config File[^] may help you decide.
 
Share this answer
 
Comments
Richard MacCutchan 11-Dec-12 4:46am    
AnkitGoel.com 11-Dec-12 4:51am    
let me check, Sir.
AnkitGoel.com 11-Dec-12 4:57am    
yes u r right. it will work. thanks.....
You have to create a text file/ xml file/ .Net config file to store required information and save it in app directory. Then you have to read it on app startup and use it wherever you need it.

please let me know it helped or not?
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900