VB 6 Files Help required
-
HI! How are you sir actually i need help about vb6 Files.... i need of develop an application that store information into files by admin user and read this information at client side without using database support but using Files.. i.e .txt,.DAT. Please Help me with code...
-
HI! How are you sir actually i need help about vb6 Files.... i need of develop an application that store information into files by admin user and read this information at client side without using database support but using Files.. i.e .txt,.DAT. Please Help me with code...
If you don't need the files to be human/readable editable then you could always use an embedded database like SQLite[^]. It provides a pretty good database implimentation and runs as part of your app without needing to be installed. If the file does have to be human readable/editable then you need to decide on a data format (maybe xml?) and use that. THe rest is normal file accessing.