在主窗体上设置了一个组合框Combo6 ,组合框Combo6 的数据来源为distinct查询。
通过主窗体的组合框Combo6选择查询条件,希望能在子窗体child上显示查询结果,可以一直报错。
代码如下:
Private Sub Combo6_AfterUpdate()
Dim strwhere As String
strwhere = "true"
If IsNull(Me.Combo6.Text) = False Then
strwhere = "零件编号=" & Me.Combo6.Text
End If
Me.child.Form.Filter = strwhere
Me.child.Form.FilterOn = True
End Sub