Windows Application Timeout

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,

I have a Windows Application in C# that has some long-running codes. When I
tried to run the program in debug mode, it eventually gave an error:

Timeout expired. The timeout period elapsed prior to completion of the
operation or the server is not responding.

How do I determine the cause? How do I increase the timeout limit of the
application?


wb.
 
Hello, WB!

W> I have a Windows Application in C# that has some long-running codes.
W> When I tried to run the program in debug mode, it eventually gave an
W> error:

W> Timeout expired. The timeout period elapsed prior to completion of the
W> operation or the server is not responding.

W> How do I determine the cause? How do I increase the timeout limit of the
W> application?

At first you have to determine what part of the application is giving timeout error.
Then answer following questions:
What kind of operation that was?
What is it doing to obtain timeout?

More description is needed for us to answer your questions.

--
Regards, Vadym Stetsyak
www: http://vadmyst.blogspot.com
 
Hi Vadym,

Thanks for the reply. I've resolved the problem. It was a threading problem.
I made some change in the design and it works fine now.

wb.
 
Back
Top