I use Visual C# 2008 to develop application in ArcGIS 9.3.
There is a project which need to draw many points in every 200ms.
In the begin, the application only draw a little points. Over time, more and more points should be draw in 200ms until 50,000 points.
In the end, I can not draw 50,000 points in only 200ms.
Could you give me some advice to draw so many points in so little time??
I think that we can make these points become a new object (eg. image), then we can directly draw the object in the 200ms, the draw speed will be improved hugely.
but how to make?