freeze in programming refers to a condition where in the concerned code or system becomes unresponsive.
Questions tagged [freeze]
2970 questions
1
vote
1 answer
Telerik radcombobox is Causing Chrome Browser to Freeze
I'm using a telerik radcombobox inside an updatepanel which is inside a radpageview of radmultipage.
Hierarchy Example (not actual code):
…

Michael R
- 1,547
- 1
- 19
- 27
1
vote
3 answers
How to avoid a thread freezing when Main Application is Busy
I'm having a bit of a problem. I want to display a progress form that just shows an animation on a when the main application preforms heavy operations.
I've done this in a thread and it works fine when the user isn't preforming any operations. But…
Brian Andersen
1
vote
1 answer
App hangs when executing the query in prepared statement
I am trying to select rows which are older than 7 days from current date. Database used is DB2 version 9.
Can you please tell me how exactly can I use the datetime in the query? The date table field is of type timestamp.
I am able to manually run…

smiley
- 491
- 3
- 14
- 36
1
vote
0 answers
MSXML causes virtual memory exhaustion and eventually the app hangs forever
we are having issues with MSXML,
we have an app (developed in c plus plus as isapi extension (which means multithreaded requests)) which is continously hit by requests to loads and parse xmls. (if overloaded with lots of xml files to load and…

user2489213
- 11
- 1
1
vote
0 answers
c++ Program hang when calling a function from dll
There is a simple program to perform http requests and receive responses. The program works as expected:
#include
#include
#pragma comment(lib,"curllib.lib")
int main(int argc, char *argv[])
{
CURL *curl_handle;
…

Dmitriy
- 161
- 2
- 12
1
vote
0 answers
IOS 6 - NetConnection Close Issue
http://forums.adobe.com/thread/1070996
same error occurred in iPhone4(ios 6.1.3) and AIR SDK 3.7.
I attempt to close netconnection to the wowza server the app freezes and
can't control anything( only back push device home button).
adobe forum says…

samohan
- 109
- 2
- 9
1
vote
2 answers
Windows Phone XNA Games Hangs on Resume when Guide is Visible on WP7.x
My Windows Phone XNA game calls Guide.BeginShowKeyboardInput to get the user's name. While the Guide's input screen is shown, if the user presses the Home or Search (hardware) buttons, the game is deactivated as usual - but if the user then presses…

Dan Colasanti
- 192
- 9
1
vote
1 answer
Calling a python function in the background
Question
I need to be able to call a function in the background without it freezing the console. I have experience with multithreading, but I would prefer if it completed tasks in order. What's the best way to do this? Example code is greatly…

Jamus
- 865
- 4
- 11
- 28
1
vote
0 answers
Hang reading a serial port with Python and pyserial
Correction -- I'm using the first tty -- not 5 as the old version stated.
I'm in the process of writing a program to allow a TS-4200-8160 embedded arm computer to respond to serial data. My first step is to log some serial data. So I have been…

userX
- 305
- 2
- 15
1
vote
2 answers
CutyCapt freezing
For my new application I want to serve screenshots of websites. I have a list with over 1 million domain names.
Right now I created a little php script and run this in a screen from command line. It works well but the script is hanging sometimes…

directory
- 3,093
- 8
- 45
- 85
1
vote
4 answers
How to make a thread not freeze you whole JFrame. JAVA
Hey i just need a question answered...
How would i make the following code not freeze my whole JFrame?
try {
Thread.sleep(Integer.parseInt(delayField.getText()) * 1000);
System.out.println("Hello!");
…

user2413200
- 245
- 3
- 7
- 12
1
vote
2 answers
List Box Hangs after adding several Entries
I'm using winforms in c#.
I simplified my app so that it just has a ListBox and a Button.
Here is my button click event:
private void button1_Click(object sender, EventArgs e)
{
for (long i = 0; i < 66000; i++)
{
…

hrh
- 658
- 1
- 14
- 24
1
vote
2 answers
LINQ stopped working after upgrade to VS 2010 and .NET 4.0
I have started using Visual Studio 2010 recently. I have upgraded my solution from old 2008. After this I have tried to run my project, which is very simple database search engine using linq commands and it worked. Then I have switched to .NET 4 and…

Jan Hruby
- 1,477
- 1
- 13
- 26
1
vote
1 answer
deleteRowsAtIndexPaths freezes the UITableView
I've got an UITableView with Core Data.
When I insert new records or update an existing record everything goes well and the UITableView updates automatically, but when I delete a record the UITableView freezes until the UIView is reloaded.
Does…

robbert0
- 11
- 4
1
vote
3 answers
for(;;) loop makes my applet unuseable
Here is my loop class:
public class Timer {
private Timer timer;
private static boolean isRunning = true;
public static void gameLoop()
{
while(isRunning) //the loop
{
try {
Main.cash--;
Thread.sleep(2000);
…

Dave
- 11
- 2