Maybe something like this in your current event will do the trick. Can't say I have ever tried doing something like this though.
Code:
Dim strSQL As String
strSQL = "SELECT MfrCatagory.ManufacturerName, MfrCatagory.Catagory " & _
"FROM MfrCatagory " & _
"WHERE ManufacturerName = '" & Me![ManufacturerName] & "'" & _
"ORDER BY MfrCatagory.Catagory;"
If (SysCmd(acSysCmdGetObjectState, acForm, "FrmManufacturerAddlCatagoryEntry") And acObjStateOpen) = acObjStateOpen Then
With Forms![FrmManufacturerAddlCatagoryEntry]
.[lblManufacturerName].Caption = Me.ManufacturerName
.RecordSource = strSQL
.Requery
.Repaint
End With
End If