susanhawk, what you suggest works fine if you want to pull from table(s). I want to pull my data from an already existing recordset.
For example. I am building a recordset with file names from a directory and want to display in one of the boxes.
cuox, below is my code up to loading the listbox.
''-- Create FSO Object
Dim objFSO As Object, objFile As Object, objFileItem As Object
Dim objFolder As Object, objFolderContents As Object
Set objFSO = CreateObject("Scripting.FileSystemObject"

Set objFile = objFSO.GetFile("C:\atestdir\myTest.txt"

Set objFolder = objFile.ParentFolder
Set objFolderContents = objFolder.Files
''-- Create Disconnected Recordset Object
Dim rs As New ADODB.Recordset
Dim varrfields As Variant
With rs.Fields
.Append "reportName", adVarChar, 125, adFldIsNullable
End With
varrfields = Array("reportName"

rs.Open
''- Add directory file names to the recordset
For Each objFileItem In objFolderContents
rs.AddNew varrfields, Array(objFileItem.Name)
Next '- loop through files
rs.Sort = "reportName"
' Populate the ListBox
rs.MoveFirst
Do While Not rs.EOF
'-- WHAT is the code for loading the listbox??????????
'-- Below code is NOT correct. There is no list0.AddItem
'-- in Access 2000
List0.Value = rs.Fields("reportName"

.Value
rs.MoveNext
Loop
List0.Requery