M
Marten Van Keer
Given two .NET applications A and B. These two application communicate with
each other by using an object C:
A --> C <-- B
Application A has a listview. This listview can be refreshed by pressing F5
OR externally by receiving an event from C.
C will raise an event when it receives data from B.
So, B sends a message to C. And C raises an event that is "catched" by A.
When A receives the event it starts a refresh of the listview.
My problem is: The "F5"-refresh in application A is very fast. The Exteral
refresh of Application A goes very very very slow... (the listview is filled
line by line)
Has anyone an idea why ?
each other by using an object C:
A --> C <-- B
Application A has a listview. This listview can be refreshed by pressing F5
OR externally by receiving an event from C.
C will raise an event when it receives data from B.
So, B sends a message to C. And C raises an event that is "catched" by A.
When A receives the event it starts a refresh of the listview.
My problem is: The "F5"-refresh in application A is very fast. The Exteral
refresh of Application A goes very very very slow... (the listview is filled
line by line)
Has anyone an idea why ?