Your Form that you are opening should opened in Dialog mode then after the OpenForm code you would have:
Me.cmbClient_Name.Requery
DoCmd.OpenForm "MyFormName", , , , acFormAdd, acDialog
Me.cmbClient_Name.Requery
When you open a Form in Dialog mode this way, the code halts until the Form is...