I have developed an application using VB.NET, Visual Studio 2008 and the SQL Server database. Now I want to ignore the database (it has 1 table as customer (name,password,hour,minute)) as I don’t want my client to install SQL Server separately or other overheads.
I am planning to do the whole using file handling in VB.NET (manipulating the data in files itself, for example change username, password, etc.). As I am new I don’t actually know the proper way and of course need assistance.
I’m not sure what file format you’d like to use for your flat files, but one easy option is to use XML. You can certainly generate your own format, but there’s some easy tooling in VB.Net for reading and writing XML files.
To write an xml file:
Reading from an XML document you can use some of the inline VB XML language features:
Beth Massi has some good videos on working with XML files and data in VB