Hello dears, I have made an application that can sends messages to multiple clients at a single send. It can also send message for a single user as well. When my remote application receives message, I am displaying a form and the rest of communication between the hosts will take place through their new windows. Problem is that when I receive message and open the form, the newly created form seems to be busy all the time. It's receiving my message but the window is white as if it's busy in some thing. Please help me regarding this problem
C#.Net Bug
Collapse
X
-
Tags: None
-
Sounds like your main GUI thread is busy... The main thread you have updates the user interface and handles windows messages. You need to ensure that it is left free (not tied up in waiting for user input etc.)
You should do this by listening for network data within a separate listening thread, and then your windows should update correctly.Comment
-
Comment