CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3

Thread: transfer data

  1. #1
    Join Date
    Jul 1999
    Location
    USA
    Posts
    101

    transfer data

    How can I transfer data from an Access database to another (similar) Access database using VB code- Any suggestions greatly appreciated.

    Thanks


  2. #2

    Re: transfer data

    There are ways to do this using Synchronization and replication, but I personally prefer using the good old-fashioned OpenDatabase, OpenRecordset, AddNew, and Update methods of DAO, especially when we're talking about Access. Perhaps this is just because I'm so used to these.

    Charles Zimmerman
    http://www.freevbcode.com
    [email protected]


  3. #3
    Join Date
    May 1999
    Posts
    3,332

    Re: transfer data

    you could use (OLE) automation to invoke the Access methods for exporting and importing...


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