I am using LoggerNet SDK, I try manualpolldata, and get the newest record OK, but when I try to Get the old Data record, through Advisor.startOption = csidsStartAtRecordId but still get the newest record, any example(VB) I could find or download ? please advise
The Advisor.startOption tells the DataSource advisor where to start when accessing records in the LoggerNet data cache. It sounds like you are using it correctly. However, you probably need to adjust the Advisor.orderOption.
The Advisor.orderOption tell the DataSource advisor how to display the records that are accessed. The default setting is RealTime, which tells the advisor to only get the newest record in the block of records that are being accessed. Try using the Advisor.orderOption = csidsOrderCollected to get the records from the data cache in the order they were collected by LoggerNet from the starting point specified by the Advisor.startOption.
If that doesn't work, let me know and I can send you some VB code.