Questions tagged [call]

Do not use this ambiguous tag. For the action of invoking a subroutine of code, an external program or a script, use the tag [method-call]. For the topic of making phone calls, use the tag [phone-call].

In programming, a call is the site of invocation of a subroutine of code which when completed will return execution to the next instruction following the invocation of the call. A call is distinct from a jump in that there is no expectation of return after a jump.

A call may also invoke an external program.

This tag should also be used for language or platform specific functions for making a call. Some examples are:

  • call() - VBA
  • exec() - PHP
  • system() - C, Ruby

Related Topics

For other topics related to "calling", please use a more specific tag:

  • - For making and managing real-time two-way voice communication
4305 questions
1
vote
10 answers

Is there a sweet, efficient way to call the same method twice with two different arguments?

Say for example I have the following string: var testString = "Hello, world"; And I want to call the following methods: var newString = testString.Replace("Hello", "").Replace("world", ""); Is there some code construct that simplifies this, so that…
Jonathan
  • 32,202
  • 38
  • 137
  • 208
1
vote
1 answer

Recording calls

Ok, I have a code, that code is writing to te external storage, I want it to write to internal. It gives me error, first when returning mContext.getFilesDir().getAbsolutePath() + path; And second error saying it is in invalid state. Anyone? public…
Miljan Vulovic
  • 1,586
  • 3
  • 20
  • 48
1
vote
1 answer

Changing calls within a Struct

Given the struct I have created below, how would I change the code to make it read from insert (student) rather than from the way it is now. Basically, the code at the moment takes input as a student written as: student guy,23 and the output will…
user99point9
  • 117
  • 6
1
vote
2 answers

Binding an argument as this, with a new constructor?

I am trying to bind an argument for this to a function named Sequence the binding works, problem is more than one Sequence overwrites each other, so I have to use new here's the issue... //js code function init(cmd) { …
EasyBB
  • 6,176
  • 9
  • 47
  • 77
1
vote
1 answer

How can i use the getter/setter of a Call-Method from Example Code in MailComposer

i have a question regarding the call-methods handling in object-c. I downloaded the apple sample code for the mail composer (http://developer.apple.com/iphone/library/samplecode/MailComposer/Introduction/Intro.html). When the user touches the…
locdog
  • 11
  • 2
1
vote
1 answer

How to parse parameters from Ajax return string

I have a litte problem. I call an file and this file has to know from which level it was called. I'm developing in an special tool, and thats how it works here. for example: var Url = baseUrl + "?func=ll&objId=" + WebreportId +…
Thandor
  • 25
  • 8
1
vote
1 answer

Excel VBA order/grouping of "Call"

Probably not the best title, but it will be better with this exemple. Here's a function inside a userform of a checkbox. I was trying to change the font to bold before the call to SelectAlldtList(which takes a few seconds to do). What is happening…
Benoit
  • 363
  • 6
  • 23
1
vote
1 answer

Loading and writing TSV files with data in R

I am trying to run some tests on real data that I found online. I have downloaded and saved it to my computer in a .tsv file and am trying to call it into R and create a table for it that I can read later and run a some tests on. Here's what I have…
Elle
  • 97
  • 2
  • 6
  • 14
1
vote
1 answer

Calling method from another class doesn't execute the whole method

In an OSX-application I have a main class A and a second class B. Both run a window each, at the same time. In class A there is a button that plays a movie in an AVPlayerView (called playerView) [The movie is loaded into the PlayerView earlier!]: -…
1
vote
1 answer

Java program to mulitiply matrices by calling C code

So I'm interested in this concept. I have a lot of experience with programming in C and Fortran, but little to no Java experience. Is it feasible to be able to call C code (even C++) to multiply matrices within a Java code? My idea, in concept, is…
mjswartz
  • 715
  • 1
  • 6
  • 19
1
vote
1 answer

Any free servers to integrate VoIp feature in android?

I need to develop an android app by which i can make call to any mobile phones/landlines. Is there any free SIP servers and SIP clients to achieve this ?
Sivakumar
  • 349
  • 2
  • 10
1
vote
2 answers

Calling a method on android button click

I am trying to make a web service call via android button click. I've managed to rectify the errors, but it shows some bugs on getting response. I receive null response. Below is my code. Could someone debug me please..! My…
vss
  • 1,093
  • 1
  • 20
  • 33
1
vote
1 answer

click on a label in Swift

I want to make the label that on click on it to make call to number. I know that iOS has this option, but how can I do it in Swift? I found just how to do it in ObjC: -(IBAction)callPhone:(id)sender { [[UIApplication sharedApplication]…
Orkhan Alizade
  • 7,379
  • 14
  • 40
  • 79
1
vote
1 answer

Calling a PHP Function From Another PHP File in WordPress

I am trying to work out how to call a function from an external PHP file. So far I have this: The function display_inline(); returns a string of…
rainwilds
  • 31
  • 3
1
vote
1 answer

Calling jQuery function from C# MVC

How do I call Jquery function from C#? I have tried using registerStartupScript but I don't understand how it works still and it isn't working anyway. It doesn't enter jquery function at all Page page = new…
sitBy
  • 271
  • 5
  • 19