Thanks for the reply... I got my project started in VB and referenced that xAPI... What I'd like to do is cycle through the records of my vendor table to pull out all the info and save that to my file. So far I have:
Private Sub Form_Load()
Dim Session As ACCPACXAPILib.xapiSession
Set Session = CreateObject("ACCPAC.xapisession"

Session.Open "ADMIN", "ADMIN", "SAMINC", Date, 0
Dim ARCUSTOMER As ACCPACXAPILib.xapiView
Set ARCUSTOMER = Session.OpenView("IC0310", "IC"
At this point, I'd like to do a
do while not(session.EOF)
and get all the values per records
and put then in a file (doesn't matter what file,
but I don't know how to pull data out of the
recordset!
loop
End Sub
Any help would be appreciated!
Thanks