Team,
I use Excel to process a stream of data from a server.
The data is continuously 'pushed' to my computer.
The code that interperets the stream runs when other VBA processes are done running and released.
I have some VBA code that runs continuously.
I'd like the code to "appear" to have ended so the stream of data can be processed.
I use this code to stop and wait 10 seconds..
But VBA control is not released, so the stream is not processed.
Any thoughts if this is the right method??
What about VBA releasing control or handing off control??
Any comments greatly appreciated.
John,
In Annapolis, MD
I use Excel to process a stream of data from a server.
The data is continuously 'pushed' to my computer.
The code that interperets the stream runs when other VBA processes are done running and released.
I have some VBA code that runs continuously.
I'd like the code to "appear" to have ended so the stream of data can be processed.
I use this code to stop and wait 10 seconds..
But VBA control is not released, so the stream is not processed.
Code:
If Application.Wait(Now + TimeValue("0:00:10")) Then
End If
What about VBA releasing control or handing off control??
Any comments greatly appreciated.
John,
In Annapolis, MD