If 'background' means in response to a notification or alarm, then you are sharing the UI task. Are you doing a BLOCKING read on the socket, waiting for data? If so, then the UI task is blocked, and nothing else in the UI task will have time to work. Use non-blocking sockets, so you don't hog the UI task. If you expect more data, arrange to be called again at a later time, and give the UI task back to the foreground.
On 3/16/07, Durgesh Trivedi <[EMAIL PROTECTED]> wrote: > > when i m reading the data form the socket in the background at that time i > m not able to make any click event on my forms means in the four ground my > forms r stop response to me i m unable to do any thing on the form what is > the cause of that problem i don't understand > do anybody have any idea abt that please suggest me . > Thanks > -- > For information on using the ACCESS Developer Forums, or to unsubscribe, > please see http://www.access-company.com/developers/forums/ > -- [Jeff Loucks] -- For information on using the ACCESS Developer Forums, or to unsubscribe, please see http://www.access-company.com/developers/forums/
