| |
| Sets the value of a field. |
| |
 |
void SetFieldVal ( enum eDdManFld eFieldID, VARIANT vFieldValue ) |
|
| |
| Parameters | | eFieldID | [in] Identifier of the field, e.g. ddmfSysNum (C++) or eDdManFld.ddmfSysNum (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 |
|
|
|
| |
| Samples |
| |
 |
C++ |
| |
// Set the value of the postal code to '8000'
pDdMan->SetFieldVal (ddmfPostalCode, "8000");
|
|
 |
C# |
| |
// Set the value of the postal code to '8000'
oDdMan.SetFieldVal (eDdManFld.ddmfPostalCode, "8000");
|
|
 |
VBS |
| |
' Set the value of the postal code to '8000'
Call oDdMan.SetFieldVal(oDdMan.GetFieldID("PostalCode"), "8000")
|
|
 |
VB.NET |
| |
' Set the value of the postal code to '8000'
oDdMan.SetFieldVal(eDdManFld.ddmfPostalCode, "8000")
|
|