|
How long does windows wait before deciding a window is unresponsive and brings up the the unresponsive chrome? Just from anecodotal experience, I assume it is different in XP and Vista, as they are handled very differently by the DWM in Vista and the ...
Started by Kris Erickson on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
I will try to post a link is considered unresponsive (or hung) if it does not respond to Windows messages for five seconds and the user.
From the message queue before windows labels the app as unresponsive.
|
|
I make an application for querying from and inserting data to the database using ASP.NET 3.5 linq to SQL.
It works fine in the development server. But after deploying to the staging server, after the first few requests, the application seems unresponsive...
Started by Billy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Things I would start with:
Find....
What we could help with is debugging the application.
It's not easy to provide an exact cause since we have no idea how the application was written, what dependencies exist, whether service packs/patches are installed etc .
|
|
I want to benchmark some Javascript code in the browser, but it may trigger Firefox's "Warning: Unresponsive script" popup. This allows the user to click "Stop script" in the event that the browser is caught in a runaway function. While the pop-up is ...
Started by spoulson on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Http://www.sonofsofaman.com/hobbies/code/settimeout.asp
In firefox's address bar type about:config
You want to change dom... .
This will also allow a better progress indication.
You have to break up long actions into smaller ones and perform them in turns .
|
Ask your Facebook Friends
|
Hello. I have a C# application in which a LOT of information is being added to a Textbox for display to the user. Upon processing of the data, almost immediately, the application becomes very slow and unresponsive. This is how I am currently attempting...
Started by Jim Fell on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
I'd say your main problem ....
Try by having in memory a list with the content, and removing the first 50 elements by RemoveRange and then going with ToArray(); Like this :
lst.RemoveRange(0,50); textBox1.Lines = lst.ToArray();
It should be a lot faster .
|
|
Hello,
user selects an image (using fileOpenDialog) then I need to run 3 algorithms sequentially (output of one algo becomes input of another) on this image. so, I'm using background worker for running these algorithms.
After each stage I want to see ...
Started by claws on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
I suggest you use a BackgroundWorker for each algorithm and put... .
You can use the Dispatcher.Invoke to make sure some code that will upadte the UI will run on the UI thread .
A background worker's dowork will execute on another thread than the UI thread .
|
|
Does anyone have any performance tips or other help for local development with websphere and rad. I am using one web app of moderate size (1000? classes) and it is impossible to handle the app locally on a windows box. The websphere 6.1 configuration ...
Started by Berlin Brown on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Since that might not be an option, here are some other usual culprits, you can check:
How much RAM does your machine have? It's good to give WS 1GB of RAM but... .
I'm not sure about RAD7 but from my past experience, I'd suggest to give MyEclipse Blue a try .
|
|
I have the code below that i use to download a file from the HDD. The problem I get is that if I stop a download in the middle or after the download ends, the site becomes unresponsive. Any idea why? The environment is LAMP.
. . . // get mime type if ...
Started by Alex on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Does it become totally unresponsive? Unaccessible to other users? other browsers? I ask because.
|
|
Hello,
I have developped a PHP system that is using Javascript with the ExtJS library, which provides graphic components in Javascript. So I have a grid which is refresh every 3 minutes by an AJAX call which reloads the grid. Everything works fine on ...
Started by Amadeus45 on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Does the Firefox instance taht is giving you troubles have extensions that can cause things to run slower.... .
Divs with tables with divs and spans.
Well the EXT Grid is really a bad piece of Engineering when you look at the source code that it generates .
|
|
Running a business / being self-employed we all have to deal occassionally with clients who become unresponsive. E.g. you send them a UI mockup asking for feedback and all you get back is silence. You ask about some details about the feature in their ...
Started by Pawel Krakowiak on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
After few iterations, average responsiveness ....
If, after a while, they return to you and yell at you for not doing your job, explain the reason, politely yet firmly, and forget about them yet again .
You just leave them and forget about them.
You don't.
|
|
I have a small application to convert several file formats, with a main windows form which contains several text boxes, buttons, etc. I have another "Document" class which handles all of the actual conversion work, and my form essentially iterates through...
Started by pschorf on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
It allows you to update the UI thread with progress notifications so you can update your progress... .
You can drag it in from the VS toolbox.
The simplest solution is to have your processing done on a background thread using the BackgroundWorker component .
|