Top "Call" questions

Do not use this ambiguous tag.

Calling a function within PowerShell ISE

Could someone tell me why I can not call a function within a PowerShell script? See below my code: Write-Host "…

function powershell call
How to call a batch file that is one level up from the current directory?

I'm using a batch file in folder1/folder2/file.bat There is a batch file in parent folder folder1, that …

batch-file call
multiple argument subs vba

Using VBA with Access 2010, I have a sub: Public Sub setInterest(account As String, dmonth As Integer) ...somecode... End Sub …

vba arguments call
How to use Windows CMD pipe( | ) feature with CALL :Label command option?

I have a frustrating problem when I want to use the pipe(|) feature with the Window's CMD shell's CALL :Label …

batch-file cmd call pipe
How to call a private method from outside a java class

I have a Dummy class that has a private method called sayHello. I want to call sayHello from outside Dummy. …

java reflection call private
Java: Using an actionlistener to call a function in another class on an object from that class

Basically what I want to do is get a start button to initiate a method running in another class and …

java class methods call actionlistener
Navigating Java call stack in Eclipse

In debuggers like GDB, when you stop at a breakpoint, you can easily move up the call stack and examine …

java eclipse stack call
How do you call an instance of a class in Python?

This is inspired by a question I just saw, "Change what is returned by calling class instance", but was quickly …

python class call
Is there a way to not wait for a system() command to finish? (in c)

Similar to: program not executing anything after a call to system() I am fairly new to using C but basically, …

c++ c system call freeze
How can I define a C function in one file, then call it from another?

If I define a function in file func1.c, and I want to call it from file call.c. How …

c file function call