1
vote
5answers
119 views
How do I wait for a TTimer to finish?
I have a TFrame (fraDisplay) with a TTimer (timAnimateDataChange). The timer is used to control a small animation. In the form containing the frame I want to have a method that doe …
0
votes
1answer
36 views
Actionscript Wait For Asynchronous Event Within Function
Hello,
I need a little help with asynchronous events in ActionScript 3. I am writing a simple class that has two functions, both of which return strings(logic and code outlined b …
2
votes
5answers
167 views
Java - why are wait() and notify() declared on Object Class?
Hi Experts,
Please define why the wait() and notify() methods are in Object class and not in Thread class?
Thanx
0
votes
2answers
49 views
Flex Instantiated Object - wait for creationComplete
I have a simple component I created which I instantiate in my main program like so:
newMessage = new MessageDetail();
newMessage.body.text = "Hello World";
I receive the error " …
0
votes
3answers
108 views
How to wait for process child?
I do the usual fork + exec combination:
int sockets [2];
socketpair (AF_LOCAL, SOCK_STREAM, 0, sockets);
int pid = fork ();
if (pid == 0) {
// child
dup2 (sockets[0], STDIN_F …
8
votes
4answers
278 views
Why do all Java Objects have wait() and notify() and does this cause a performance hit?
Every Java Object has the methods wait() and notify() (and additional variants). I have never used these and I suspect many others haven't. Why are these so fundamental that every …
0
votes
2answers
69 views
(iPhone) how to wait a method to finished up, one of its arguments is calling selector..
I'm stuck with this problem, looks like multithreading one but I'm quite new to this kind of topics. I need some help form experts!!!
[Problem Conditions]
(1) Need to call a metho …
0
votes
3answers
140 views
Waiting for mouse input in Java Swing
I'm working on a Java Swing application. I have a button whose action runs a query on a database and then plots the results. These commands are performed from the listener on the …
0
votes
1answer
38 views
Waiting for a text change in WatiN
I am trying to test a web page that has ajax calls to update a price.
An ajax call is fired on page load to update an initially empty div.
This is the extension method I'm using t …
0
votes
1answer
27 views
WAIT in Transaction - Firebird
Hi all,
Can we set the index active when another transaction is in progress.
Will firebird wait till the other transaction completes its operation and the index will become inacti …
0
votes
3answers
430 views
How to get javascript in one frame to wait until a page has loaded in a second frame
I have two frames in a frameset - frame[0] contains a script that loads a page into frame[1] using
top.frames[1].location.href = 'http://some_location.com/page.html';
and then p …
0
votes
2answers
148 views
Show animation till an operation completes wpf
I want to show an animation wile an operation takes place... and when that operation takes the data and load my datagird i want to stop that animation like in ASP.NET using Ajax or …
0
votes
0answers
47 views
Better strategy for waiting for a modal window to finish?
I've got a custom ModalDialog class, which I've got working well in most situations. It returns its results via a delegate method, which then continues the app appropriately based …
3
votes
5answers
173 views
IllegalMonitorStateException on wait() call
I am using multi-threading in java for my program.
I have run thread successfully but when I am using Thread.wait(), it is throwing java.lang.IllegalMonitorStateException.
How can …
1
vote
5answers
1k views
Blackberry - Loading screen with animation
Is there a way to show "Loading" screen with animation in blackberry?
Options:
PME animation content
multithreading + set of images + timer/counter
standard rim api
so …
