freeze

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 react on any mouse events. I've tried to reinstal and repair it. So... What I have to do? May be that project have bad files or some set...

C# application is freezing on vista/7, not on xp/2003 server

Hi, I wrote a C# application that is running well on my xp development machine. When my client is running it on different PC, it seems to freeze on both vista and 7 machines. I would like to know if there is any issue on running dotnet applications on vista/7. I compiled the application for both framework 2.0 and 3.5 but it didn't help. ...

How to make faster pushing a UIViewController into a UINavigationController

I have a multiple view based application, the problem is that when I push one UIViewController the device (only when I test it on a real device) freezes for a second or two, I don't know why is this happening since the pushed UIViewController has only one UITextField & a button. This only happens when the view is pushed the first time, a...

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

C# - for Loop Freezes at strange intervals

I am working on Problem 14 on Project Euler, and my code seems to freeze at random intervals for no apparent reason. static void Main() { int maxNum = 0; int maxLength = 0; for (int x = 2; x < 1000000; ++x) { int num = x; int length = 0; while (num != 1) { if (num % 2 == 0) ...

Java - Socket - Freeze

Hi, i've a minimal server which wait until a client connect ,then he start a thread which will send a reply back to the client, the problem is the reply. This is the code of the server: int port = 1234; ServerSocket servSock = null; servSock = new ServerSocket(port); while (true) { Socket link = servSock.accept(); ser...

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() $O.thorough_freeze $O[:file] = "makefile" # => TypeError $O[:commands][0] = "clean" # => TypeError $O = "reticulate" # => Typ...

App freezes while muting the phone

Hello, I am trying to toggle the microphone of Android mobile. App. freezes if I run the mute and unmute in a loop, With a delay of say 500ms. Is there a specific reason mobile behaves this way? (Motorola Droid is not even able to mute the phone) however all other mobiles are able to do it. This runs in a loop for 20 times audioService...

Mouse Scroll Weird Behaviour

Here one for the record. When working on my app and zooming in/out, the mouse scroll sometimes ONLY permits me to zoom out but not in.??!! I can move around by making bumping...yes...bumping either the top, bottom, right or left sides of the screen. Eventually, I clean the caches, force quits on XCode and Safari and then reboot. Some...

iphone app cant be started on device after being killed - works fine on simulator

Hello, I want to put an update to my App and I'm encountering heavy issues. When sent to background and being brought back to foreground, the App works fine. However, after killing the process from multitasking (running in the background), the App tries to resume from the point where it left AND it freezes, which means, I cant start the...

How to freeze gems in a Ruby application?

Hello, I am playing around with ruby and making my first desktop app. I have used 2 gems for my app and to make my "application" portable, I need to freeze those 2 gems and make my project refer to those gems from its project folder. I know many ways to do it on Rails, but how to do it manually in Ruby? Note: I am using jeweler using ...

App freezing after voice call

Hi, I've made an application that is pretty simple, it just lets the user capture a number and then saves it in a SQLite DB. Sometimes, not very common thing, when the user is entering the number to save in my app and he receives a call, answers the call, and then finishes it, the application is frozen after the call, can't do anything ...

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 appearing. Here is what gets printed in the log: WARN/WindowManager(88): Key dispatching timed out sending to package name/Activity WARN/W...

SetWindowsHookEx WH_MOUSE freeze on breakpoint in Win7

helos, on WinXP my application has been sucessfully using a global mousehook to retrieve mouseposition and clicks even if it does not have the focus. the hook is in a separate .dll and is being initialized like this (in delphi): SetWindowsHookEx(WH_MOUSE, @MouseHookCB, HInstance , 0); now on Win7 this basically also works during runt...

Iphone SDK: MPMovieplayer freezes

I have a "Zoom in" Animation Video that is played when switching from one view to a subview. When switching back to the main view, i tried to play the same video backwards like that: MPMoviePlayerController *mp; .... mp.currentPlaybackTime = mp.duration; mp.currentPlaybackRate = -1.0; but occasionally the video freezes at some poin...

Website spontaneously freezes in Chrome - how to debug?

I build this http://ipl.janstudt.de/ website which is supposed to run on the iPad (it does) and in Google Chrome. In Chrome (on Win 7 64bit), after a seemingly random time of a few minutes, the browser freezes. Also, sometimes when I click the "Reload Page" button in Chrome while on this site, the Browser also freezes. In both cases, the...

Porting Rails 2 application to new server

I've posted a couple other questions during this process, but I have a better idea of what I'm trying to do so I thought I'd ask about that. I've inherited a Rails 2.2.2 application, which is currently running in production form on a server I have access to. I'm trying to port that application over to my server, version control, etc. I ...

C# Wav File Playing freezes GUI

Problem: The wav files plays, but GUI does not respond at all. The lbl_PhonoString.Text is not updated every loop. User cannot pause or cancel until all the files are played completely. I know I have to use a seaparate thread to play the Wav file. I am not at all familiar with threading. Can someone suggest what I should do here? My Co...

GridView : Freezing First Columns and Freezing Column's Headers

Hi any body can tell how to freeze gridview Header and some two colums based on axis there fore a gridview should have both vertical and horizontal scroll so that when scrolling vertically need to freez the header and when scrolling horizontally freeze the columns. ...

Repeating MediaPlayer freezes application

Android Question. public void myClickHandler(View v) { switch (v.getId()) { //opens switch test case R.id.SoundOneButton: asoundfilenumber=0x7f040001; break; case R.id.SoundTwoButton: asoundfilenumber=0x7f040002; break; case R.id.SoundThreeButton: asoundfilenumber=0x7f040003...