Tagged Questions
The freeze tag has no wiki summary.
9
votes
6answers
304 views
Eclipse hangs for 3-4 seconds before displaying a tooltip message
I've searched the Internet like crazy, however "WTP freeze" or "Eclipse freeze" yields so many different results that it's virtually impossible to find the right one. I have the following issue.
In ...
9
votes
1answer
503 views
WPF rendering freeze
I'm experiencing a GUI freeze problem, related to hard vs. software UI rendering.
The context : 2 WPF apps (.NET 3.5 SP1) running on a dual-display XP Embedded machine (DirectX 9.0c).
At some point, ...
9
votes
2answers
382 views
Parallel.For freezes after around 1370 iterations, no idea why
I'm running a Parallel.For loop on a little over 7500 objects. Inside that for loop, I'm doing a number of things to each of those objects, specifically calling two web services and two internal ...
8
votes
8answers
2k views
Python GUI Application redistribution
I need to develop a small-medium sized desktop GUI application, preferably with Python as a language of choice because of time constraints.
What GUI library choices do I have which allow me to ...
7
votes
2answers
3k views
In what scenarios does freezing WPF objects benefit performance greatly?
Many types in WPF derive from Freezable. It provides immutability to mutable POCO objects and, apparently, allows for improved performance in certain situations.
Has anyone found that freezing ...
7
votes
4answers
1k views
What's the point of freezing your Rails version/gems?
What does that mean?
In the instructions for a project, it said to "freeze the Rails gems". Is that different from freezing the Rails version?
What's freezing about?
6
votes
4answers
231 views
WPF Temporary Display Freeze
I have a standalone WPF application running on .NET 3.5. Every so often, the display simply freezes up for several seconds. This is most noticeable on screens where something is being updated often. ...
6
votes
2answers
469 views
DoDragDrop freezes WinForms app sometimes
I'm doing a Drag Drop to external app like this:
string[] files = new string[/* */];
// get files
DataObject o = new DataObject(DataFormats.FileDrop, files);
DoDragDrop(o, DragDropEffects.Copy | ...
5
votes
0answers
117 views
Why does a WPF app in a VM perform better than one running direct in the OS?
Ok Stackies... got a tough one for ya, or at least one that has us stumped for over a month now. We have a higher-end Win7-64 Dell precision workstation notebook with an i7, 8 gigs of ram, tons of hd ...
5
votes
1answer
2k views
Detailed explanation about Python's “freeze”
Is there anywhere a detailed explanation about Python's "freeze" thing? I saw the PyPi page, but I don't think it's comprehensive enough.
4
votes
1answer
179 views
animated gifs freeze in firefox 4.0 and above
I'm using jquery to preload an animated gif and later on inject a message with animated gif to the code.
it used to work fine until release 4.0 of firefox. since then only the 1st frame is
showed and ...
4
votes
1answer
123 views
Java Panel not updating completely occasionally
UPDATE - 21/09/2011
I have done an initial cursory review of the code and anywhere it looks like it's updating the user interface it's doing it via:
SwingUtilities.invokeLater(new Runnable() {
...
4
votes
4answers
194 views
Gui freeezing when using threading
I am stuck and was hoping someone could help me.
I have made a class/gui with a loading bar set to marquee so that when a task is being carried out i could display it to the user.
In one of my gui ...
4
votes
4answers
202 views
Delphi - how might I find out the source of long delays on resizing the main form? (solved)
I have a D2006 app that contains a page control and various grids, etc on the tabs. When I resize the main form (which ripples through and resizes just about everything on the form that is aligned to ...
4
votes
1answer
8k views
Android - Key Dispatching Timed Out
In my Android application I am getting a very strange crash, when I press a button (Image) on my UI the entire application freezes and after a couple of seconds I getthe dreaded force close dialog ...
4
votes
4answers
656 views
ASP.NET site sometimes freezing up and/or showing odd text at top of the page while loading, on load balanced servers
I have various servers (dev, 2 x test, 2 x prod) running the same asp.net site.
The test and prod servers are in load-balanced pairs (prod1 with prod2, and test1 with test2).
The test server pair ...
3
votes
1answer
155 views
pip freeze without dependencies of installed packages
When I do pip freeze I get the packages I've explicitly installed plus those packages that are dependencies of those packages.
For example:
$ pip install fabric
...
$ pip freeze
Fabric==1.0.1
...
3
votes
3answers
550 views
How to update DataGridView correctly, so GUI doesn't freeze
I have a backgroundworker, which does some calculations and reports progress result as string. This string needs to be inserted into dataGridView. But while inserting values, GUI freezes.
private ...
3
votes
1answer
753 views
Eclipse Helios x64 (Mac) - JSP editor hangs/freezes
I'm having issues with Eclipse Helios (3.6.2) x64 (32-bit, too) hanging/freezing frequently when I attempt to edit .jsp files using Eclipse's built-in editor (Web Tools, J2EE package). I've been doing ...
3
votes
0answers
523 views
Chrome freezes when playing videos from Rackspace cloudfiles
Can't seem to get chrome to play videos with html5 video tag when I host them on a Rackspace cloudfiles server.
Works perfectly on the regular hosting, but as soon as I link the video with the ...
3
votes
1answer
531 views
ANR in Canvas.native_drawBitmap
I've been receiving the same ANR reports recently.
The ANR happens when app tries to draw some bitmaps (when rendering a GridView with ImageViews as elements).
I've did a lot of debugging and can now ...
3
votes
5answers
525 views
Visual Studio 2010 Periodically Hangs for Several Seconds
I'm having a problem where VS2010 Ultimate is freezing up every so often for several seconds before returning to normal operation. This happens several times during a session, and is obviously very ...
3
votes
1answer
550 views
Android Camera Preview — How to 'freeze' the camera?
I'm currently trying to build an android application to take pictures and I need to freeze the camera preview on a given event (i.e. picture taken) and restart it only after another event.
What I ...
3
votes
2answers
3k views
Eclipse 3.6 freeze on autocomplete/quick fix
I have a problem that seems to come up both with autocomplete and quick fix. Sometimes when I use cmd+1 for quick fix dialog, Eclipse freezes and however long I wait (30 min at least), nothing ...
3
votes
1answer
271 views
Debugging ideas for a blocked Windows Message loop
I have a longstanding C# .NET 3.5 application 'freeze' which I am at a loss with. There are two C# executables. One has a full UI, the other runs as a tray app. They both communicate via WCF to a ...
3
votes
2answers
102 views
How do I freeze a Ruby reference?
I use Object#freeze to freeze the value of an object. I can write a function to deep-freeze a complex object structure. But neither will prevent me from assigning a new value to an object.
$O=cl()
...
3
votes
1answer
109 views
Django equivalent to “rake rails:freeze:gems” and “rake gems:unpack”
Is there and equivalent in Django to Rails' freezing and unpacking mechanism to a vendor directory so that an application becomes self-contained?
3
votes
2answers
162 views
Delphi 2010 freeze on start-up
I've set up trial Delphi 2010 for the testing. After some days it is started and freeze. I just can see web-page with "how-to-buy" and at the right side last edited project. But Delphi's window do not ...
3
votes
2answers
393 views
Win32: My Application freezes while the user resizes the window
I write a win32 application. I implemented the message loop myself like this:
bool programcontinue = true;
while(programcontinue)
{
while (PeekMessage(&Msg, NULL, 0, ...
3
votes
4answers
2k views
Delphi. Prevent controls repainting for a time
For example I disable runtime two buttons. After I disabled first button it bacame gray, the second - it also became gray. But I do not know how to make the repainting simultaneous! I need something ...
3
votes
2answers
388 views
WPF FontSize style hangs / freezes / stops responding
Right, so on my desktop the following very very simple code hangs / freezes when compiled and run on the framework 3.5
<Window x:Class="WpfApplication1.Window1"
...
3
votes
2answers
414 views
visual studio copy to clipboard IDE freezes
this is really frustrating me. this problem occurs when I have a particularly large .cs file (one i'm working on at the moment has 6000 lines and many anonymous types).
I will copy a line or a part ...
3
votes
1answer
1k views
Firefox [npapi] plugin development - firefox freeze when calling a method
I'm trying to learn how to write a Firefox plugin.
I downloaded the npruntime example from Mozilla compiled it and ran it.
Getting properties from the plugin worked well but when I tried to
call a ...
3
votes
4answers
2k views
Serial port WriteFile() freeze
I have a simple application, which should send a single byte to a serial port once a minute. But sometimes, from some strange reason, it freezes somewhere in the WriteFile() function. Both sw and hw ...
3
votes
3answers
2k views
Visual Studio Freezing/TFS Window Might be off screen
I am using Visual Studio 2005 with Team Foundation Server.
When I right click a file under the source control and choose "compare" VS appears to freeze until I hit escape. My guess is that the ...
2
votes
3answers
55 views
Active Updating During While Loops
Everytime I make code involving a while loop, the GUI freezes up, creating an infinite loop. I want to know how I can prevent this. Here is an example, where I try to make the loop conditional on the ...
2
votes
1answer
680 views
Freeze on SerialPort.Open / DeviceIoControl / GetcommState with usbser.sys
I have a C program which opens a handle to a COM port, writes some bytes to it, reads some bytes out, then closes the handle and exits. However, when I run the program like 10 times in a row, it ...
2
votes
2answers
198 views
Delphi: Form becomes Frozen while assigning strings in thread
A code below is in a thread.
Tf1 := TFileStream.Create(LogsPath,fmOpenRead or fmShareDenyNone);
...
str:=TStringList.Create;
str.LoadFromStream(tf1);
...
SynEditLog.Lines.Assign(str); // I do this ...
2
votes
4answers
1k views
Optimization of AndEngine game
I am using java + AndEngine in my game.
During the game i have some freezes, i looked for the information and found some steps how to optimize game performance:
Avoid GC (garbage collector) to be
...
2
votes
1answer
312 views
eclipselink jpa 2.0 with j2se swing application freezing hang
how to configure eclipselink to use it inside swing application to connect to a database sever directly inside workgroup environment . i am currently using this but my application is freezing after ...
2
votes
1answer
46 views
Freezing gems [closed]
Possible Duplicate:
What's the point of freezing your Rails version/gems?
What does it mean to freeze a gem (in Rails 2.3)?
And how do you do so?
2
votes
4answers
180 views
What causes a program to freeze
From what experience I have programming whenever a program has a problem it crashes, whether it is from an unhanded exception or a piece of code that should have been checked for errors, but was not ...
2
votes
1answer
312 views
MySQL fill the memory and freezes
I have problem with my MySQL server (Debian/Lenny). Sometimes MySQL daemon fill memory and pages are not accesible. Restart of MySQL daemon helps, sometimes I have to restart whole server (can't ...
2
votes
2answers
471 views
C#/Winforms App freezing/lagging
I have an Application in C#/Winforms that is basically used to run test for customers accounts in a specific order/setup. They are all tests run in browsers and so I built it so it would automate the ...
2
votes
1answer
218 views
Freeze Columns from right to left
I have a data grid in which I need to freeze the rightmost column.
It is no problem to freeze the columns from left to right with the FrozenColumnCount property.
Does anyone of you know how to do ...
2
votes
2answers
621 views
iPhone - UIScrollView and UIDatePicker scrolling conflict : the one interfer with the second
I have a UIDatePicker inside a UIScrollView.
But the UIDatePicker does not respond to scroll touches. It's the scrollview that is scrolling. Reading some docs on the net, I've set "Delay Content ...
2
votes
2answers
1k views
Hibernate/Spring: getHibernateTemplate().save(…) Freezes/Hangs
I'm using Hibernate and Spring with the DAO pattern (all Hibernate dependencies in a *DAO.java class). I have nine unit tests (JUnit) which create some business objects, save them, and perform ...
2
votes
2answers
500 views
VisualStudio 2010 freezes anytime I delete a file
Anytime I delete a file in VisualStudio, the entire thing freezes and needs to be ended from TaskManager. I was hoping someone could help me troubleshoot this (or at least point me in the right ...
2
votes
3answers
217 views
Objective C: App freezes when using a timer
It took me hours to figure out how to implement a timer into my program, but when it runs, the app doesn't load completely as it did before the timer.
In my main.m:
int main (int argc, const char * ...
2
votes
2answers
2k views
Ubuntu: Flash Videos in Fullscreen Freeze
I am using Ubuntu 10.10 on my IBM X200t. Installed is the standard flash player plugin for Firefox: (flashplugin-nonfree, 10.1.102.65). Everytime I switch a flash video to fullscreen, the video ...