0
votes
2answers
24 views
iphone : Passing objects between functions..
hi...
my code is like this
- (id)getViewControllerForManagedObject:(QIManagedObject *)object {
DataTableViewControllerReports *nextControllerReports = [[[DataTableViewControllerReports alloc] …
1
vote
1answer
38 views
Passing a C++ object with an Objective-C (Cocoa) event (performSelector)
How to pass a C++ object with the performSelector method? This method only allows you to pass 'objc_object*' objects, I can't cast them. I could build a wrapper, but I don't know the overall …
0
votes
3answers
60 views
JQuery: pass $(this).parent(); to method?
I have a simple script:
$('.expand').each(function(i){
var _Expand = $(this).parent();
ExpGroupBy(_Expand);
});
Trying to pass the <tr> of all <td> with the class 'expand'
However …
1
vote
3answers
56 views
Pass variable from image to next page
Hey I have dynamic image begin created with imagecreate(), and I have random values being produced, and I want to pass that random number, to a variable, and use that variable inside the page where Im …
0
votes
0answers
8 views
Pass Commandline param to a another file used in execution.
I have a file runContractExports.xml
which is as below
I set two parameters region and Env beforing executing this file.
Now I have a commandfile where i am …
0
votes
1answer
43 views
HLSL declaring a pass with angle brackets containing values..
In the directx post process sample the downfilter FX has the following code in it:
//-----------------------------------------------------------------------------
// Technique: PostProcess
// Desc: …
0
votes
2answers
231 views
How to pass Client Objects to WCF Service
Hello there,
I want to pass list of entitiy objects from Client to WCF Service,
but my WCF Service has no knowledge of the structure of these entity objects.
One way could be to pass them in an XML …
3
votes
4answers
356 views
C# How to pass a Generic class as a Parameter to a non-generic class constructor
Assume the following code (Please read my question in the code comments in the final class):
//This is my Generic Class
public class ClientRequestInfo<K, V>
{
public string Id { get; set; }
…
0
votes
2answers
616 views
Pass a parameter from one jsp to another using form.action
I have an ID that I need in the next jsp once the user click a button. I am trying to do the following:
FirstJSP.jsp:
function getSecond() {
var frm = document.getElementById("frm");
…
0
votes
3answers
1k views
How to pass a parameter from Batch file to a function inside a Powershell script
I have a Batch file which will call a Powershell Script :
BATCH FILE :
@ECHO OFF
powershell ..\PowerShellScript.ps1
The powershell script in turn has a function which expects a parameter :
…
1
vote
3answers
190 views
passing data from C++ to PHP
Hi,
I need to pass a value from PHP to C++, this I think I can do with PHPs passthru().
Then I want C++ to do something to that value and return the result to PHP.
This is the bit I can't work out, …
2
votes
5answers
227 views
Are arrays or lists passed by default by reference in c#?
Do they? Or to speed up my program should I pass them by reference?
3
votes
5answers
747 views
Pass a message to another exe from an exe C#
I have two exe running, c# console programs. From one, I need to tell the second exe to do something? How... ? I looked at
…
3
votes
4answers
1k views
C++ Passing a dynamicly allocated 2D array by reference
This question builds off of a previously asked question:
Pass by reference multidimensional array with known size
I have been trying to figure out how to get my functions to play nicely with 2d array …
0
votes
2answers
2k views
C - Pass by reference multidimensional array with known size
In main:
char *myData[500][9]; //dynamic rows??
char **tableData[500]={NULL}; //dynamic rows??
int r;
newCallBack(db, &myData, &tableData, &r);
and passing into function by:
…
