CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Apr 2001
    Location
    canada
    Posts
    11

    Saving Info in VB

    Hello. Here is my problem. I have a vb program that requires information to be saved and reloaded at next application startup. How can I go about doing this without i\o to text files?


  2. #2
    Join Date
    Jun 2001
    Location
    Memphis, TN
    Posts
    146

    Re: Saving Info in VB

    If it is a lot of data, use a database, if only a few settings or whatnot, use the system registry. This forum contains a lot of information on both of these methods, just click search and you're bound to find a lot of good stuff. Good luck!

    Jeff


  3. #3
    Join Date
    Jun 2001
    Location
    MO, USA
    Posts
    2,868

    Re: Saving Info in VB

    If it's not much info. use the GetSettings and SaveSettings functions to save/read them from the registery.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured