0
votes
3answers
14 views
How to implement automatic properties in VS 2005 for a delegate callback
I'm attempting to get the TwainDotNet solution I found here (http://stackoverflow.com/questions/476084/c-twain-interaction) to compile, and I'm at my wits end.
This solution was obviously developed …
5
votes
2answers
94 views
Managing lots of callback recursion in Nodejs
In Nodejs, there are virtually no blocking I/O operations. This means that almost all nodejs IO code involves many callbacks. This applies to reading and writing to/from databases, files, processes, …
0
votes
3answers
44 views
beforeSend in $.getJSON
How do I use beforeSend callback in $.getJSON(cross domain).
More specifically $.getJSON is call is to a YQL service
Like
select * from html where
url=”http://www.yahoo.com”
0
votes
0answers
51 views
How to tell difference between python class and object? [closed]
Possible Duplicate:
How to identiy whether a variable is a class or an object
I have a function which accepts 'things' which it calls.
def run_it(thingy):
result = thingy(something)
…
0
votes
4answers
164 views
C# -Delegates and Callbacks
Does the term callback in the context of delegates mean ,"a delegate delegating it works to another delegate inorder to finish some task" ?
Example :(Based on my understanding,I have implemented a …
2
votes
8answers
389 views
Does using callbacks in C++ increase coupling?
Q1. Why are callback functions used?
Q2. Are callbacks evil? Fun for those
who know, for others a nightmare.
Q3. Any alternative to callback?
0
votes
1answer
28 views
ASP.NET UpdatePanel Javascript Callback
I came across this issue recently and thought it was really helpful. My question was, how would you call a piece of javascript after an updatepanel loads via AJAX in ASP.NET?
I needed to reinitialize …
2
votes
4answers
204 views
C++: static function wrapper that routes to member function?
Hi,
I've tried all sorts of design approaches to solve this problem, but I just can't seem to get it right.
I need to expose some static functions to use as callback function to a C lib. However, I …
4
votes
3answers
127 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, CallbackPtr …
0
votes
2answers
32 views
How do I set a model instance as invalid after validations are run but before it’s saved?
Hi.
I have a standard active record model with an attributes that is required:
class Sample < ActiveRecord::Base
has_many :colors
before_validation :grab_colors
validates_presence_of …
3
votes
2answers
86 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 duration in samples
…
0
votes
1answer
347 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 page, I can't seem to …
0
votes
1answer
76 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+ and libraries …
3
votes
3answers
147 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:
struct …
1
vote
2answers
56 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 name and userid …
