Hi...
I have a form with a subform
in the form i have a combobox with a code on the "onchange" event to filter the subform
in the subform footer i have a textbox with this as controlsource
everything is fine until i filter the subform... the textbox in the footer doesn't change. see pictures
It's an access project (ADP) with SQLServer2005
Any suggestions?
I have a form with a subform
in the form i have a combobox with a code on the "onchange" event to filter the subform
Code:
Private Sub ComboInstitucion_Change()
Documentos.Form.Filter = "id_institucion=" + ComboInstitucion.Value
Documentos.Form.FilterOn = True
End Sub
in the subform footer i have a textbox with this as controlsource
Code:
=Sum([importe])
everything is fine until i filter the subform... the textbox in the footer doesn't change. see pictures
It's an access project (ADP) with SQLServer2005
Any suggestions?