Query losing a field

R

Rpettis31

I have a form that loads a dataview from a query and then when the user
selects the radio button sort option will call a new query that filters on
that option. yet the I lose the first field in the query on the subform for
some reason.

Private Sub Option12_GotFocus()
Me.subfrmDMROverview.SourceObject = "query.qryAllDMR"
Me.subfrmDMROverview.LinkChildFields = ""
End Sub
 
Top