Hi, I'm using VBA to automate executing multiple Datastream Request Tables iteratively. It seems that each request table calls gRTCOMInterface.ProcessRequestTable to fetch the data from datastream servers. However, I noticed that after a couple of requests, this method gets hung up and the data retrieval process never completes.
Unfortunately, this leades to the fact that all subsequent code in my macro which was supposed to be executed, after the retrieval is complete, never gets executed and I need to restart Excel.
I was therefore wondering:
1. Is there a way to implement a time-out around gRTCOMInterface.ProcessRequestTable such that after say 15 minutes elapse, gRTCOMInterface.ProcessRequestTable is automatically aborted?
2. Is there a way to see what's going on behind the scenes in gRTCOMInterface.ProcessRequestTable so that I can implement some error-handling on my own?
Thanks!