Sorry, I forgot, in the GetNextRecord function the code should be enclosed within a do...while loop where while condition will be checking for the EOF for the records.
The line:
set row = New MyDataRow()
should be out side the loop.
Write a new function, name it GetNextRecord. Call this function from Fetch like this:
Function Fetch( ) As AcDataRow
dim row as DataRow
set row = New DataRow()
GetNextRecord(row)
set Fetch = row
End Function
GetNextRecord is like this:
Function GetNextRecord(row as yourDataRowName)
If...
Hi Jon,
I have the same situation where I want to deploy reports from a folder instead of uploading manually one by one. Can you please let me know what needs to be done. I am using VB6.
Thanks
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.