I am writing a packet analysis app using C# and putting the packets coming from network in the datagridview, but once it starts populating, datagrivdview scrolling becomes like shown below in the image and I am unable to score? How I can fix this?
Basically the problem is that the data is coming in very fast so maybe it's not able to handle it?
I am populating the data manually and here is the code:
string[] row = { packetsList[countOfPacketCaptures].packetType, packetsList[countOfPacketCaptures].sourceAddress, packetsList[countOfPacketCaptures].destinationAddress, packetsList[countOfPacketCaptures].sourcePort, packetsList[countOfPacketCaptures].destinationPort, packetsList[countOfPacketCaptures].packetMessage };
dgwPacketInfo.Rows.Add(row);