Tagged Questions
The hanging-process tag has no wiki summary.
2
votes
2answers
123 views
How can I make sure a C# console program ALWAYS exits?
I've written a small C# console app that is used by many users on a shared storage server. It's runtime should always be < 3 seconds or so, and is run automatically in the background to assist ...
1
vote
2answers
91 views
UnitTest keeps hanging in Visual Studio 2010
I recently run into problems when running all my unit tests at once.
I can debug them and run my tests seperate without problems, but when running them all together, the test-run keeps hanging half ...
1
vote
5answers
70 views
javascript pausing consistently. How do I find what is causing it to pause?
I've got a fairly ajax heavy site and I'm trying to tune the performance.
I have a function that runs between 20 & 200 times, depending on the user.
I'm outputting the time the function takes ...
0
votes
1answer
49 views
WPF DataGrid Hangs UI when Refreshed
I have a datagrid that has several things where it has dropdowns checkboxes and several different templated columns it also has large amount of data. The problem here is i am setting the property that ...
0
votes
7answers
165 views
System.Timers.Timer delay hangs application
I have an issue with the System.Timers.Timer object. I use the timer object to perform a task at regular intervals. In the timer constructor I call the method doing the work ( DoTimeCheck() ), to ...
0
votes
1answer
181 views
.Net 2.0 & SQL Server 2008 Hanging Process
I created a simple .Net web service which runs a very simple query (which should normally be very quick). The query is something like this:
SELECT v.email
FROM dbo.Reporting r
INNER JOIN ...