store informations

dubem1

Newcomer
Joined
Dec 5, 2002
Messages
20
Hello,

Is there a way with VB.NET to store information and retrieve it by code when needed? (DB isn't an issue). I want to store my application version and retrieve it when the About form is showed. I don't want to use the assembly version because it will not always equals my application version.

any Idea?

thanks
Martin
 
You can edit the AssemblyVersion attribute in assembly.cls, set it like "1.0.0.0", you could just store the value in a constant in the program or if you really want to use a file use the System.IO.StreamReader
 
Back
Top