Storing Permanent Values

Soldato
Joined
27 Sep 2004
Posts
11,199
Location
The Ledge Beyond The Edge
Hiya,

I am writing a program in C sharp and i want to be able to store a value permanently. It is a value that increases everytime something is ran.
At the moment i have it looking to an external text file and just reading and changing that, but it isn't really ideal.

What else can i do?

Cheers
 
Windows App, don't really want it to be registry as that would mean it will only be on one PC.

I could try using an SQL table for it i guess.
 
Database. Text file.

Do you keep a log when the "something" is run? If so, maybe you can keep the log in a database table and the value can just be the autonumber?

Depends what the value is, really..
 
Back
Top Bottom