I created a form in Access 2007. The Form’s Record Source is tblDrillingDatabase. When I open the table directly (tblDrillingDatabase), all the records are there.. I put a combo box on the form to Find Record based on my selection, which works. My problem is that my combo box does not include all the records from tblDrillingDatabase. I cannot figure this out, probably something goofy I am overlooking. Any help would be appreciated.
COMBO BOX PROPERTIES
EVENT for After Update is:
Private Sub Combo97_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[Well Name] = '" & Me![Combo97] & "'"
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub
ROW SOURCE is:
SELECT [tblDrillingDatabase].[WELL NAME] FROM [tblDrillingDatabase];
CONTROL SOURCE IS BLANK
COMBO BOX PROPERTIES
EVENT for After Update is:
Private Sub Combo97_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[Well Name] = '" & Me![Combo97] & "'"
If Not rs.EOF Then Me.Bookmark = rs.Bookmark
End Sub
ROW SOURCE is:
SELECT [tblDrillingDatabase].[WELL NAME] FROM [tblDrillingDatabase];
CONTROL SOURCE IS BLANK