Contents Index Insert method LookupBackward method

UltraLite for MobileVB User's Guide
  UltraLite for MobileVB API Reference
    ULTable class

InsertBegin method


Prototype 

InsertBegin( )
Member of UltraLiteAFLib.ULTable

Description 

Prepares a table for inserting a new row, setting column values to their defaults.

Examples 

In this example, InsertBegin sets insert mode to allow you to begin assigning data values to CustomerTable columns.

On Error GoTo InsertError
CustomerTable.InsertBegin
CustomerTable.Column("Fname").StringValue = fname
CustomerTable.Column("Lname").StringValue = lname
CustomerTable.Insert
See also 

UpdateBegin method


Contents Index Insert method LookupBackward method