Parameters are a special kind of variables, used in a subroutine to refer to one/more of the pieces of data provided as input to the subroutine
0
votes
2answers
23 views
Declaring a parameter in html and receiving it in Javascript
My js function goes like this:
function tester (message) {
alert(message);
}
And in the markup I have:
<a href="#" onclick="tester(text to show);">Link</a>
But it doesn't work. ...
0
votes
2answers
11 views
sql union same parameters for two where = how to change it to one parameter
I have this query
select last_name, job_id, department_name, country_name, hire_date
, sysdate, salary
from employees e
, departments d
, locations l
, countries c
where ...
2
votes
1answer
29 views
Method with variable arguments followed by non-varargs
I get that you can do something like this:
+(id) objectWithItems: (NSObject *) item, ...;
However I was wondering if it was possible to do something like this (I cannot get this to compile):
...
3
votes
0answers
20 views
PHP - db2_bind_param Describe Param Failed
The Code
$options = array('autocommit' => DB2_AUTOCOMMIT_OFF);
$stmt = db2_prepare($connection, "CALL LABLIB2.AR0011CL('?','?','?')");
$connection = db2_connect ( AS400_DATABASE, IS_USER_NAME, ...
0
votes
0answers
5 views
.Net How to prevent DataTable returned to event subscribers from being changed by them to guard against iteration problems
I have a publisher class that needs to provide periodic data updates to 2+ subscribers.
I made an event that returns a datatable with the latest copies of the data.
My worry is that the same object ...
-3
votes
1answer
30 views
Browser doesn't include parameter when clicking on hyperlink [closed]
I have a hyperlink like this in my mvc site: https://www.somesite.com/folder/parameter
When clicked, a new window should open and the address bar should say ...
0
votes
1answer
11 views
Spring Roo @RooJpaActiveRecord parameterized the JPA table catalog
I need a why to change the JPA catalog element in my java class? We have many database environments which we need to be able to deploy our application too. Example: In your dev environment we have a ...
0
votes
0answers
25 views
JasperReport API: createReport returns null because of html component
I have a problem with JasperReports API.
I add html component into my report (via iReport designer 5.0.4). Compilation to jasper file runs without errors.
When I try create the report I get null ...
0
votes
1answer
13 views
Basic Syntax for passing a Scanner object as a Parameter in a Function
Here is what I wrote which is pretty basic :
import java.util.Scanner;
public class Projet {
/**
* @param args
* @param Scanner
*/
public static void main(String[] args) {
...
0
votes
3answers
21 views
method cannot be applied to given types
In my program, i'm trying to call the throwDice method in a different class.
public class SimpleDice {
private int diceCount;
public SimpleDice(int the_diceCount){
diceCount = ...
2
votes
2answers
44 views
struts 2 action with no setter getter
I would like to create an action class with no setter and getter on properties for the data coming from the user interface. Instead, I would like to use ...
0
votes
1answer
43 views
SQLValue returning error
I am trying to read a SQLValue into an object property however I am receiving an error of "String not in correct format" The "ModifyBy" property is set to allow nulls. Here is the code that is ...
0
votes
0answers
12 views
Add metering area or focus area in android via Intent
i made a camera application to capture an image on android and i access the camera via intent. I want to know if i can add a focus area or a metering area to this application with intent and not ...
1
vote
0answers
21 views
Using a servlet to handle both multipart and normal requests
I am developing a web application using servlet API 3.0 and AJAX. I've developed and tested locally (using run-jetty-run in Eclipse) and it seems to work fine. When I deploy to my Tomcat7 instance, ...
1
vote
1answer
35 views
Passing a url param to a search form
Exact problem: Trying to pass a param from the url to a search box destination page.
The param is "subid" this way:
http://www.domain.com/?subid=3456
and the current (non working) search form code ...
1
vote
6answers
46 views
(Python 2.7) Use a list as an argument in a function?
So I'm trying to learn Python using codecademy but I'm stuck. It's asking me to define a function that takes a list as an argument. This is the code I have:
# Write your function below!
def ...
-2
votes
0answers
42 views
PHP passing variable amount of parameters to an anonymous function [closed]
Hi I am very new to all this and am working with Mysql and PHP. I would like to be able to create a function from variable names that are stored in a database as strings eg.
database field ...
1
vote
2answers
22 views
VB.NET: Writing a function that take specific-type, multiple key-value parameters
I'm trying to write a function in a basic MVC (experimental project) that should be called with the following (or as close to):
datastore = myTable.FetchData({{column1, constraint1},
...
-1
votes
1answer
19 views
Error when passing “rapidjson::Document” as parameter [closed]
I use the function:
void updateCellGoldInfo(rapidjson::Document jstr, int row);
But I keep getting this error:
rapidjson::GenericValue,
rapidjson::MemoryPoolAllocator
...
0
votes
0answers
44 views
Python error in line passing parameter to command
what does this error means?
TypeError: cannot concatenate 'str' and 'set' objects.
def main():
print 'ffffffffffffffffffffffffff'
try:
print getopt.getopt(sys.argv[1:], 'u:a:s:', ...
0
votes
2answers
19 views
Is there a specific name for a function that takes its output as input and does that parameter have a name?
I work with a BASIC programming language and have found it useful to write functions that rely on their output as a parameter. Such as
inOut = someFunction(inOut)
I'd like to call this a ...
-3
votes
3answers
29 views
Parameter Scanner [closed]
this is my problem:
I have a method where one of the parameter is a Scanner cons, something like this:
public void buyIngredients (Scanner cons){}
and it's works, but the error is in the main:
...
1
vote
1answer
12 views
Weka Gridsearch libsvm cannot handle unary class (one-class)
I'm trying to obtain the best parameters for a one-class classifer using the wrapper of LibSVM under Weka.
For this reason, I'm going to weka.classifiers.meta.GridSearch and then I select LibSVM one ...
1
vote
1answer
58 views
C# Parameter of IList<IList<(ClassType)>>
I can't seem to figure out why the following doesn't work.
From reading around it seems it must be somehow related to something like this.
public class Test<T>
{
public void ...
-4
votes
2answers
47 views
Parameter in void method [closed]
This question for very poor question . But i have this poor doubt .for
I have same method for
int a ;
int b;
************************************
int c()
{
return 1;
}
void x()
{
}
void ...
-3
votes
0answers
24 views
(e) vs. (event) parameter in jQuery
When passing a parameter, you are open to pretty much any name you want to use. The most common ones I've seen for functions are as follows:
function(e) { }
function(event) { }
Style and ...
3
votes
5answers
67 views
Too many constructor arguments in deepest class of inheritance?
I want a general solution on how to avoid insanely high number of constructor arguments.
The examples I'm providing here are just examples, and I don't want a specific answer for the exact example ...
1
vote
1answer
30 views
Is it possible to pass parameters programmatically in a Microsoft Access update query?
I have a query that's rather large, joining over a dozen tables, and I want to pull back records based on an id field (e.g.: between nStartID and nEndID).
I created two parameters and tested them as ...
1
vote
4answers
45 views
Is there an accepted way to omit a parameter from a function/method?
Let's say (hypothetically) I have an object constructor MyObj, which has a method like this:
MyObj.prototype.method = function(x, y){
x = x || this.x; //default value
y = y || this.y;
}
...
0
votes
2answers
22 views
html “data-” attribute as javascript parameter
Lets say I have this:
<div data-uid="aaa" data-name="bbb", data-value="ccc" onclick="fun(this.data.uid, this.data-name, this.data-value)">
And this:
function fun(one, two, three) {
...
0
votes
1answer
26 views
How to get the parameters that was defined in mule-app.properties when running as Tomcat app?
I finally got my Mule app running in Tomcat. But I ran into one issue and need your help.
I don't know where to put the mule-app.properties and mule-deploy.properties files.
I have some parameters ...
0
votes
1answer
23 views
Receive Parameter in spring MVC controller
@RequestMapping(value = "/Fin_AddCheckBook", method = RequestMethod.POST)
public @ResponseBody
JsonResponse addCoaCategory(
@RequestParam(value="checkbookNumber", required=true) String ...
0
votes
2answers
19 views
Receiving NULL in parameter when passing from js to Servlet.
I am getting null when trying to receive parameter from JavaScript. I have gone through few post, but could not figure out where i am making the mistake in my code.
Below is code from where i am ...
0
votes
0answers
16 views
How to disable dynamic parameter validation in Crystal Report?
The objective is that I want to filter the report with dynamic parameters and also want to use OR(||) condition.
Currently, If I didn't select the parameter then show me the message 'The value is not ...
0
votes
1answer
15 views
How to handle conflicting HTTP GET param
I'm designing a REST API that supports HTTP GET parameters. In most cases I only accept one value for a parameter. But how should I handle duplicate parameters?
For example, Stack Overflow accepts a ...
0
votes
1answer
28 views
php.exe script parameters in batch file
I'm trying to execute a PHP script on Windows through php.exe, while passing parameters to the script. Everywhere I look, it says it should work like this:
php -f "path\to\my\script.php" -- -t 10 -i ...
2
votes
0answers
34 views
Multiple methods with different parameters WCF REST
I've been given the task to implement the following using WCF REST:
Resource POST GET PUT DELETE
/device Create new device List devices Bulk ...
0
votes
2answers
31 views
Adobe Reader parameter-controlled search function not using ß
i've already asked this on the adobe forums but nobody seems to have had this problem in the past, so i'm gonna try here:
situation:
i have a pdf-file (http://www.groneick.de/martinsmarkt.pdf) in ...
0
votes
1answer
23 views
IOS passing backslash as part of url parameter to Json Web Service
I'm calling a Json Web Service wich expects two parameters. username and password.
The username I'm trying to pass includes a backslash (\) as it is a domain account eg. companyname\jamesd.
Here is ...
-4
votes
0answers
24 views
KeyEvent Parameters [closed]
Okay so I have this code:
public static void main(String[] args)
{
keyPressed( ****HERE**** );
}
public static void keyPressed(KeyEvent e)
{
System.out.println("Press ...
0
votes
1answer
25 views
Webapi put parameter from body requires xml to contain xmlns
I'm hoping this is an easy question. I haven't made a public api using webapi or a restful service before. So I have noticed that when creating a Put or Post method that use a complex object parameter ...
0
votes
2answers
64 views
How do I pass multiple attributes into an Angular.js attribute directive?
I have an attribute directive restricted as follows:
restrict: "A"
I need to pass in two attributes; a number and a function/callback, accessing them within the directive using the attrs object.
...
1
vote
2answers
27 views
insert bash-variables in psql-command
I'm going crazy while trying to insert bash-variables in a psql commands as connection paramters as well as variables in the command itself. The following example works properly:
psql -U postgres -h ...
0
votes
0answers
35 views
what are * and ** in python for? [duplicate]
What does * and ** mean in python? for example in this function input.
def write(self, *a, **kw):
self.response.out.write(*a, **kw)
If they are for type declaration, why they are used again ...
1
vote
3answers
46 views
Processing C command line arguments
How do I process multiple command line arguments like say in a package manager? I am giving a shot at writing a package manager and right now accepting the packages to install is giving me quite the ...
0
votes
2answers
33 views
Parameters undefined
I've searched everywhere and nothing helps.
There is a problem appears in the code. I assigned name, ID and handlers to objects, but parameter doesn't work, shows undefined when I pass it to the ...
0
votes
2answers
19 views
In Wordpress, how can a page display the parameter that was sent to it
A WP page is being linked to from some posts and it appears that it can be improved by setting the posts to use a text parameter, like :
http://www.example.com/thepage?param=text1
I couldn't find ...
2
votes
1answer
31 views
ReportViewer Multiple Report Parameters
Is it possible to include multiple report parameters in a single line? if i have like 10 parameters, i don't want to create an "add" keyword 10 times ...
LocalReport.SetParameters("NewParameter1", ...
0
votes
2answers
38 views
jquery remove empty or white space values from url parameters
I am using form.serialize() to get the list of parameters.
If parameter is empty or its space, i want to remove it from the list.
For example:
testAction.action?a=1&b=&c=3
should give me ...
-1
votes
1answer
15 views
XSL change value of parameter
Take a look at my XML (simplified):
<head>
<body>
<xs:element type="xs:double"/>
</body>
</head>
What I want to do is to change value "xs:double" to "doubleOrEmpty" ...




