The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
30 views

Parsing/passing command line arguments to a bash script - what is the difference between “$@” and “$*”?

I am using a bash script to call and execute a .jar file from any location without having to constantly enter it's explicit path. The .jar requires additional variable parameters to be specified at ...
0
votes
0answers
24 views

Build and run with args in sublime text 2

I've look through the web and didn't found anything helpful... hope you can help! I'm running on MacOS X and i'm using Sublime Text 2 to code. I've found the cmd + B option to build and cmd + shift ...
-1
votes
0answers
10 views

how can I pass an argument to jqxchart and retrieve it when clicked without showing it in the graph? [closed]

I am using jqxchart(bar chart) in my java web application.In my chart y-axis is for no of transactions and x-axis is for district name, when I click on the district name I need to get the district ...
0
votes
4answers
69 views

Pass pointer array address to function and update data in the address

I am pretty weak in understanding and working with pointers. So, Please help me here. My objective is to pass an array pointer's address to a function ,(i.e.) the address the pointer is pointing to, ...
0
votes
4answers
61 views

How to pass event as argument to an inline event handler in JavaScript?

// this e works document.getElementById("p").oncontextmenu = function(e) { e = e || window.event; var target = e.target || e.srcElement; console.log(target); }; // this e is undefined ...
2
votes
3answers
42 views

secure way of passing form variable

Im building a contact form for my wordpress theme. I want the ability to enter a receiver adress from the backend. At the moment I am passing the variable with a hidden input field. <input ...
-1
votes
0answers
39 views

passing char* argument to function in C

I have the following function: void func(unsigned char* src,unsigned char* dest){ //do something with dest, using src for(i=0;i<10;i++){ //print some dest values } } I call this ...
0
votes
1answer
30 views

AS3 timer event causing trouble

I am creating a game that uses a timer set to a random number. The timer counts up to this number then the game ends. I would like the player to have an option to replay once the timer runs out but I ...
-1
votes
0answers
31 views

passing arguments from android to .net web service

I am making an android application that will send location data to .net web server.I have the web service created as follow.. Imports System.Web Imports System.Web.Services Imports ...
0
votes
1answer
50 views

C - passing allocated pointer and using realloc in separate function

I need to find all the prime factors of a number. I have written this code, but when I try to reallocate the pointer array in calculatePrimes function using realloc, gcc gives error that i have not ...
-1
votes
1answer
53 views

printf() in 32bit g++ and 64bit g++ deals arguments differently?

#include<stdio.h> int main() { long long a=1,b=2,c=3; long long d=0x123456789ABC; long long e=0x000000000000; printf("%d,%d,%d\n",a,b,c); printf("%d,%d\n",d,e); return ...
-1
votes
2answers
164 views

Invalid conversion from 'const char*' to 'char'

I am currently working on just a miscellaneous Theater Seating program! I am just starting to progress through C++, but I can't figure out this error I keep on getting in my coding. What I am ...
1
vote
1answer
21 views

Passing childs of a specific parent class, with type constraints definition, as argument

I'm trying to create a method in which pass an argument that must implement a specific class which requires a type constraint. I would to be able to put a generic type costraint argument. Here a ...
0
votes
0answers
49 views

How to pass a Subroutine name as an argument for a function?

I'm trying to make a generic Function to create threads, then I need to pass a Subroutine name to the function, but I could only pass a Function name (which is useless). How I can do this? There is ...
0
votes
1answer
30 views

Can't get PHP string variable to expand

I define a string variable like this: $menu = '../views/menus/documentation-menu.html'; Later in the script I try to use it like so: $content = file_get_contents("{$menu}"); But when I run the ...
-1
votes
1answer
31 views

How to pass a function with named arguments

I am creating an extension function: jQuery.fn.openCreatePersonModal = function (arg1, personHandler) { var person = { "displayName": "john" }; personHandler(person); return ...
0
votes
3answers
31 views

Why does my Class method call work in one method but not another?

I am teaching myself Ruby and using a a compiler with Visual studio know as Sapphire on Steel to run the code. I am making a blackjack program for school. I created a Deck class, Card class and Player ...
0
votes
2answers
42 views

python argparse - can I use only mutually exclusive optional arguments or is there a better way

I am writing a script that downloads a file from the web, performs some processing and stores the data into a mysql db. I am using argparse for accepting arguments. Essentially, the script will do 1 ...
1
vote
3answers
38 views

Varargs in a group?

About Varargs, can i repeat the arguments in a group? For instance, i want to allow users pass in: myFunc(1, "one"); myFunc(1, "one", 2, "two"); myFunc(1, "one", 2, "two", 3, "three"); It seems ...
1
vote
1answer
45 views

Passing the return of a function as a parameter by reference in PHP?

THIS IS NOT A DUPLICATE, READ THE QUESTION MORE CAREFULLY It's about the possibility to pass by value when the argument is marked as by-reference. In PHP you can pass the return value of a function ...
0
votes
1answer
69 views

passing arguments to implemented method java

I have a class that implements Printable. I'm trying to somehow get values from text fields into the print method but can't seem to work out how to do it. public class TreePrint extends ...
0
votes
1answer
48 views

How can I populate a NameValueCollection via a parameter in a shared method?

I have a code segment: var requestMock = new Mock<HttpRequestBase>(); var queryString = new NameValueCollection(); queryString["abc"] = "123"; queryString["qwe"] = "456"; queryString["yui"] = ...
0
votes
2answers
39 views

How to pass an arbitrary method (or delegate) as parameter to a function?

I need to be able to pass an arbitrary method to some function myFunction: void myFunction(AnyFunc func) { ... } It should be possible to execute it with other static, instance, public or private ...
1
vote
5answers
77 views

use php functions as function argument [closed]

Can we call php function in custom function argument. Example function customFunction(trim($args),addslashes($args_second)) { //other code } That gave Parse error: syntax error, unexpected ...
0
votes
1answer
35 views

Pass argument to leiningen readable by project.clj

I have a project.clj file that I want to use differently depending on an argument passed in when called by leiningen. Here is my hypothetical sample project (defproject simple "0.0.1" ...
0
votes
1answer
85 views

How to count number of arguments?

Can any one tell me how can I count number of arguments in java. I am using log4j and below is the code I am using but still I see that my code stucks at length =0 . Any help? public static void ...
0
votes
0answers
77 views

Passing Data Between Fragments from a BaseAdapter override class

Ik im probably not going about this the best way , but I have no idea how to go about this the right way given my current setup . Pretty much I have a fragment tabhost that has just about all my ...
0
votes
0answers
32 views

Functor as function argument fails [duplicate]

I try to give a function a functor to be more flexible to adjust certain things in my class. Here is some Code: struct BC { real operator()(real x, real y, real z) { return sin(2 * M_PI * ...
-1
votes
1answer
58 views

why does this php variable lose its value when passed as an object method's parameter? [closed]

I have some PHP code where at one point a variable, order_status has a value, but once passed on into an instantiated object, it seems to lose its value within that object. It's like this: ...
1
vote
2answers
125 views

JavaFX: Pass arguments from JavaScript to JNLP

I am trying to deploy JavaFX 2 app using Java Web start (generated by NetBeans) and I need to pass some args to my app using JavaScript. First question: Is it even possible? Second question: If it is ...
0
votes
4answers
98 views

Using *this to initialize a reference

I'm trying to initialize an instance of my class ShadeRec with its constructor: ShadeRec(World& world); So I pass to it: ShadeRec sr(*this); where "this" is an instance of the class World. ...
0
votes
0answers
56 views

Get event-object before event is handled

Is there a way to get the event-object or rather any passed argument outside its handler? Look at this example, as you can see I try to get the handled mouse button. This however will fail since ...
1
vote
2answers
95 views

Javascript function run with drop down list

I have a drop down list that I want to pass an argument (color) to a function when something is selected. I have used Javascript a little in the past, but am not entirely sure how to do this. I have ...
2
votes
1answer
55 views

Is there a way to access varargs without specifying default value arguments in Python

def foo(a=MyComplexObject(), b=Something(), *args): print a, b, args Is there a way to call foo with specifying *args and not specifying a or b in the function call - thus using there default ...
1
vote
1answer
65 views

Google Charts API: adding arguments to existing callback

I have a page with a number of charts generated from a Google spreadsheet. Typical code looks like this: var url = "http://my.googlespreadsheet.com/tq?argumentshereblahblahblah"; // create and send ...
1
vote
2answers
198 views

C# passing generic type to another class [duplicate]

I wanna know is there any way to pass generic type to another Class as an argument. In other words. I have SomeClass<T> and AnotherClass. I wanna AnotherClass to have an instance field of Type ...
-2
votes
1answer
52 views

Passing arguements through main - Checking to see if a valid input

I'm trying to pass arguments through main, which works fine, I then check to see if the passed in argument contains the correct format/value. However, even if I pass through the correct format it ...
0
votes
0answers
87 views

Why CUDA reports cudaErrorLaunchOutOfResources when there are enough resources

One CUDA kernel of mine has 54 arguments. They are all int or float. So they are 54*4=216 bytes. The CUDA argument list limit is 256-byte. The weird thing is this kernel can run correctly using ...
5
votes
2answers
261 views

Wrapper for a Command Line Tool in C#

Using MSDN I got the class to write a wrapper for my command line tool. I now am facing a problem, if I execute the exe through the command line with arguments, it works perfect without any errors. ...
0
votes
1answer
150 views

Passing arguments to rest api call using post in python

I am calling a rest service to "GET" an auth token from login and then pass the same to POST request along with some other data. The code snippet is issue = json.loads(r4) print json.dumps(issue, ...
8
votes
1answer
111 views

Replace the argument with a list in R [duplicate]

Some times there is a function which has an arbitrary number of arguments. For example, the bootstrapPage function of package shiny. If I have a data.frame and I want to create one widget for one row, ...
0
votes
2answers
76 views

Erlang: passing a record into a function?

The following code does compile somewhat with a warning: 23> c(passing_records). passing_records.erl:8: Warning: wrong number of arguments in format ...
0
votes
2answers
241 views

argument-passing from iOS to WCF service

I need to pass information from the application to the server, specifically a and b in text format. Here is the code the WCF service: public class iOSService { // To use HTTP GET, add [WebGet] ...
0
votes
1answer
84 views

How can the argument to a batch file be intrun passed onto a powershell script?

i am trying to call a powershell script through bat file such as below; Bat file name is Script .bat and its current cuntents are below; Powershell -sta -Windowstyle Hidden Script.Ps1 I am passing ...
0
votes
3answers
415 views

Constructor … is not applicable (actual and formal argument lists differ in length) - but it does match

So i'm doing an assignment for school in java... It's a class hierarchy kind of assignment and we are supposed to make a "Triangle.java" class that extends a "ClosedShape.java" class which extends a ...
1
vote
2answers
176 views

Passing a character vector as arguments to a function in plyr

I suspect I'm Doing It Wrong, but I'd like to pass a character vector as an argument to a function in ddply. There's a lot of Q&A on removing quotes, etc. but none of it seems to work for me (eg. ...
4
votes
3answers
273 views

Is there a Scala equivalent of the Python list unpack (a.k.a. “*”) operator?

In Python, we have the star (or "*" or "unpack") operator, that allows us to unpack a list for convenient use in passing positional arguments. For example: range(3, 6) args = [3, 6] # invokes ...
0
votes
3answers
154 views

How to make a Ruby method to pass output parameters (change the value of referenced arguments)?

I'm trying to make a method with output arguments in ruby. I read differents posts here and here about the discussion of wether ruby pass its arguments by-value or by-reference and I undersand that ...
2
votes
1answer
123 views

Wrong value after setting (scalar) kernel argument OpenCL

I'm working on an OpenCL program, but the output is different each execution. I think it has to do with passing arguments to the kernel, because when I hardcode the values for a specific execution, ...
1
vote
2answers
63 views

Trouble passing on an argument to function within own function

I am writing a function in which I want to pass some arguments to the crrstep-function ('crrstep' package), but I encountered a problem: somehow the argument 'event' in my function is not recognized ...

1 2 3 4 5 8