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
3 answers

Call function if or after an element has been Loaded

My question is how to trigger or call a function after an element has been loaded or element on the page and don't want to wait for the full page load. Example Fiddle: http://jsfiddle.net/8bJUc/275/ Problem Fiddle:…
Aariba
  • 1,174
  • 5
  • 20
  • 52
1
vote
2 answers

How do i call an array from private methods?

so, i have to make an application that creates results, i have completed everything, I think???? but i dont know how to get me private method outputData to output the array results from the private method getValue. This is what i have //…
1
vote
1 answer
1
vote
1 answer

How can I pass this code successfully? Java Webdriver TestNg

I want to pass this code to my other classes so I don't have to keep pasting it. This is the class containing the code: package utility; import org.openqa.selenium.WebDriver; import org.openqa.selenium.chrome.ChromeDriver; import…
Elsid
  • 243
  • 2
  • 10
  • 25
1
vote
1 answer

Groupon divison json call error

I am new to PHP and trying to call this json to get all groupon divisons... I do not see the names. Not sure what is wrong.. any help ?
apptikka
  • 23
  • 4
1
vote
1 answer

Set up c++ compiler for matlab R2011b

I have Matlab R2011b and want to call some C++ code from it. I guess I need some mex-commands for that, and install a c++ compiler that Matlab will work with. I have Windows 7, 64bit, MS Visual Studio Community 2013 (Version 12.0) and am not sure…
Futurist
  • 75
  • 1
  • 8
1
vote
0 answers

How can i get the disconnect call cause without using logcat files?

I need to retrieve the disconnect call cause in android,i tried to use logcat files and it provide a good result but the problem is that we must root phones having api > 16 in order to access logcat files so i want to know if there is another way to…
1
vote
3 answers

Java How to call another class?

I am having trouble calling a java class from another class when a button is pressed. When I press Play the other frame comes up with the screen is white and I can't even exit it. other than shutting the whole eclipse program off. The new frame that…
DontMatter
  • 11
  • 5
1
vote
1 answer

Call a KeyDown Event

All I need is to be able to click a button and have it do the KeyDown event for Enter, I've tired doing KeyDownCheck(13); and similar things, and I can get into the KeyDown event, but I can't get it to recognize that I want Enter, and it doesn't go…
Doug
  • 119
  • 1
  • 11
1
vote
0 answers

Start Service When STREAM_VOICE_CALLS Is In Focus

I'm working on an Android application. I have a service (Float Service). This service is a circular button. I want that this service start only when STREAM_VOICE_CALLS selected. I mean that for example in VOIP calls or in phone calls and this…
Saman Sattari
  • 3,322
  • 6
  • 30
  • 46
1
vote
3 answers

Apply/Call method in Javascript: What is the first arguments "this"?

I am confused about using apply or call method correctly. I know that apply is passing an array to the function and call is passing strings to a function. For example the code below, what does "this"really have to do with the code? if it has nothing…
Someone
  • 157
  • 2
  • 3
  • 10
1
vote
0 answers

Access iPhone voice call data

I am trying to figure out which framework should I try to hook to, so I can have access to the voice call modulated data. I have access to the data after the AudioUnit has processed them from the code by this post: How can I record a conversation /…
John Bassos
  • 308
  • 1
  • 10
1
vote
1 answer

Beginner Programming SO with System Call

I have to sum two number while first number is not equal to -1, and the numbers have just one digit. I have to use read() and write(). #include #include int main() { int Somma; int One; int Two; do { …
Federico Cuozzo
  • 363
  • 1
  • 7
  • 20
1
vote
1 answer

Calling a gnuplot script with arguments on windows is not working

I tried passing variables to a gnuplot script as explained here, but I only get an error message: Non-numeric string found where a numeric expression was expected I am using gnuplot on Windows 7. I had a friend try the same thing on Linux Mint and…
schtandard
  • 387
  • 4
  • 18
1
vote
2 answers

Android Studio Webservice call "HTTP request failed, HTTP status: 401" Unauthorized

i try to connect my Android application to a Webservice. I wrote a new class and defined some Variables: I´ve got the Async Class to use the Network class GetValueTask extends AsyncTask { @Override protected String…
Ben Denger
  • 228
  • 1
  • 11
1 2 3
99
100