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

lost in debug ... can't stop execution

I am trying to understand why an installation file hangs up using Windbg, but I am at a point where I can't stop the execution. As background, I had already been able to install this program on the same PC, but for some reason I had then…
Bob-it
  • 87
  • 1
  • 8
1
vote
1 answer

Function call in another namespace and class

I like to connect the DLL (which contains namespace Chart) and call the subroutine public Simple() from the second class (namespace WinApp2). There is a error: couldn't find type or namespace name Simple Although I consider a reference and put…
joe
  • 61
  • 2
  • 6
1
vote
1 answer

C# Late method call from constructor with properties (possible lazy evaluation)

I'm developing some kind of TCP-server and have concluded one nasty thing. Here is a piece of code: public void GetSessionId(byte[] secretPhrase) { var message = new ZllnpMessage { Head =…
user4959035
1
vote
2 answers

PJSIP. Outgoing call cut off at 20 sec at certain Wi-Fi networks

What steps will reproduce the problem? Startup application with PJSIP at iPhone 3G with iOS 4. Make outgoing call. Start conversation. Wait 20 seconds. What is the expected output? What do you see instead? Actual result: Outgoing call cut off at…
antonyo
  • 11
  • 2
1
vote
1 answer

Call in Jess manipulated Object from Java

) Im writing my Master Thesis and I´ve to use the JESS Platform for it. I want to ask a question. For example I have this Java Class which is named as "Main": public class Main { private String user = "Joe"; public String getUser(){ return…
1
vote
1 answer

How to call a function in a button in VB 10

i am only new in vb 10 and i am creating a vigenere cipher program but i dont know how to call a function in a button. here's my code: Public Shared Function Encrypt(ByVal cipherTxt As String, ByVal key As String) Dim encryptedText As String =…
1
vote
3 answers

iphone programming - how to record a call

Is there any API in iPhone SDK to record a call and play it later?
Satyam
  • 15,493
  • 31
  • 131
  • 244
1
vote
1 answer

How to call a value from a loop in a function?

Just need some tutorial on calling a function. I'm using a loop in it but I have not been taught the overall structure of functions/function calls. Any basic guidance would be great!!
John F.
  • 67
  • 3
  • 9
1
vote
0 answers

How to get call log with specific contact

i'm building an application that works wih call log, my questien is how can I get call log for specific contact?, i saw this thread: https://stackoverflow.com/a/14050724/4427731 But, if I want to use this answer I'll have to go through all the…
Nirel
  • 1,855
  • 1
  • 15
  • 26
1
vote
1 answer

call matlab function with parameters in c#

I created a matlab function like this function max = mymax(n1,n2,n3,n4,n5) %This function calculates the maximum of the % five numbers given as input max = n1; if(n2 > max) max = n2; end if(n3 > max) max = n3; end if(n4 > max) max =…
Milad Roohi
  • 17
  • 1
  • 8
1
vote
1 answer

Meteor HTTP.call("get") response

I am trying to pull basic information from various websites such as a title and description. I can successfully get a response object and what I get is the entire website HTML. I have been playing around with the options in the HTTP.call method but…
John McNeill
  • 143
  • 1
  • 12
1
vote
1 answer

Call method in partial class

I'm using Visual Studios. I wrote a method in a form1.cs file in a partial class private void TestMethod1() { } I want to call this method in form2.designer.cs, in the same partial class. I tried this: TestMethod1(); but I got the error method…
Annie123
  • 43
  • 8
1
vote
0 answers

AutoCall how to make a call at specified time

I am trying to build an app which lets users to make calls at specified time to a selected phone number. Here is the Code- protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); …
RajSharma
  • 1,941
  • 3
  • 21
  • 34
1
vote
1 answer

Getting Oracle Error ORA-06572 when calling Function with out parameter

I have tried many times to call below Oracle function that has Out parameter, and each time i get Error ORA-06572, Would you please provide me the best way to do this? FUNCTION GET_NUMBER_TYPE ( P_MSISDN IN NUMBER, …
1
vote
2 answers

Android Studio cannot resolve symbol ITelephony

I'm working on an Android app that is supposed to block incoming calls and (eventually) messages. So far I've read that you can use the internal ITelephony interface to intercept and eventually block calls. One step of that process involves creating…
Puscasu Emanuel
  • 145
  • 2
  • 7