ADODB Object
 
Syntax
 
Set recordsetobject = recordobject.GetChildren
Description
Returns a Recordset object where each row represents a file or directory.
 
The GetChildren method returns a Recordset object where each row represents a file or subdirectory in the directory represented by the Record object. The provider dictates which columns are actually in the returned Recordset.
See Also
Example
 
If objRecord.RecordType = adCollectionRecord
   Set objRecordset = objRecord.GetChildren
End If