UltraLite for MobileVB User's Guide
UltraLite for MobileVB API Reference
ULTable class
InsertBegin( )
Member of UltraLiteAFLib.ULTable
Prepares a table for inserting a new row, setting column values to their defaults.
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