Firm::Update (Interface: Firm)
 
Updates the Firm Data.
 
void Update (
    enum eUpdateMode eUpdateMode
)
 
Parameters
eUpdateMode
[in] A value of the 'eUpdateMode' enumeration.
 
Remarks
This method is not supported when using eUpdateMode umDialog in the current version of the ClSdk.
 
See Also
CreateFirm
SetFieldVal
 
Samples
 
C++
 
// Update the second bank account number of the Firm Data to '290-0212397-85'
pFirm->SetFieldVal (firfBankAccount2, "290-0212397-85");
pFirm->Update (umFullReport);

C#
 
// Update the second bank account number of the Firm Data to '290-0212397-85'
oFirm.SetFieldVal (eFirmFld.firfBankAccount2, "290-0212397-85");
oFirm.Update (eUpdateMode.umFullReport);

VBS
 
' Update the second bank account number of the Firm Data to '290-0212397-85'
Call oFirm.SetFieldVal(oFirm.GetFieldID("BankAccount2"), "290-0212397-85")
Call oFirm.Update(umFullReport)

VB.NET
 
' Update the second bank account number of the Firm Data to '290-0212397-85'
oFirm.SetFieldVal(eFirmFld.firfBankAccount2, "290-0212397-85")
oFirm.Update(eUpdateMode.umFullReport)