4
votes
3answers
92 views
How to implement a “callback” in Ruby
I'm not sure of the best idiom for C style call-backs in Ruby - or if there is something even better ( and less like C ). In C, I'd do something like:
void DoStuff( int parameter …
3
votes
2answers
45 views
play a waveform at a certain frequency in SDL callback function
I have a waveform 64 samples long. If the sampling rate is 44100 hz, how can I play(loop) this waveform so that it plays arbitrary frequencies?
frequency = samplerate / waveform d …
0
votes
2answers
34 views
how to insert into multiple tables in rails
Hi all,
i am trying to insert into multiple tables using rails..
i have a table called users and services.
when i create a user the user details should go into users and a service …
0
votes
1answer
154 views
Use Ajax() function in Jquery to load PART of an external page into div
I'm trying to load a DIV element from an external page into my current page using the Ajax/jQuery.ajax function. While I have successfully been able to load an entire external pag …
0
votes
1answer
46 views
Compiling GTK+ Application with G++ compiler.
I am writing an application in C++ with using GTK+ (not gtkmm) so I need to compile using g++ compiler. Is it possible to compile GTK+ applications with the g++ compiler? Are GTK+ …
3
votes
3answers
131 views
Cast between function pointers
Hello,
I am currently implementing a timer/callback system using Don Clugston's fastdelegates. (see http://www.codeproject.com/KB/cpp/FastDelegate.aspx)
Here is the starting code …
1
vote
2answers
31 views
Can I use a static (i.e., predetermined) callback function name when requesting JSONP with jQuery?
The jQuery documentation lists the following example of using $.getJSON to request JSONP:
$.getJSON("http://api.flickr.com/services/feeds/photos_public.gne?tags=cat&tagmode=an …
0
votes
1answer
43 views
Modifying Containable fields required in beforeFind callback?
In my CakePHP 1.2.5 app, I have a Profile model that belongsTo a User model. The User model has a username field, and when performing a find() on the Profile model, I want to alwa …
0
votes
5answers
56 views
How to execute a callback method instead of an anonymous method?
The following example works, but how can I change it so that instead of executing the anonymous method, it executes my existing callback method OnCreateOfferComplete()?
using Syst …
0
votes
3answers
151 views
jquery cannot use ajax response as context in IE
Hi there,
thank you for taking the time to read my question.
I have significantly rephrased my question after some new findings.
My problem is that in my ajax callback, when I s …
2
votes
2answers
92 views
Observers vs. Callbacks
Hey,
i thought about using observers or callbacks.
What and when you should use an observer?
F.e. you could do following:
# User-model
class User << AR
after_create :sen …
0
votes
1answer
65 views
catch variable in ajax success function to stop submit form
Hello,
I have a problem within this code.
I want to choose whether I will submit the
form or not based on the outcome off the ajaxcall.
If I hardcode it with return false; It s …
0
votes
1answer
18 views
WCF Callbacks services
Hi,
Just starting to look into WCF and came across the
WSDualHttpBinding binding.
I have used .Net remoting in the past, but it was not possible to have callbacks to occur when …
1
vote
2answers
322 views
Calling a Flex/AS3 Callback from Javascript
Hi,
I have a Javascript API, which should be usable with GWT and Flex. Using the FABridge it is really easy to call Javascript methods from AS3 and vice versa. But when I try to re …
1
vote
2answers
61 views
How can I communicate between two C++ MFC plugins?
I have a plugin for a c++ MFC app. I'm working with the developer of another plugin for the same app, that's trying to get notifications of events in my code. Both plugins are in …
