Show animated wait window ,while processing request
Its a major problem faced while processing DB request else functions etc . The problem is when we perform command on database it takes time of few seconds, at that time my applications main window becomes halted. when i performs command on database execution returns on main application when whole command is executed on database. Just Like "NonQuery()" Lets assume we are working on asp.net 4.0 and sending request to view. i am showing a form before it and closing that form after the command, but problem is i am putting a GIF image on the form, because exection is halted on main application, the gif don't shows animation until the command is executed. so that i putted it on a BackGroundWorker, but main thread is halted so its child tread also become halt. we can not put database transaction in background worker, becuase sometime working is depended on result retrieved from database, and we want to halt application untill data is not fetched, but in this case ...