When I use the requery, all I get is a blank screen until I leave the record
adn come back. The name and source object are frmWireTerm. The from it is
using is also called frmWireTerm. Do I need to change the name of the
control so it does not match the form name? My Here is my code
strQry = "Delete from EleWireTerm Where EleWireTerm.CircId = " & CircID & ""
DoCmd.RunSQL (strQry)
strQry = "INSERT INTO EleWireTerm (CircID, CableID, WireID, Wire) " & _
"Select '" & CircID & "', '" & cableID & "', [EleWires].wireid,
[EleWires].wire " & _
"From [EleWires] Where [eleWires].CableID = " & cableID & ""
DoCmd.RunSQL (strQry)
Me!frmWireTerm.Requery