M
matthewtckr
I have a form that will be used to track members in an organization,
and I would like a Textbox to be visible in the main section, but I use
subforms for all of the other information.
The query Dues_Payments contains the following fields:
Member_ID
MaxDues
I set the form's On Current Event Procedure to
but I get error 3078, saying that the database engine couldn't find the
input table or query.
Disclaimer: I'm not anywhere near proficient at VB, but mainly stick
to C, Java, and PHP.
and I would like a Textbox to be visible in the main section, but I use
subforms for all of the other information.
The query Dues_Payments contains the following fields:
Member_ID
MaxDues
I set the form's On Current Event Procedure to
Code:
Private Sub Form_Current()
Dim strSQL As String
strSQL = "SELECT * " & _
"FROM [Most Recent Dues] WHERE [Most Recent Dues]![Member_ID] =
[Me]![Member_ID]![Value];"
Me.Text88.Value = DLookup("MaxDues", strSQL)
End Sub
but I get error 3078, saying that the database engine couldn't find the
input table or query.
Disclaimer: I'm not anywhere near proficient at VB, but mainly stick
to C, Java, and PHP.