If you must set the forms RecordSource this way then
you must also set the controls such as text box ect. ControlSource = FieldName. Like this:
Private Sub Form_Load
Me.RecordSource = Select * From MyTable;"
Me.txtMyTextBox.ControlSource = "FieldName"
End Sub
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.