J
Jon.NET
Hi there,
Can I refer to a Field by string (Name) to gain access to the Update() and
Select() methods?
To use the Fields Collection you have to pass in an integer (Index):
_objDocument.Fields[index].Select();
The get_Item enumerator does not have the Update() and Select() methods:
_objDocument.Variables.get_Item(ref oVariableName).Value
Thank you
Jon
Jon
Can I refer to a Field by string (Name) to gain access to the Update() and
Select() methods?
To use the Fields Collection you have to pass in an integer (Index):
_objDocument.Fields[index].Select();
The get_Item enumerator does not have the Update() and Select() methods:
_objDocument.Variables.get_Item(ref oVariableName).Value
Thank you
Jon
Jon