iqbal_delphidev wrote: > I am using to read some data from web using socket. > I want to display some animation during reading the data from web. But > as well as I issue the command to read data, the animation stops and > the application goes in steady mode till it finished the reading.
Do you mean your program hangs? > Note: > 1.I am reading the data in 1024 kb chunk. > 2.But it does not matter as usually I received only 50-200 kb at all. > How can I get rid of this situation? Either use non-blocking sockets or do the reading in a separate thread. -- Rob

