Within VBA I can successfully do this:
Forms!F_Contact_Data_Entry!Combo_Rep_ID.SetFocus
But what I really need to do is replace the control name (Combo_Rep_ID) with a variable. I've tried using a string variable. I assigned a value to the string, then tried to execute the .SetFocus.
Option...