I would like to populate an array with specific data from an Active X TDC object, however, the only methods I can find on the subject are: BOF(), EOF(), absolutePosition(), MoveFirst(), MoveLast(), MoveNext(), & MovePrevious(). The only properties that I can find are Sort, Filter, and Reset. Does anyone know what the available methods and properties are, or where I can find that information? Thanks in advance! Here is the function for more clarification.
var recordSet = myObject.recordset;
var myArray = new Array();
function initializeArray()
  {
   recordSet.BOF;
   for(var i=0; !recordSet.EOF; i++)
    {
     myArray[i] = recordSet.Insert Method Here ;
     recordSet.MoveNext();
    }
  }
var recordSet = myObject.recordset;
var myArray = new Array();
function initializeArray()
  {
   recordSet.BOF;
   for(var i=0; !recordSet.EOF; i++)
    {
     myArray[i] = recordSet.Insert Method Here ;
     recordSet.MoveNext();
    }
  }
Comment