-4
votes
2answers
26 views

expected primary-expression before '->' token

HOW CAN I RESOLVE IT PLEASE? IM TRYING TO DO THIS FUNCTION BY REFERENCE int inserir_hospede(hospede *AddHos) { FILE *cadastros_h; cadastros_h = fopen("Hospedes.dat","a"); ...
2
votes
1answer
23 views

call_user_func with dynamic parameters

I am using php 5.3 (Windows 7). I create a function that call another function with dynamic variables func A call func B. func2($a, $b, $c, ) ... the number of parameters can be dynamic. ...
0
votes
3answers
36 views

invalid javascript parameter

so i have this button, which is added dynamically in java script, but the thing is a want to send the files name as a parameter to the function, i already have the name in a var saved as file, the ...
0
votes
0answers
51 views

javascript: how to use different parameters?

I am supposed to make a variable description of a product using parameters. How do I make a function tell the parameters apart? Parameter example: buildProduct('HP 4426', '4426','Newest and Best ...
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
1answer
16 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) { ...
1
vote
6answers
51 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
43 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
31 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}, ...
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 ...
1
vote
4answers
46 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
43 views

How to take a value from one jQuery function and assign it to a parameter of another function?

I have a function with a jQuery slider. It sets up a delay time and shows it in the "#slider" div : $(function () { $("#slider").slider({ range: 'max', min: 1, max: 5, ...
0
votes
1answer
63 views

Call method with parameter from jQuery or Ajax

Do you have some sample code that from you can show how to call java method from your Ajax? The following code can call the Java method: $.ajax({ type: "POST", url: "test.java", data: data, success : ...
0
votes
2answers
61 views

C++: Pass a function from one function to another

I'm trying to implement a quicksort algorithm to sort an array filled with objects of type "Movie" by one of 4 different criteria. Each movie object contains a ranking, number of votes, rating, and ...
3
votes
1answer
35 views

can't use an undefined value as a symbol perl

I'm trying to write in file some value taken from an array. But I'm having some error ''Can't use an undefined variables as a symbol reference at... line 81: foreach $k (sort keys %{$value2}){ ...
0
votes
6answers
45 views

Solved…Jquery/javascript function issue

I have a javascript function doing some animation and its parameter is a parent selector. function myFunction(a) { $("'"+a+">#one'").stop(true, true).animate({left:'30px'},1100); ...
0
votes
0answers
3 views

Shadow Parameter in a Function

I'm getting a shadow parameter error message but don't understand what is wrong. This seems like something I would have done a couple hundred times before and never had a problem with. #include ...
4
votes
4answers
54 views

Does C# support inout parameters?

In C#, I am using a StreamReader to read a file, line per line. I am also keeping the current line's number in an int, for reports of possible error messages. Reading each line goes along with some ...
0
votes
2answers
34 views

Using only one parameter of a function in javascript

I'm writing an app in Javascript, and while I'm comfortable with the language, I was wondering about unused parameters. Say I have a function as follows: function test(data, complete){ if ...
2
votes
1answer
45 views

Python descriptors (__get__, __set__) on function parameters

Normally a descriptor is used on a class attribute like so: class Owner(object): attr = Attr() When getting Owner.attr, Attr.__get__(self, instance, owner) is called where self = Owner.attr, ...
0
votes
1answer
35 views

Passing DateTime as a parameter

I've read widely that I can pass in an argument to my powershell script via: param ( [Datetime]$argument ) I've also read that I can define a default value: param ( [Datetime]$argument = ...
0
votes
1answer
57 views

Semicolon inside function parentheses?

I was browsing through Psycle source code, and this line caught my attention: bool user_choose_dialog(HWnd const window_handle, format const * const source_format = 0, ...
1
vote
1answer
73 views

Declaration of 'int accidents[5]' shadows a parameter error

I'm new to C++ and can't find any way around this error. As far as I know I'm not overloading any variables to create a conflict with naming(which was the closest thing to a cause i could find ...
0
votes
1answer
44 views

JQUERY: How do you pass a function as a parameter to $()?

How do you pass a function as a parameter to $()? For example function autoplace(map){ // do something with map }; var map = "Wassup"; $(autoplace(map)); // how to pass a function which takes a ...
0
votes
2answers
70 views

PL SQL Function - How to call

I have a function in PL/SQL as follows (being used in Oracle APEX): create or replace FUNCTION User_Levels(result OUT VARCHAR2) RETURN VARCHAR2 IS v_user_types employee.user_type%TYPE; BEGIN ...
-2
votes
0answers
31 views

C - Mapping a set of values to a function

and I am stuck on a problem. I would like to map a set of 2 values to a function. For example, When I input 'f', 2 to my program, I want it to call a function f(int param1, int param2). When I input ...
2
votes
2answers
48 views

Send confirmation email to two users

I'm trying to send a confirmation email to two members but im confused as how to do so. Below is only the relevant code. Ive used PHP mail before in my website for a contact page, which is fine, but I ...
0
votes
5answers
57 views

Change given function parameter within the function c++

I wrote an function called swap to swap given two elements within the function. But when I use it in another function, it doesn't work. How to get it work? #include <iostream> using namespace ...
0
votes
1answer
60 views

cant get program to calculate correct factorial of a number

I wrote a program to give the factorial of a number entered by the user. It is for an assignment and it must be written so the first function reads in a value then passes it to the main then the main ...
0
votes
0answers
72 views

Matlab - 3 parameters model fitting to experimental data

I collected some experimental data which gave me two vector: hits and false alarm. What I need to do now is to use matlab to fit a specific model (see the model details below) to this data and see ...
0
votes
0answers
26 views

loop through vb.net function paramaters in webmethod?

How can I loop through vb.net variables passed to a WebMethod? All will be Optional array Objects. Should I use ParamArray instead? If so, can I use arrays within the ParamArray?
1
vote
4answers
137 views

Sub-Records using F#

Assume the following code: type Large = { v1: int; v2: int } type Small = { v1: int } let fn (value: Small) = printfn "%d" value.v1 // or let fn (value: {v1: int}) = printfn "%d" value.v1 let large ...
3
votes
6answers
74 views

How to set a preceding function parameter to its default in c++?

Apologies if this basic question has already been answered. What would I put inside the brackets of print() so that the first parameter is left to the default value but the following parameters are ...
0
votes
4answers
41 views

& in function parameter after type

In a class, we have this: friend Circle copy(const Circle &); I know that usually to pass something by reference you use & before the name of the variable, but in this case there is no name ...
0
votes
2answers
50 views

What are differences between location and refresh in codeginiter redirect function?

I would like to know what are differences between location and referesh in Codeigniter redirect() function? http://ellislab.com/codeigniter/user-guide/helpers/url_helper.html
1
vote
2answers
55 views

Size followed by multiple parameters in C++ inFile.Read

Can anyone explain the parameters for inFile.Read in C++ ? I've found many examples of the method used with a size followed by a single parameter but, despite it being a simple function, I can not ...
1
vote
2answers
60 views

Parameter type and number checking in c

I am looking to add a check to make sure the below function is always called with the correct number of parameters and that they are of the correct type. What is the best way to go around this? e.g. ...
0
votes
0answers
19 views

Separate c++ function header elements with QRegExp

I want to extract elements from c++ function header with QRegExp (in c++ not python) Example: public: static class ROW * __cdecl tesseract::TessBaseAPI::FindRowForBox(class BLOCK_LIST ...
-3
votes
4answers
84 views

How can I use variable number of parameters to function

I have this: long int addsquares(int n, ...) How can I access the parameters? I can't use va_start and va_arg...
0
votes
2answers
90 views

Functons with different return types and parameteres C++

I need an answer for this C++ question, I have worked on it, but clearly im missing something and I will post my answer so far too.... Write a program that will calculate and print pay slips. User ...
1
vote
1answer
21 views

Symbolic function input non-symbolic parameters

I need to define a function that returns a symbolic matrix (sym). It takes 4 input parameters- 2 symbolic matrices, and 2 integers. How do I do that? This is what I was trying to do- %my function ...
-3
votes
1answer
42 views

jQuery - Parameters in load function [closed]

Is it possible to pass parameters through the load function when using it for multiple images? var images = {0 : {target_ : 'url', foo : 'foo', bar : 'bar'}, 1 : {target_ : 'url',foo : 'baz', bar : ...
0
votes
2answers
65 views

call a function with different parameters in setInterval

I am using setInterval function to call a function after a particular time intervals. Code is given below: var refreshIdd = setInterval(function() { loadData(page); }, <?= $h; ?>); ...
-2
votes
2answers
40 views

c++ reference parameters function

I dont know why this program wont run. The values in getStockInfo are supposed to be stored in reference parameters. Then displayStatus accepts them as arguments. I know it has something to do with ...
0
votes
2answers
74 views

c++ reference parameters functions [closed]

Im having trouble with the reference parameters. The values in getStockInfo are supposed to be stored in reference parameters. I dont know how to do that so that displayStatus accepts those as ...
-1
votes
1answer
36 views

Confused with function-object usage in Python [closed]

Am currently learning python using "Think Python" in which i came through a certain piece of code like below and am being a beginner programmer i don't understand how it works, explain me the code ...
0
votes
2answers
53 views

Function in AS3

i try to make a function like this: function splashlafadz(obj:MovieClip):void{ var varsplash1 = new TimelineMax({delay:3}); varsplash1.to(obj, 1, {alpha:100, x:427.85, y:208.90, ...
1
vote
1answer
453 views

Passing ASp.net ClientId to javascript function

I have an ASP.NET page that contains a JavaScript function as follows: function PrintGridView(Title,Address,Terms,GridViewName) { if (document.getElementById != null) { var html = '<html ...
3
votes
1answer
67 views

Python: pass function as parameter, with options to be set

In Python, I need to call many very similar functions on the same input arguments sampleA and sampleB . The only thing is that some of these functions require an option to be set, and some don't. For ...
0
votes
2answers
86 views

struct as parameter to function: more efficient to copy or dereference?

I am currently developing a simple clone detector for C, written in C++ and am asking myself endless questions about efficiency and how to optimise C++ code. One question I have is regarding how to ...

1 2 3 4 5 11