Accnt::SetFieldVal (Interface: Accnt)
 
Sets the value of a field.
 
void SetFieldVal (
    enum eAccntFld eFieldID,
    VARIANT vFieldValue
)
 
Parameters
eFieldID
[in] Identifier of the field, e.g. accfSysNum (C++) or eAccntFld.accfSysNum (C# / VB.NET).
 
Remark: In VBS, this field identifier enumerations cannot be used! You should use GetFieldID to get a valid field identifier.
vFieldValue
[in] A VARIANT containing the value you want to give the requested field.
 
See Also
CreateAccnt
GetFieldVal
GetFieldStr
GetFieldID
 
Samples
 
C++
 
// Set the value of the Dutch description to 'Omschrijving via SDK'
pAccnt->SetFieldVal (accfDescrNld, "Omschrijving via SDK");

C#
 
// Set the value of the Dutch description to 'Omschrijving via SDK'
oAccnt.SetFieldVal (eAccntFld.accfDescrNld, "Omschrijving via SDK");

VBS
 
' Set the value of the Dutch description to 'Omschrijving via SDK'
Call oAccnt.SetFieldVal(oAccnt.GetFieldID("DescrNld"), "Omschrijving via SDK")

VB.NET
 
' Set the value of the Dutch description to 'Omschrijving via SDK'
oAccnt.SetFieldVal(eAccntFld.accfDescrNld, "Omschrijving via SDK")