Syntax
Public WriteOnly Property RecordCount () As Integer
Description
This property is used to set the specify the number of records to be populated in theDatabase object.
Parameters
No Parameters.
Return value
No return value.
Sample
Public Sub main() 'Variables Dim DB As VTLGeneral.Database Dim m_Recordset As VTLGeneral.RecordSet DB = new VTLGeneral.Database DB.RecordCount = 2 m_Recordset = DB.CreateRecordEnd Sub
See Also