UltraLite ActiveX User's Guide
UltraLite ActiveX API Reference
ULTable class
UpdateBegin( )
Member of UltraliteActiveX.ULTable
Prepares a table for modifying the contents of the current row.
' eMbedded Visual Basic Table.UpdateBegin Table.Columns( "ColName" ).Value = "New Value" Table.Update
// JScript
Table.UpdateBegin();
Table.Columns("ColName").Values = "NewValue";
Table.Update();