parameter-passing is the process of assigning values to the parameters of a function

learn more… | top users | synonyms

0
votes
0answers
3 views

Can you pass a fixed-size array as a GLSL function parameter?

In a GLSL shader, I want to create a function that looks a bit like this : void MyFunction(out float results[9]) { float value0 = 3.1546; float value1 = 42; // whatever value /* ...
0
votes
1answer
15 views

Storing parameter from JavaScript in Android

I have a JavascriptInterface and a setter/getter in my Android code: mWebView.addJavascriptInterface(new AccessibleMethods(), "Android"); private class AccessibleMethods { private boolean ...
-4
votes
4answers
66 views

Pass integer between classes in Java [duplicate]

So I have this class where I push a button, and at the and I get the int maxpluseen which I want to pass over to ClassB. private void populateBtn() { foto1 = (Button) ...
0
votes
0answers
15 views

parameter passing in mvc 2

I'm using MVC2, the asp file is <%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage<NotificationsViewModel>" %> <% using ...
0
votes
1answer
31 views

How to receive python's array in function

How do I receive an array (like numpy ones) into a function? Let's say the array a = [[2],[3]] and the function f. Tuples works like this: def f((a ,b)): print a * b f((2,3)) But how is it ...
1
vote
1answer
61 views

C++11 Setter function parameter passing nullptr

I was wondering about C++11 best practices regarding parameter passing nullptr. I want to reset a class member object by passing a nullptr to an already existing setter function. For a simple ...
0
votes
1answer
35 views

Pass a Bitmap from Project to another

I have two projects linked to each other As it shown in this link. Let's say ProjectTwo Linked to ProjectOne. I want to pass an image that ProjectOne owned .I create a static method to pass it: ...
1
vote
1answer
32 views

Parameter passing in R when interior function arguments are dependent on optional parameters

I'm working in R and need to pass arguments to a function so that they can be used as arguments when calling another function within the original. In the example below you can see that I'm interested ...
0
votes
2answers
51 views

How to pass a parameter in a lambda function in python?

I want to set colors of an object, and don't want to create 10 functions for every color. So, I just want to declare the colors and create 10 buttons and one function. Error message is: ...
0
votes
0answers
32 views

Laravel: add URI's wildcard values to URI on redirect

There's probably a better or more common way of doing what I'm trying to do (maybe using the front-end), but here goes: I have a page that when a user comes to it, it checks whether there is an $id ...
0
votes
1answer
57 views

Passing Multiple Values to a single Crystal Reports parameter from VB.net

I am using Visual Basic in Visual Studio 2012 with Crystal Reports for Visual Studio. I have a parameter in a Crystal Report that can accept multiple values (for instance: Regions). How do I pass ...
0
votes
1answer
17 views

Internal frame pass variable back java

As a newbie, I struggle with this basic problem. I have an internal frame that opens using a simple button on my main frame. I would like to be able to get the value of one variable from my ...
0
votes
0answers
13 views
+50

At what point do the Input Parameters of a WCF Workflow Service get instantiated/set?

I have a very simple XOML file with a single Code Activity inside the ReceiveActivity Handler. The ReceiveActivity is mapped to an Interface called IRulesEngineService wih a single method on it. ...
2
votes
4answers
54 views

Passing a method as parameter

I'm trying to pass a method as parameter. How to do it? I have this in mind: public class MyButton extends JButton{ public MyButton(){ super(); } public void setClick( method() ); { ...
0
votes
1answer
20 views

Passing parameters in link_to tag - rails 3 throwing error

In my Rails application, I have a link_to field with the parameters, but it is not going to the action specified. Is there anything wrong with the format of link_to given below. <%=link_to "Add ...
0
votes
1answer
21 views

Parsing bash function parameters

I have a bash function, say foo () I pass some parameters in a string like user=user1 pass=pwd address=addr1 other= Parameters may be missed or passed with random sequence I need to assign ...
0
votes
1answer
12 views

ART - A Reporting Tool - Default values on queries

I'm using ART - A Reporting Tool - to build a simple, lightweight, BI prototype. I have a portal-like structure using a dashboard query. When the user selects it, he is able to select which year and ...
1
vote
1answer
35 views

How to replace instances of a char by ints, then access an array with them

I'm trying to call this function on a string and pass in a 3d char array. The function should replace all instances of 'u' in the word with '0', 'c' with '1,' etc... Then I want it to reference the ...
1
vote
1answer
50 views

SSRS Drillthrough Report with one or more charts from Main Report

I am totally new to SSRS. I am not sure if my title explains what I want. I am creating few Dashboards for my Healthcare Database. Therefore I created a Patient summary report and a Patient details ...
1
vote
1answer
40 views

Java / PostgreSQL - Data Optimization for Performance

it's been a while. I'm currently struggling on optimizing the performance of my application. Here's a snippet similar to what I currently have. A Stored procedure with this query: SELECT field_a, ...
2
votes
1answer
43 views

Pass PHP value to ColdFusion

I'm trying pass a value from PHP to a ColdFusion page using POST method. It's actually a form that has only one text field and submit button. The question is how to "catch" that value on the ...
-1
votes
1answer
27 views

System.ArgumentNullException: Value cannot be null. Parameter name: connection

I keep getting System.ArgumentNullException where the parameter name is connection. I have not been able to find any solution for this parameter name "connection". what does this error mean because ...
1
vote
2answers
87 views

Spring 3 — form with 2 buttons, sending 2 parameters to controller method

I have a Spring 3 MVC form with 2 parameters I'm trying to send to my controller method, and I'm getting a 404 error. The twist on this problem is that the form has 2 submit buttons, and the submit ...
0
votes
0answers
23 views

IOS server can't get client‘s parameter

iOS client sent an hyperlink to server, and asp.net web try to get the parameters in Hyperlink, then judge which webpage to jump in. The question is parameter always be null, actually it's not. If i ...
0
votes
1answer
37 views

How do I use variables across multiple functions?

Suppose I have a simple console program as follows: (haven't tested it and it may contain errors since I'm sort of a newbie) #include <iostream> using namespace std; void startProgram(); int ...
0
votes
1answer
85 views

How to pass multiple parameters dynamically into Html.Action in Asp .Net MVC

I have parameters to send like @Html.Action("actionName", "controlName", new{ pName1 = "pValue1", ... }) But, pName1 = "pValue1", ... will come with ViewBag from a controller. What should type of ...
-1
votes
0answers
23 views

accessing user database, fancybox button triggers information of the right user and outputs name and email address [closed]

I am currently creating a messaging system using the fancybox pop up window. Users are presented with a small id-card on a page. At the bottom there is a contact button, when it is clicked a window ...
0
votes
1answer
43 views

Passing HTML5 geolocation data to a variable

I'm really new to Javascript, and I'm trying to jump into it. I want to have a script get geolocation data and pass it to a variable, and then have the information displayed in an alert. I have a ...
0
votes
2answers
50 views

Passing properties as parameters to be Got and Set

Well, I need to repeat same code for many properties. I've seen examples taking Action delegates, but they don't fit quite well here. I want something like this: (see explanation below) ...
0
votes
0answers
11 views

Wordpress Gravity Forms- Custom Taxonomy Selection Passes Along Additional Data

Second post...different question... I am running Gravity Forms and the Custom Post Plugin and I've run into a bit of a problem... The template I am using implements a custom post type as a ...
0
votes
1answer
26 views

Reference inputText value from link param

I have a p:inputTextcomponent and a h:linkthat navigate to a different view: <p:inputText id="searchValue" value="#{bean.searchValue}"> <p:ajax event="keyup" update="search" /> ...
2
votes
1answer
32 views

possible to parameterise junit tests and run with maven?

I have a bunch of selenium webdriver tests split in different classes. I run these tests across a number of sites but I don't want to run them all on every site. In the past I used msBuild and c# and ...
1
vote
1answer
45 views

Using Parameterised Query to Populate Datalist

I've been trying to pass a varying value in as sql query using parameters as follows: SELECT TOP 5 * FROM Events WHERE EID NOT IN (SELECT TOP @limit EID FROM Events ORDER BY EID) For finding the ...
0
votes
2answers
81 views

Parameter passing in C/C++ [duplicate]

I have two questions here. Q1: What will the following program output(on a 32-bit little-endian machine): int main() { long long a = 0x1, b = 0x2, c = 0x3; printf("a = %d, b = %d, c = ...
0
votes
2answers
50 views

Grails - How to remove multiple params from controller

Im new to grails and using version of 2.1.1 I have been working params for passing data from view to controller ie I have submit URL to controller : ...
1
vote
2answers
167 views

hide passed parameter from jsp to struts2 action class

<s:url action="someAction" var="act"> <s:param name="param1">value1</s:param> </s:url> <s:a href="%{act}">Go Action</s:a> By clicking Go Action link, the address ...
1
vote
3answers
81 views

Passing array of integers to webapi Method

I am trying to pass an array of int but I can not get the value in the webapi method var postData = { "deletedIds": deletedIds }; $.ajax({ type: "DELETE", traditional: true, ...
0
votes
0answers
12 views

how can I make a generic function for pushing a class object into an array?

this is my first time asking a question on this form so please go easy on me if I say something stupid! I'm trying to make a tower defense game in actionscript 3 that has enemies and power ups as ...
0
votes
1answer
50 views

How to pass array structure between two verilog modules

I am trying to pass a array structure as reg [0:31]instructionmem[0:31] between two modules. I coded it as follows : Module No 1: module module1(instructionmem); output reg ...
0
votes
2answers
118 views

Pass variable from URL to PHP to Javascript and Display Value in Input Field

I have an email subscriber form that I'm trying to pre-populate with an email address (which will show up in the form). The email address to use is included in the URL ...
-2
votes
3answers
45 views

Passing different date values for the same method

I need to pass date param to a method which may be of different dates for example the date may be expirydate or createddate? How do i pass to a method void dosomething(?datetime whateverthedate) { ...
2
votes
1answer
25 views

How to pass a value to a anonym method in Task.Factory

I'm using a construct like that: string myurl = "http://google.de"; Task.Factory.StartNew(() => { MessageBox.Show(url); }); How to pass myurl to the anonym function?
3
votes
2answers
53 views

Passing parameter to AJAX function from HTML

This seems like the most stupid question, but I cannot get this to work. I want to pass a parameter into my AJAX function from my HTML button. Code looks like: <input type="button" ...
0
votes
0answers
24 views

Passing an integer array in javascript

I have been stumped with this. I have an array like this: var a = []; a = [1,2]; So when I do this: this.console = Ext.create('ExtApp.first.Console', { ID: ID, Values: [] }); and I pass ...
2
votes
4answers
44 views

Dynamically pass Type to Method<T>

I've a method , that retrieves to me some data according to some type I passed in parameter, like this : protected void FillList<TEntity>() { doWorkForTEntity(); } I Need ...
0
votes
1answer
66 views

How to pass namespace variable into click function param variable? jQuery

So I found an awesome solution to get around needing to use Global variables in jQuery here. Everywhere I say namespace, originally I was going to use a Global var. However I'm not able to send my ...
0
votes
0answers
33 views

Passing parameters that must satisfy a condition

Suppose you have a class called BlockedRecordsFile that handles a file as a collection of fixed-length blocks (of, say, 4 Kb). Each block contains a number of Records, with the following restriction: ...
0
votes
2answers
55 views

Adding two integer values by passing parameters through an applet

The following java program gets compiled successfully but when I try to run it using appletviewer, I get the following (in command prompt) with a message "applet not initialized" in the applet window. ...
3
votes
3answers
50 views

Are php resources passed by reference?

I discovered today that in addition to objects and primitives, PHP has resources. The documentation states that by default php passes names by value. But we know that in PHP 5, objects are referenced ...
0
votes
2answers
73 views

Invoke-sqlcmd with scripting variables and function parameters

I have several tables that need to be periodically cleaned (de-duplicated). I want to create a function I can call and pass in a table name as a parameter. I'm stuck on the appropriate use of back ...

1 2 3 4 5 31