how can i put variables in an variant array. in vc++ i used createsafearray().
i want to put the results of some recordset in VARIANT array.
thanks
Printable View
how can i put variables in an variant array. in vc++ i used createsafearray().
i want to put the results of some recordset in VARIANT array.
thanks
'Assume you've opened a recordset named rs
'and have the number of records desired in iRecordCount
Dim avntRecordset as Variant
avntRecordset = rs.GetRows(iRecordCount)