OK, the easy way, for very simple applications is to add an adodc control to your form (you probably have to add some component like Microsoft ADO Data Control ).
I never used this - but can be helpfull to do simple stuff - I am sure there a lots of example out there.
Or - some more code - but i believe more flexible :
connect to an access (2000) database :
Dim cnn1 As ADODB.Connection
dim strConnect as string
dim DatabaseLocation as string
Set cnn1 = New ADODB.Connection
If cnn1.State = 0 Then
Databaselocation="c:\test.mdb"
strConnect= "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & DatabaseLocation & ";Persist Security Info=False;Jet OLEDB

atabase"
cnn1.CursorLocation = adUseClient
cnn1.Open strConnectionString
end if
Query the database :
Dim RS As ADODB.Recordset
Dim cmd As ADODB.Command
dim strSQl as string
strSQL="Select * from table1"
Set RS = New ADODB.Recordset
Set cmd = New ADODB.Command
cmd.ActiveConnection = cnn1
cmd.CommandText = strSQL
Set RS = New ADODB.Recordset
RS.CursorType = adOpenStatic
RS.LockType = adLockReadOnly
RS.Open cmd
' do things with RS
Set cmd = Nothing
Set RS = Nothing
'disconnect
If cnn1 <> Empty Then
If cnn1.State <> 0 Then
cnn1.Close
End If
Set cnn1 = Nothing
End If
(I use all this in class : connect at the start of the app - disconnect at the end)