0
votes
2answers
21 views
jQuery passing variable strange syntax
I have the following two functions:
$(".content").click( function() {
var id = this.id;
$.get("InfoRetrieve", { theid:id }, addContent );
});
function addContent(data){
…
0
votes
3answers
37 views
How to pass a variable from a link to a jQuery function
I would like a jQuery function to know which link was clicked to call it, i.e. I would like the link's id value to be passed to the jQuery function.
Is this possible? If so what is the neatest way to …
0
votes
2answers
51 views
Ruby on Rails: Passing argument to singleton
I have a Rails app that repeatedly talks to another Web server through a wrapper, and I'd like to stick the wrapper in a Singleton class so it's not recreated for every request. Easy enough, I …
0
votes
4answers
73 views
Calling pointer-to-member function in call for a function passed to a template function.
This is the provided function template I'm trying to use:
template <class Process, class BTNode>
void postorder(Process f, BTNode* node_ptr)
{
if (node_ptr != 0)
{
postorder( f, …
0
votes
1answer
63 views
Modifying a structure array through a pointer passed to a function
I am trying to pass a structure array pointer and a pointer to a structure array pointer into a function and then have it modified rather than using a return.
This example code is indeed pointless, …
0
votes
4answers
81 views
Passing a structure by reference and manipulating it
typedef struct unit_class_struct {
char *name;
char *last_name;
} person;
int setName(person *array) {
array[0].name = strdup("Bob");
array[1].name = strdup("Dick");
return 1;
…
0
votes
2answers
101 views
passing primitive or struct type as function argument
I'm trying to write some reasonably generic networking code. I have several kinds of packets, each represented by a different struct. The function where all my sending occurs looks like:
- …
1
vote
1answer
71 views
Execute method with arguments through action mapping in struts 2
How would I execute a method with an argument in my model based on the URL? Ie, http://server/MyAction_Arg.action maps to MyClass.MyMethod(Arg)? I tried this:
<action name="MyAction_*" …
1
vote
4answers
132 views
Passing parameters dynamically to variadic functions
Hi there.
I was wondering if there was any way to pass parameters dynamically to variadic functions. i.e. If I have a function
int some_function (int a, int b, ...){/*blah*/}
and I am accepting a …
1
vote
1answer
67 views
Create a Mac Application Installer and Passing Arguments on Launch
Couple questions on creating a mac installer.
1) Should any frameworks from /Developer/SDKs/ be included/packaged into the application file?
2) When we normally launch the executable we pass it an …
0
votes
5answers
168 views
C Variable Scope Specific Question
Here is a particular scenario that I have been unclear about (in terms of scope) for a long time.
consider the code
#include <stdio.h>
typedef struct _t_t{
int x;
int y;
} t_t;
typedef …
0
votes
4answers
47 views
Passing variables from main form to input form
Hi
I have a simple question. I have a main form, and then a startup form from where I can select a new 3D model to generate. When selecting a new 3D model from the startup form, I want to check first …
1
vote
2answers
180 views
Passing a touch event to all subviews of a View Controller
I have a view controller which creates multiple subviews on top of it. All subviews and the view controller accept touches. How can i communicate the touch point information to all the subviews on …
5
votes
5answers
115 views
Hashes vs. Multiple Params?
It is very common in Ruby to see methods that receive a hash of parameters instead of just passing the parameters to the method.
My question is - when do you use parameters for your method and when …
0
votes
3answers
168 views
How Do I capture a variable (C#)
How Do I capture a variable?
Alternatively, can I store a reference to an object reference?
Normally, a method can alter a variable outside of it using ref keyword.
void Foo(ref int x)
{
x = 5;
…
