GeoffS Level: VB Lord

 Registered: 29-09-2004 Posts: 536
|
Re: implementing an access database into VB without access :D
Hi fraggle,
If I understand your question correctly your aim is to get to data that is saved in a MS Access database, but you do not want to open "Access" to get at it. It is important to realise that there is a distinction between an Access "Database" and the actual Access program. An Access Database is just a file with "Tables" in it that store the data. The Access "Program" is an application that you can use to retrieve the data from those tables, and then design user Forms and Reports in which to manipulate and display the data. However, you do not have to use the Access Program to do that, you can use any programming application you want, such as VB6, ASP, C++, or in your case - VB.NET. To use these applications you need a "Data Provider" which acts as a sort of bridge between your application and the database. For VB.NET you use ADO.NET (ActiveX Data Objects)
To find out about Data Access in .NET take a look at
http://www.msdn.microsoft.com/vbasic/learning/data/
Hope that helps.
____________________________
multi-tasking - the ability to hang more than one app. at the same time.
|