Tagged Questions
The calling tag has no wiki summary.
5
votes
4answers
323 views
How to call a procedure or function when we are not aware of the parameters?
My application has to provide the ability of calling different functions and procedures from external DLLs. So we don't know parameters' count and their types. What should I do to do this?
Let me ...
4
votes
1answer
570 views
Does it prohibited calling classic C function from Objective-C++ class method body?
I have experienced some strange behavior of Objective-C++.
I have an Objective-C++ class, and it calls a classic C function in a method body.
But linker cannot find the C function.
I described the ...
4
votes
9answers
338 views
How can I call a method given only its name?
I'm trying to have method void run( string method ) which would run method in that class. For example:
class Foo {
public:
void run( string method ) {
// this method calls method ...
3
votes
1answer
799 views
Video Calling/Conference API for iPhone
Currently am doing project on Family Business. In that I need some video calling sort of thing.
Is there any API available for video conference (or) Any Open Source is available?
Thanks In Advance
3
votes
4answers
107 views
C# accessing method redirection
Guys i'm really embaraced to ask for this, but i got stuck and i can't think for solution:
I found an IniParser library that i use for parsing settings from file. However the default approach is ...
3
votes
2answers
374 views
nasm/yasm arguments, linkage to C++
I've got a question concerning nasm and its linkage to C++. I declare a litte test function as
extern "C" void __cdecl myTest( byte i1, byte i2, int stride, int *width );
and I call it like this:
...
3
votes
4answers
450 views
PHP: use default value when calling a function
in PHP you can call a function. by not calling all parameters by using these statement.
function test($t1 ='test1',$t2 ='test2',$t3 ='test3')
{
echo "$t1, $t2, $t3";
}
and you can just use the ...
3
votes
5answers
270 views
How can I loop through a list of functions in Perl?
I have a list of functions in Perl. Example:
my @funcs = qw (a b c)
Now they all belong to this module Foo::Bar::Stix. I would like to call them iteratively in a loop:
foreach $func (@funcs) {
...
2
votes
4answers
40 views
Javascript confusing Object function “has no method” error
So I have a function which looks like this:
function Students(){
// Function add:
// Returns: add page
this.add = function(){
// Get template
$.get('view/students/new.html', ...
2
votes
1answer
138 views
Calling a Scheme function using its name from a list
Is it possible to call a Scheme function using only the function name that is available say as a string in a list?
Example
(define (somefunc x y)
(+ (* 2 (expt x 2)) (* 3 y) 1))
(define ...
2
votes
1answer
24 views
know filename:line_no where an import to my_module was made
I have a module my_module that it is sourced (imported) by lots of files using:
from my_module import *
Being inside the module, can I know which file imported this module ?
I would like to know the ...
2
votes
2answers
356 views
Call context in asp.net C#
What is call context.
How it is Used.
(i tried to study it from msdn but not that much clear.
http://msdn.microsoft.com/en-us/library/w61s16a1%28VS.71%29.aspx
2
votes
4answers
960 views
Calling popToRootViewControllerAnimated after dismissModalViewControllerAnimated
I am working application in which i calling presentModalViewController and once finished(calling dismissModalViewControllerAnimated:YES) it should immediately call popToRootViewControllerAnimated.
...
2
votes
3answers
603 views
In javascript, how do I call a class method from another method in the same class?
I have this:
var Test = new function() {
this.init = new function() {
alert("hello");
}
this.run = new function() {
// call init here
}
}
I want to call ...
2
votes
2answers
994 views
Finding out the filename that called my function in PHP
How do I find out the filename of the script that called my function?
For example,
function sthing() {
echo __FILE__; // echoes myself
echo __CALLER_FILE__; // echoes the file that called me
}
2
votes
2answers
2k views
how to call web form in vb.net using (asp.net)
I am beginer to ASP.Net. Can u tell how to call new page from the existing page.
In VB.net by executing the statement "Form2.show()", New page will be loaded. In the same way how to load new page in ...
1
vote
1answer
23 views
Opening phone application
This is most likely a very obvious answer, but I am just not seeing it. I want to open the phone application when I click a button.
[[UIApplication sharedApplication] openURL:[NSURL ...
1
vote
2answers
149 views
How to start a Python script from Django website?
I've made a Django website, whence I would like to call a Python program that I currently start from the command line.
I imagine doing it by clicking on a link or button.
I know this must be a ...
1
vote
1answer
109 views
Having an Intent go to a layout in my main xml file
Anyone know how to use an intent to display the view of one of my child layouts in my parent xml layout? I am using ViewFlipper and want a button to be clicked to display a specific view in my xml ...
1
vote
1answer
521 views
Photoshop: How do I run / call a JSX script from another JSX script in Photoshop?
I have variables and strings in one JSX script that I would like to use in another JSX script in Photoshop.
I wanted to just re-run the first script in the second, and get the variables in there that ...
1
vote
5answers
161 views
C# Beginner, writing/calling a Method
When we write a method, say an easy one like
void myMethod()
{
// code here
//
}
and we call it from within Main(), it's done essentially this way:
Program myProgram = new ...
1
vote
1answer
240 views
how to write a dos commands written inside a batch file into a javascript
I am using the following javascript:
function doPrint(){
netscape.security.PrivilegeManager.enablePrivilege('UniversalXPConnect');
var exe = ...
1
vote
1answer
178 views
What is an OpenSolaris syscall calling convention (x86)?
What is an OpenSolaris syscall calling convention (x86)?
F.e. I'd like to write a program in 32bit assembly which displays a string to the console. For this I'd like to use "write" syscall (no. 4). C ...
1
vote
2answers
86 views
How to pass data to many functions [closed]
I am new to C++ programming.
Now I have a program that consists of millions of lines of code in thousands of files. But when I saw the main() (command line) it was very small. Now how to pass data to ...
1
vote
3answers
689 views
How to execute Javascript function in C++
Please tell me, how to include a javascript header file or javascript function in C++ code. The C++ code is written in Linux(UBUNTU)?
Although i need to perform the above action only, but let me tell ...
1
vote
2answers
753 views
Get window handle of calling window
there is a software which calls a method in my C# dll. In this dll method i need to have the window handle of the program/window which called my dll.
how to get this "calling window handle"?
Thanks!
...
1
vote
4answers
5k views
How to call a function within $(document).ready from outside it
How do you call function lol() from outside the $(document).ready() for example:
$(document).ready(function(){
function lol(){
alert('lol');
}
});
Tried:
...
1
vote
2answers
911 views
Can a Grails Layout call a template?
I want my main layout to conditionally put in some blocks of html that I want to be defined in a separate file.
I have more than one kind of navigation bar defined. I want to have a file for each ...
1
vote
3answers
489 views
Problem with calling a run file from c# Application
I am using a C# Application to call a Batch file which compiles and run a java program. (This is a scraper project which grabs content from websites.) The batch file consists of following command:
...
1
vote
2answers
1k views
Android ending call and going to home screen
I tried to make an Android program where I can call a single number by clicking button. Works fine but as I end calling, the emulator shows call log. Instead of this I would that my program returns to ...
1
vote
4answers
5k views
calling Jquery function from javascript
How can i call a jQuery function from javascript?
//jquery
$(function() {
function my_fun(){
/.. some operations ../
}
});
//just js
function js_fun () {
...
1
vote
3answers
439 views
Calling unexported functions in Win32 C++
How would I go about calling an unexported function in Win32 C++?
1
vote
2answers
164 views
Calling a file from a website in Ruby
I'm trying to call resources (images, for example.) from my website to avoid constant updates. Thus far, I've tried just using this:
@sprite.bitmap = ...
1
vote
4answers
2k views
Javascript calling C# function under Silverlight
I have a Silverlight application using C#, with 2 main functions that I want to make accessible from JavaScript functions. I have done the RegisterScriptableObject() in the class and set-up the ...
1
vote
1answer
326 views
Error in getting a custom object inherited from a base class using web method ASP.NET
I have created a base class A and a class B is a derived class inherited from class A. Both classes are marked as Serialized. When I try to return an object of type B through a web method i am getting ...
0
votes
1answer
34 views
Silverlight 4 - Calling Method from DataGrid in MVVM-Pattern
I got a mvvm problem with calling methods from data grid in silverlight.
I would like to register a trigger on the property changed event for each row.
Problems:
- Binding a method to another data ...
0
votes
2answers
45 views
varargs parameter list created at runtime
public static void method(Set<?>... sets){}
Depending on program flow, above method is called with two sets, or with three sets, or more. (Not known at compile time).
Is there a way to ...
0
votes
1answer
46 views
Calling another class (no view) from a View Controller
I am creating an SQL project in XCODE. I have one view. My main view controller is loading the database to a table/array. I want to add another class just to handle the display of the table in a ...
0
votes
2answers
41 views
How to call a function in another PowerShell script when executing PowerShell script using 'Run With PowerShell'
I am starting to use PowerShell and am creating functions in a 'library' file to improve readability which I then call from my 'worker' script.
=================== Library file ...
0
votes
2answers
69 views
How to call Matlab functions from Java using matlabcontrol without starting new session every time?
I am using matlabcontrol to call Matlab functions from Java
My code works well, but it opens new Matlab session whenever I run my code in Java.
I edited according to Javadoc, but I guess I missed ...
0
votes
0answers
15 views
Doing command line calling research, need advice [closed]
I am a PhD student in Stockholm, studying VoIP technology. I am in the middle of writing my dissertation, about command line calling.
As I'm doing my researches, I've already found some very ...
0
votes
1answer
27 views
How do i call a CGI script from PHP
I have tried all the suggestions i have seen on how to do this but none seem to be working. Please how do i call an external CGI script (on another website) from a PHP script and collect the output ...
0
votes
1answer
29 views
Ruby function calling, stating the module
Is it possible to include a module in a way so that i can only call it by specifically stating which module the function belongs to?
So that, if I have a 'math' class, and function 'average', within ...
0
votes
2answers
285 views
IOS Method Calling
I have a method which i need to call within another method. in a UIViewController
//This is how i call methoed
tmpUITextView.text= [self ssidValue:1 arrayOf:ssidArray];
//my Method
+ (NSString ...
0
votes
2answers
68 views
Calling a method in one code behind from another code behind in WPF
What is the best way of calling a method that is in the code behind of a window from the code behind of another window? For example I have a method ShowSamples() in the code behind of my MainWindow, I ...
0
votes
2answers
91 views
Running QThread::run() immediately crashes the application
I start coding a small qt application to compute checksums. After the unthreaded code run fine I moved to a more responsive way since the mainwindow blocks while computing a hash of a bigger file.
...
0
votes
5answers
79 views
Do I have to use $this-> every time I call a function in php?
can I do the following:
Class myClass extends parentClass{
function myFunction(){
calculate();
}
}
Class parentClass{
public function calculate(){
}
}
or does php5.3 ...
0
votes
2answers
52 views
javascript calling info
I created a facebook fanpage(iframe) application. I would like to fetch the addressbar information from the fanpage iframe.
I tried alert(top.location.href) from fanpage iframe application, but ...
0
votes
0answers
30 views
Problems calling a View into an Activity class
I have an activity that controls an image view, called from a jpeg, allowing it to be dragged and pinch zoomed and want to be able to make the image view my own custom image of a canvas that I can ...
0
votes
1answer
66 views
How to know the url that is calling the destination url using curl in the destination url?
Okay, I have this setup:
//in example1.com, I am setting cURL <br />
$c = curl_init(); <br />
curl_setopt($c, CURLOPT_URL, 'http://example2.com');
//now in example2.com <br />
Is ...