hanging

Why are SYSTEM and taskmgr.exe taking up 100% of my CPU?

I'm running 32-bit Windows 2003 R2 in VMware 6.0.3 on my Windows XP 32-bit host OS. I have run all the Windows updates, but haven't done any other tweaking. About once every hour (but not quite on a schedule) my CPU usage goes to 100%, slowing everything down for about 1 minute. When I can get taskmgr up, I see that usually a process cal...

How to create an all browser-compatible hanging indent style in CSS in a span

The only thing I've found has been; .hang { text-indent: -3em; margin-left: 3em; } The only way for this to work is putting text in a paragraph, which causes those horribly unsightly extra lines. I'd much rather just have them in a <span class="hang"></span> type of thing. I'm also looking for a way to further indent than ju...

Internet explorer hanging issue

I'm currently experiencing an intermediate problem with some inherited client side javascript. Every so often the users' experience a browser hang with the cursor becoming an egg timer and then the browser failing to respond. I'm having real difficulty in determining where the issue is arising from. Short of disabling large chunks of j...

IE hanging, using 100% of the CPU

I have a web application, which in the course of a normal interaction, hangs IE. By "IE being hung", I mean that IE doesn't respond anymore and using 100% of the CPU. The only to get out of this state is to kill the IE process. About the app: It loads only one page in the browser, communicates with a server with Ajax queries, and updat...

My VB.NET Website Hangs For A Long Time Then Displays Nothing

Okay, this is a weird issue that I've been having with a recent project I'm undertaking. Occasionally, my website will stop functioning and anytime an ASP page is accessed, the browser will hang for many minutes before bringing up a correctly formatted HTML page with nothing in the tag. It seems to happen whenever more than one person ...

SQL Server 2005 Restore Hanging

I have a database showing up in SQL Enterprise Manager as "(Restoring...)" If i do SP_WHO there is no restore process. The disk and CPU activity on the server is very low I think it is not restoring at all. How can I get rid of this? I've tried renaming the underlying MDF file, but even when I do "NET STOP MSSQLSERVER" it tells me t...

NHibernate's criteria.List() hangs when lazy property exists on entity

I've been getting some extremely bizarre behaviour where NHibernate queries start to hang. I've made a demo project that exhibits this behaviour in a repeatable fashion. You can download the project here Here's the offending code: public IList<Post> GetLatestLiveBlogEntries(int numEntriesToRetrieve) { var maxDate = Dat...

Hanging CruiseControl

Hi All, Here is the problem. Our cruisecontrol setup for continuous integration(V2.5 configured to work with subversion) works just fine - except on the days we need it most! Here is what I mean. I inherited the configuration from a former collegue, but as far as i can tell, the configuration has worked just fine for years now. But on c...

jqGrid loadin hanging problem

Hi all, I have problem with jqGrid. I am loading data from pagemethod, I have managed to serialize to json and display data, but jqGrid seems to hang on loading-I see 'loading...' title and rest of page is disabled, like jqGrid is in modal state...how to exit this state when I populate grid? thanx <<<<<<<<< solved..it was some nasty i...

Why does selecting text in a Command Prompt hang the running application?

We have an application that outputs logging info to stdout. However, if it is run in a command prompt window, you can use Mark to select text from the console. If you leave the text selected, the application just hangs and doesn't proceed, until you deselect the text (for example by pressing Enter to copy the selection into the clipboard...

NHibernate Hanging on Lazy Loaded Query

First of all, I'm using Fluent NHibernate with LinqToNHibernate. I've got a query to do a search on a table based on what data the user entered. So, for example, I'm doing something like this: 'build the initial query that we will filter--this is lazy loaded Dim results As IEnumerable(Of Customers) = Me.GetCustomers() ...

WPF - Random hanging with file browser attached behaviour.

Hi, I have an attached behavior defined thusly,.. public static class FileBrowserBehaviour { public static bool GetBrowsesOnClick(DependencyObject obj) { return (bool)obj.GetValue(BrowsesOnClickProperty); } public static void SetBrowsesOnClick(DependencyObject obj, bool value) { obj.SetValue(BrowsesOnClickProperty, valu...

Why does my Java code stop responding after an object declaration?

Hi. I've been working on a text-based RPG in java, just for fun. After spending many hours of tedious work writing almost a dozen classes for weapons, spells, cmbat systems, shopping systems, etc. I wrote a simple class to start and run the game. All it really does is display a main menu, and create an object which in turn creates every...

Silverlight async api's cause hangs and none-responsiveness

this code causes silverlight to hang. If I remove the ManualResetEvent code, nothing happens private ManualResetEvent mre = new ManualResetEvent(false); ... WebClient sender = new WebClient(); sender. += new OpenReadCompletedEventHandler(this.ReadComplete); sender.OpenReadAsync(new ...

App doesn't exit when main window is closed

I keep having this problem, solving it, and then when I implement new code it comes back again. It's driving me crazy! What I finally found was that if you instantiate a Window of any kind, even if you never call Show() or ShowDialog(), when you close your application, it will not terminate. So now I make sure to call Close() when app...

Why does my Berkeley DB concurrent data store application hang?

My application hangs when trying to open a concurrent data store (CDB) database for reading: #0 0x0000003ad860b309 in pthread_cond_wait@@GLIBC_2.3.2 () from /lib64/libpthread.so.0 #1 0x00007ffff7ce67de in __db_pthread_mutex_lock (env=0x610960, mutex=100) at /home/steve/ldm/package/src/Berkeley-DB/dist/../mutex/mut_pthread.c:318...

Dialog created after first becomes unresponsive unless created first?

After creating the initial dialog box that works perfectly fine, I create another dialog box when the Join Game button is pressed. The dialog box is created and show successfully, however I am unable to type in the edit box or even press or exit the dialog. Does anyone understand how to fix this or why it happens? I made sure the dialog ...

IE page redirect hanging

My app does a POST to my local server to create a new DOM element, comes back and should redirect to the same page with the new element. The problem is when it gets back from the server, the app hangs for almost 2 minutes before doing the redirect. I've isolated the issue to the fact that IE seems to have trouble with my tree structure...

OpenCv QT CvNamedWindow IplImage not working

I have problem with displaying Cam on QTLabel using openCV, Every thing is working fine . except one . I have to call function from open === cvNamedWindow() == in order for program to work properly . its displaying the webcam on the QLabel no problem but if i don't call the cvNamedWindow function then the program is just hanging its ju...

UIImagePickerController creation hangs for several seconds

I'm trying to show a UIImagePickerController after a button is clicked in an UIActionSheet. The code is straightforward. However, the call to [[UIImagePickerController alloc] init] is hanging for several seconds before it finishes. I don't see this behavior in the simulator, but am seeing it on an iPod and iPhone. Here are the UIActionS...