ok, anyone know why the following code creates a FormField but then fails to assign it to the myFF object?
Set myFF = myDoc.FormFields.Add( _
Range:=myDoc.Tables(6).Cell(iOrigLastRow + 1, 2).Range, _
Type:=wdFieldFormDropDown)
I get the FormField but the object is the joyous
I can set the myFF object to the created FormField in the next line, but that just seems so inelegant
thanks