freeze

Java GUI, need to pause a method without freezing GUI aswell

I know that this problem is caused by the sleep or wait calling on the main thread and that the answer on how to solve this will be to put the method into a seperate thread and then make that thread sleep. But the code is a mess and don't really have the time to sort it out and split it up into separate threads and was wondering if there...

`svn -u status` hangs when connecting to server but only for me!

I've checked out two repositories with svn and they both have some odd behavior when using commands like svn -u status. That command in particular will hang, and top says the process is sleeping. I can check out and update those repos (usually), but this in particular will hang until I kill -9 it. It doesn't happen on anyone else's compu...

constant visual studio freeze after generating asp.net datasets

Using c# asp.net webforms vs2008 I have a constant problem When i have created a webforms page, then i create a sqladaptor in the component designer area. Then i right-click the dataadaptor to auto create a dataset. Most of the time the dataset is created ok and included automatically to the solution. BUT.... every single time, withou...

WPF Application Hang

Hi, I'm using Windows 7 Professional (x64) and having installed .NET 4.0 RTM on my machine. Since 2 days I'm noticing that every WPF application that I'm trying to run hangs and becomes non responsive (a not responding text is appended to it's title bar) and it's painted white. There is no info regarding any exception, no error messag...

C# program freezes without breakpoints

Hi, I'm implementing a program which gets text from various sites and checks which ones are most relevant to a query. The problem is that when I have breakpoints in my code it works perfectly well but without it, the program just freezes. Is this a memory issue? What can I do to solve this please? THanks ...

Python + PyQt program freezes

I wrote PyQt application. After it's start I close it (GUI), but timer don't stops and Python sometimes freezes. Only thing to unfreeze it - Ctrl-C, after which following message appears: Traceback (most recent call last): File "", line 262, in timerEvent KeyboardInterrupt timer don't stops again, ...

Firefox extension is freezing Firefox until request is completed

For some reason the function is freezing along with firefox until it fully retrieve the stream from requested site. Is there any mechanism to prevent freezing, so it works as expected? in XUL <statusbarpanel id="eee_label" tooltip="eee_tooltip" onclick="eee.retrieve_rate(event);"/> Javascript retrieve_rate: function(e) { ...

-How can I "preload" the Google Maps API in a FLEX 3.5 TabNavigator Tab ?

Hello, I have a Flex 3.5 Air Application; The main window has, besides the header, a TabNavigator. In a Tab, I've put a Google Maps object. It works fine, except that it "loads" very slow and the whole application freezes ( not responding problem ). Now I would like to fix that but don't really now how to implement one of these soluti...

Why does Windows Explorer search freeze when I have an unrelated program paused in a debugger

While debugging my program, whether it's an ASP.NET application or a .NET console EXE and I have the debugger paused at a breakpoint I try to find a file in Windows Explorer. Either pressing WinKey+F or selecting search from the context menu freezes Windows Explorer - until I resume the program being debugged. My program has nothing to ...

C# language: How to freeze listview control in windows form?

hello, i need to freeze certain columns in listview so when the user scrolls horizontally the frozen columns will not be affected (like in excel) but there is no frozen(bool) property like that in datagrid. Can this be done in listview control? Thanks ...

Freeze Table Header with Microsoft Expression

I am using the below code to achieve the results. The scenario is working fine with single DIV on the page. But when i am adding one more DIV to the page, then problem comes into picture. Find my HTMLcode @ http://docs.google.com/Doc?docid=0Adbmqz8tzPkZZGQ3cjQ5YnJfM2c2NTZkc2Nk&amp;hl=en When i scroll first DIV, the header of second DIV...

CSS: Freeze table header and first column, *but only on certain axes*

Hello all, I have a variation on a common question, and I'll try to explain it as best I can. It may take some visualization on your part. I have an HTML table (in reality there are tables within tables within divs within tables -- I'm using the JSGantt plugin). I'd like for the table header to be frozen only when I scroll down on the y...

Where is python freeze utility

I just installed python 2.6 on my mac, mainly because I couldn't find freeze in my 2.5 distribution. I am wondering where freeze is. Is it even installed at all in the mac distribution? ...

Program occasionally stuck when writing to ldap

hey guys, I have 2 databases for my program : mysql and ldap. All transactions happen to mysql, but i need ldap to connect to ip-phones. There's an option to synchronise the ldap database. So when the ldap is brand new, and mysql contains like 200+ records, it may want to update. But when inserting all those entries, it "freezes". It ne...

WPF debug freezes computer with windows 7 64bit

Hello, I am using visual studio 2010 on Windows 7 64bit. I compiled and ran a simple application basically a thing a child could make. Well the second it started to run, it froze my computer and rendered it unresponsive. It continues to do this every time and for every application. Any ideas why this is happening? ...

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...

delphi app freezes whole win7 system

Hello i have a simple program that sorts a text file according to length of words per line this program works without problems in my xp based old machine now i run this program on my new win7/intel core i5 machine, it freezes whole system and back normal after it finishes it's work. i'v invastigated the code and found the line causing ...

BackgroundWorker might be causing my application to hang

I have a Form that uses a BackgroundWorker to execute a series of tests. I use the ProgressChanged event to send messages to the main thread, which then does all of the updates on the UI. I've combed through my code to make sure I'm not doing anything to the UI in the background worker. There are no while loops in my code and the Back...

Win32: My Application freezes while the user resizes the window

Hi ! I write a win32 application. I implemented the message loop myself like this: bool programcontinue = true; while(programcontinue) { while (PeekMessage(&Msg, NULL, 0, 0, PM_REMOVE)) { TranslateMessage(&Msg); DispatchMessage(&Msg); ...

How to block UI in IPhone

Hello A simple question: how can I block UI thread without using sleep? Just to be clear: I understand that UI will freeze for user, but that's the idea... Can I run empty RunLoops? Any other ways. thank you ...