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
1 answer

What is wrong in my example of using the 'call' method in Actionscript 3?

I'm trying to learn OOP on my own using AS3, and I've given myself a challenge for that purpose. Because it's quite a complex one, I'm trying to understand useful tools in AS3. At any rate, the function.call (AS3 API's doc. here) method looks quite…
adentinger
  • 1,367
  • 1
  • 14
  • 30
1
vote
1 answer

is not recognized as an internal or external command, operable program or batch file

I'm trying to call an external function from Python: the function is vboxmanage.exe and I'm accessing it via subprocess call. The problem is that call cannot find the vboxmanage.exe program, even though it is listed in the path variable. I have…
Nickpick
  • 6,163
  • 16
  • 65
  • 116
1
vote
1 answer

Maximum call stack size exceeded

I try to make a little game but if I start it it says : Uncaught RangeError: Maximum call stack size exceeded" What's wrong with my code? ;-) function move(top,left){ y_ball = $('#ball').offset().top - $('#spielfeld').offset().top; x_ball =…
A.Bau
  • 82
  • 1
  • 10
1
vote
0 answers

Sub Called When Using Worksheet_Change Won't Run

I'm trying to call a sub called ScaleAxes that sits in a module elsewhere. The ScaleAxes code is: Option Explicit Sub ScaleAxes() Worksheets("Dashboard").ChartObjects("Measure Chart").Activate With ActiveChart.Axes(xlCategory, xlPrimary) …
nickelcap
  • 71
  • 1
  • 11
1
vote
0 answers

perl not found R

I am trying to call a perl script in R using the system command This is what I tried: system("perl R/BEMSER.pl -f R/fasta.txt -m R/matrix.txt -o R/result.txt -tu 100 -tl -100 -c", intern=F) I get the following error message: Warning…
MaxS
  • 978
  • 3
  • 17
  • 34
1
vote
2 answers

Call execute not working in SAS

data numbers; input num; datalines; 3 1 3 ; run; %macro temp(num); proc sql noprint; select count(*) into :count from numbers; quit; %if (&num eq &count) %then %put Match Found; %else %put No Match Found; %symdel…
mac_21
  • 113
  • 9
1
vote
2 answers

How to detect hangup of an incoming call which was not answered.?

I found many questions those are describing how to get the call state of a phone call using telephonymanager .And I was following this question in stackoverflow - How to detect when phone is answered or rejected. But this is to detect the various…
ARUNBALAN NV
  • 1,634
  • 4
  • 17
  • 39
1
vote
3 answers

JAVA - can't call my array method

Eclipse says: 'chiffres cannot be resolved to a variable', how to fix the call method ? public class Table { public static void main(String[] args) { Tableau1 table = new Tableau1(); table.CreerTable(); …
chris_cx
  • 55
  • 11
1
vote
1 answer

I want to send a function through serial to python on a RPi

So I need to control a RPi from a separate PC running Labview, and serial is the only way I've managed to get any communication working at all (why can't they just implement SSH...). I've got my python (2.7) program on the raspberry reading the…
James
  • 15
  • 4
1
vote
1 answer

How make Response.Redirect inside a Asynchronous call method - c#

I have a try-catch inside a method that is called asynchronously. When an error occurs, inside the catch I have a Response.Redirect because I need to redirect to the login page. This is my issue. But my problem doesn't involve things that expire,…
Mr. Ott
  • 311
  • 1
  • 4
  • 12
1
vote
1 answer

How do you accept a text file in a method?

What I'm trying to do is code a method that takes any kind of text input like "words.text" What I imagined it would look like would be public static wordcount(File afile){....} I want the method to be called such as wordcount("words.txt"); I…
1
vote
1 answer

How do you call a method with multiple arrays as input?

What I'm trying to do is call a method that takes two arrays as an input. It would look something like this. pairs({2,3,4}, {1,0,2}); The problem I end up having is that it's an illegal start of an expression. I've tried using braces instead and…
1
vote
1 answer

Xcode 7 GM - not able to call enumerateObjectsUsingBlock

I just downloaded xcode 7 GM and trying to call the method enumerateObjectsUsingBlock of NSArray with iOS 9 but it shows the following error at build time. Incompatible block pointer types sending 'void (^)(SKSpriteNode *__strong, NSUInteger, BOOL…
fashionprivate
  • 113
  • 1
  • 5
1
vote
2 answers

How do I call this array?

I'm currently working on this school project and I can't figure out how to call this method mainly because I don't even know what to search for. However I do believe that I am suppose to create an object and reference that? I'm also calling from…
user5171488
1
vote
1 answer

Can you block incoming traffic with an Android app?

Is it posible that Android would allow an app to block a phone call, email and or SMS from coming through to the device? e.g. User opens app and sets it to block all incoming info for 2 hours. App blocks all email, SMS and calls for 2 hours.
Madmax135
  • 23
  • 3