Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VB6 using LL (set RecArray to a RecordSet)

Status
Not open for further replies.

Alleyopp

Programmer
Sep 17, 2004
22
US
I am using VB6 to interface with Livelink..

I have retrieved a RecArray from the ListObjects but I want to return this to my main VB form as a recordset for my datagrid to use.

How would I go about doing this??

Thanks
Alley
 
I have tried a ListObjects iteration expalined in java at this site
the difference between the recarray vs the record can be thought of something like a recarray is a collection of record akin to your recordset.You canb call the elements by index as well as name
Code:
            id,name,birthday
recarray[0]={'1',"nair",'1967'}
recarray[1]={'2',"app",'1972'}
so in essence you could return things like this
recarray[0]["id"]=1
recarray[0][1]=1
recarray[1]["birthday"]= 1972

What you will have to come up is a an enumeration operator counterpart in VB or ask opentext to provide you with a VB sample.There should be tons of them at OT

Always acknowledge a fault. This will throw those in authority off their guard and give you an opportunity to commit more.
Mark Twain

appnair
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top