Hi....
If you want the simplest to just connect to the MS Access database...
YOu can use Data COntrol. It simply bind the database to the control..
I wish i attach file here so that i can give you many codes to do that....
Just so show you simple example:
open vb6
create new project
add controls Tetxbox and Data Control
then,
By default the name of Data Control is Data1.
DO this with data1 properties
Databasename - there is a button that you can click to select your database
Recourdsource-select what table are we going to use
For Example You have a TextBox to display a record then,
from textbox properties:
Datasource=<Select the control> e.g. in our example select the Data1
Datafield-This is where you can select what field from your table you want to display.
try to run the program and check how it works...(F5)