parameter-passing is the process of assigning values to the parameters of a function
0
votes
0answers
5 views
Passing information to another GSP
I have been trying to figure out how to pass values from a previous gsp page list.gsp to my other gsp page confirm.gsp. I'm trying to pass all the values from list.gsp to confirm.gsp with the same ...
0
votes
1answer
12 views
Need to pass object from child to parent Class in ExtJS
I am new in extJs. so I need some help for pass object from Child component/class to Parent. My code is given below.
My parent class is
Ext.define('My.Parent', {
extend: 'Ext.panel.Panel',
...
0
votes
3answers
20 views
passing values string values to an object and recieving a string in return in ios
Hi a very simple app it takes in 2 arguments via 2 text boxes, and then totals them and displays them in a label called result. The idea is to have it handled via an object called brain, for which in ...
2
votes
3answers
23 views
How to keep parameter list in a variable
I have a script internal.ps1 which accepts certain params:
param ($paramA, $paramB)
Write-Host $PSBoundParameters
And a script caller.ps1 that calls it:
.\internal -paramA A -paramB B
It works ...
0
votes
1answer
34 views
php function with optional parameters using stdClass
Suppose, I have a function such as: [$data is a stdClass()]
function test_1{
...
...
if (somecondition){
$data->name = NULL;
test_2($data->name);
}
else{
...
0
votes
1answer
40 views
Parameters to factory method in C
I need to create an instance of my abstract data type, but creating the instance needs some parameters. Now, how should I pass these parameters to the function? There's a lot of parameters, and I ...
-5
votes
0answers
25 views
passing parameters from jsp to java side [closed]
we have a spring+struts project.My question is how can i pass parameter from jsp pages to java side? I wrote down the technologies so that maybe an easy way to pass parameter exists.Also we use ...
0
votes
1answer
45 views
How to pass a paramater to the next GSP
I have the below controller which redirects to another controller's action save()
class DaController {
static allowedMethods = [save: "POST", update: "POST", delete: "POST"]
........
def save() {
...
1
vote
2answers
40 views
(C++) Use other class' object as parameter in a class when two classes use each other's object
My title sounds a little weird...
But my question is...
class A{
public:
doSomething(B & b);
}
class B{
public:
doSomething(A & a);
}
is this not supposed to work??
I get errors ...
0
votes
6answers
64 views
Parameters passing in Java
I have a Long object in a class, I give it a value and then I pass it to another class' constructor, where it is changed. Why are the changes NOT visible in the first object?
The code:
public class ...
1
vote
1answer
117 views
passing a function with an arbitrary amount of parameters
I've recently been learning haskell from this awesome site, and I just learned about passing functions as parameters in the Higher Order Functions chapter. I can see how passing functions as ...
0
votes
0answers
14 views
Args4j Parsing Seperator
I am using Args4J to parse parameters passed to my Java program. What we usually do is pass in parameter as myjar.jar -n bob -a 16. I am wondering how to parse something like myjar.jar -n=bob -a=16 in ...
0
votes
0answers
13 views
jdbc jsp: paremeter passing redirect
I have a search.jsp in which I enter a number to find an album and it's artist. If that number exists I use
<jsp:forward page="change.jsp">
<jsp:param name="artist" value="<%= ...
0
votes
1answer
19 views
Relative Path for SSRS Image File Parameter
I am trying to send an image file path as a parameter in ssrs
When I send parameter as
File:C:\Reports\Images\Banner.jpg
it works, the image shows up
But when I try to use a relative path like
...
0
votes
0answers
13 views
jsp and database: variables and strange redirect
I have a search.jsp file in which I can search for bands and albums. if there is a band with that particular album in my database I want to get all the album information out of the table (year, genre, ...
3
votes
1answer
30 views
Pre-apply parameter to javascript function and use that as an object to send into another function
I have one complex function. I planned to send a function into it.
function ComplexFunction( customFunction : function)
{
//Complex things
customFunction();
//Complex things
}
But the ...
0
votes
0answers
6 views
parsing json via jquery does not read/pass all strings
I have this json file with callback
jsonHydro({
"categories": [
{
"producerName": "Canon",
"productName": [
{
"kamera": "EOS 5D Mark III",
...
0
votes
1answer
32 views
Passing dynamic data JQueryMobile
Ok I really need some help with this thing I'm testing. I'm trying to create a test phonegap app with JqueryMobile and I have the following question.
I'm creating a multipage jquery template
On the ...
-1
votes
6answers
49 views
C# Console application wont run
Im trying to change my application to a console application. I want it to work so that if one parameter is passed method 1 is executed and if no parameter is passed method 2 is executed.
From the ...
1
vote
1answer
34 views
javascript sorting jquery
I am doing i a lot of sorting and currently doing it like this:
function sortby(a, b, prop) {
if (a[prop].toLowerCase() > b[prop].toLowerCase())
return 1;
else
return -1
}
...
0
votes
0answers
11 views
How can I pass symbolic linked file path parameter to Wine programs from a bash script?
I made a very short bash script which start Virtualdub with Wine, and it can get a parameter too, the name and path of a video file. My script, called "vd" (it is placed in /usr/local/bin and chmodded ...
0
votes
0answers
33 views
How to pass a HWND to my graphics class to create a graphics device
Ok. So I'm trying to make a small framework to work with graphics before I move to VS 2012.
I can already make the window appear and I've even created a graphics class, but when I try to pass a HWND ...
0
votes
1answer
53 views
EXTJS grid store load - adding parameters?
I'm in the process on converting an asp repeater into an EXTJS grid. Above the repeater is a dropdown and a radiobutton list. The dropdown selects which clients' data the repeater shows, and the ...
0
votes
0answers
20 views
SQLite error - parameter substitution
I'm getting an error in this code that completely baffles me, any help, ideas, suggestions are appreciated.
I have the following code in place:
Sub addauthorsearch(ByVal objconn As ...
1
vote
1answer
46 views
Accessing inner variables of parameter pack in C++
Is there any simple method for accessing inner members of whole parameter pack? Lets say you have following code
#include <iostream>
class A {
typedef int type;
constexpr static type C ...
0
votes
1answer
43 views
Pass a DataTime parameter to stored procedure and check a condition
assumption:
I need to sync a 'PublicDB' from a 'PrivateDB' database. Where two parameters should pass to stored procedure, server name and a datetime type parameter.
HistoryDate is not primary key ...
2
votes
1answer
34 views
java set of code does not execute
I have a java code in which parse method returns an array to main method. This array is passed to OutputFilter method of Parsedanalysis class. But the OutputFilter method is unable to use this array. ...
0
votes
4answers
126 views
“std::string” or “const std::string&” argument? (the argument is internally copied and modified)
Consider this code:
void doSomethingWithString(string& mString)
{
// mString gets modified in here
}
string getCopy1(const string& mString)
{
string result{mString}; ...
1
vote
1answer
70 views
Why are varargs and arrays sometimes incompatible?
there is a method like this:
tableHeader(final String first, final String second, final String third, final String... headers) {
I think I should be able to call the method like this:
...
-4
votes
5answers
93 views
How to pass a value to an activity from another WITHOUT starting it?
I want to pass a value from activity A to activity B without actually starting the activity B (therefore this rules out the use of Intents and putExtra). The activity B may or may not be started but ...
0
votes
0answers
51 views
Pass parameters between Dialogs and store state
i´m confronted with the following problem which I guess must be a common one.
For my Java class at university I have to implement a simple Desktop application with Model View Controller architecture.
...
0
votes
3answers
56 views
Python Temperature Converter
I'm working on a python temperature converter. It will convert Fahrenheit to Celsius and vice versa. I haven't added the if statements yet, or the Celsius to Fahrenheit function yet. But I'm having ...
0
votes
1answer
28 views
Parameter passing to function handle
I have a function and I want to each time change its input and integrate over a certain interval. For example, I first write an m file:
function y = myfun(x)
y = 1 ./ (x.^3 - 2*x - 5);
Now I ...
0
votes
1answer
40 views
“Hardcode” passed variables from JQuery/Javascript into a PHP file
I am creating an E-mail Reporting System to send scheduled e-mails (daily, weekly, etc.) with the results of certain SQL queries.
I have one HTML & JQuery page, generate.html, containing a form ...
0
votes
3answers
81 views
C# using reference parameters [duplicate]
reference parameters is only useful for valuetypes?
for example if you have a method that passes in a class, the ref keyword is useless?
public class someclass
{
}
somefunction(ref someclass ...
0
votes
4answers
74 views
Pass a variable to other class
I have a problem with passing int variable to another class. I've tried many methods of passing this variable but none have worked. Help me pass variable randomNum from MainActivity to ...
1
vote
4answers
39 views
Passing many variables from PHP back to a form
I have a form that submits many different fields filled out by the user.
A PHP page receives the form and checks if all fields are filled. If one of them is missing, it should return to the form and ...
0
votes
3answers
36 views
passing parameter optimization in java
does it matter in java which parameters I pass to a method? For example, I have some methods for validation. Let's say I have a class Person holding personal information and one method in another ...
1
vote
1answer
17 views
pass argv[] from main to other class
Hi I have a question about passing argv[] value to the other class. In my code, I want to pass the argv[1] parameter from cmd to the class mainWindow to trigger spacific event. Here is the code. ...
0
votes
0answers
20 views
Passing Params to Wufoo iframe
Ok so there are tons of examples on how to pass custom parameters hidden fields in Wufoo forms (in my case the current URL of the form). The problem is these all deal with the javascript embed code. ...
-1
votes
1answer
28 views
Passing parameters through events
I have multiple classes in multiple projects, these classes have access to each other through a mediator class.
Whats happening at the moment is that Class A, fires and event, it is handled by a ...
0
votes
2answers
26 views
What is pass-reference-by-value?
I came across this yesterday and was wondering what the relationship of pass-by-value, pass-by-reference and pass-reference-by-value is. How do they all behave? Which programming language uses which?
...
0
votes
1answer
44 views
Pass a custom _form text field parameter to a second page Rails
I need to pass parameters from a form with values not in the database (so the form will have parameters only to be used by that page and never again). Upon the submitting of the form, I want to pass ...
20
votes
3answers
322 views
How are C++11 lambdas represented and passed?
Passing a lambda is really easy in c++11:
func( []( int arg ) {
// code
} ) ;
But I'm wondering, what is the cost of passing a lambda to a function like this? What if func passes the lambda to ...
1
vote
1answer
38 views
Passing arguments from one controller to another in ruby on rails
I want to pass an argument from one controller to another in rails.
This is first controller:
def create
@grouptorepo = Grouptorepo.new(params[:grouptorepo])
if @grouptorepo.save
fileUpdate
...
2
votes
1answer
25 views
Change textbox depending on boolean parameter choice in SSRS
I have a report that holds two tables, one is for a Detail report and the other a Summary report. I've set it where if the Summary paramater (a boolean) is set to true then you only see the Summary ...
0
votes
3answers
46 views
Issue using .sql command in resource file
Im trying to store my sql statement in .sql files in a resource folder,
I need to pass in 2 values to the sql command but im having difficulty doing this
my sql is as follows:
SELECT * FROM ...
0
votes
1answer
30 views
Understanding the parameter passing issue in programming languages
I am trying to find out exactly what are the parameter passing methods. What they do, what are their differences... I have the following subprogram:
subprogram p(x)
a[1] = 6;
element = 2;
x ...
0
votes
2answers
58 views
Paramater passing with text in C++
O have an assignment in which I must create a function to prompt a user for a filename and pass the input back to main. I must pass it as a parameter (I'm assuming this means pass-by-reference.) I am ...
0
votes
2answers
66 views
passing a parameter between two QWidget forms in QT
I'm new to QT and i'm trying to pass a parameter between two forms but i'm not able to do that ..could anybody help me please by giving me a simple example of passing a string constant "parameter" ...






