call

javascript call function in another file

Hello, I have a WSH javascript containing a function. I want to call that function form another javascriptfile . How can I do that ? Thanks, ...

Communicating between a ruby script and a running c++ program

I have a c++ program which performs one function. It loads a large data-file into an array, receives an array of integers and performs a lookup in that array, returning a single integer. I am currently calling the program with each integer as an argument, like so: $ ./myprogram 1 2 3 4 5 6 7 I also have a ruby script, and I would like...

How do you pass a string as an argument to the "call" instruction in inline assembly?

Essentially, I'd like to be able to do something like this: //assume myFunction is defined and takes one argument that is an int char * functionName = "myFunction"; int arg = 5; __asm{ push a call functionName } Basically I want to call a function whose name is stored in a string. What would be the proper syntax for doing thi...

call javascript/ajax function from php

i have a little problem here!! after i submit my form, based on php response i want to execute another javascript or ajax function! this is my form: <form id="uploadForm" onsubmit="ytVideoApp.prepareSyndicatedUpload( this.videoTitle.value, this.videoDescription.value, this.videoCategory.value, this.videoTags.v...

Blackberry - manage conference call from application?

How to create conference call from application? ...

WPF - how to call another WPF with own service refences?

Hi, I have 2 WPF projects in 1 solution. Every of those projects have different service references. First project it's a window to login, second is a main window with app. It must be in separated projects, don't ask why. So, I do main window reference in login project and create main window object when login data is corect. Here sample ...

iPhone SDK: Launching an app after call ends

Hi, Is there a way by which we can make a call from within an app or launch an app immediately after the call ends? I know this is possible because some apps in the app store are already doing this. Thanks! ...

[Ajax] Call interrupted by page load

Hi there! I am a beginner using ajax and I always thought that it is completely asynchronous. But I discovered that a call can be interrupted by a page reload or a page change (like clicking on a hyperlink). I was under the impression that when an ajax call is started, it is carried out no matter what the browser does afterwards. Is tha...

Retain Count after function call. should i worry?

i usually dont check the retain count untill the program leaks. But today (i donno y) i checked the retain count and now i am confused. NSString *strErrorMessage; strErrorMessage= [NSString stringWithFormat:@"Email and Password are mandatory"]; NSLog(@"%d", [strErrorMessage retainCount]); // retain count 1 [objAppD...

Speed of [].forEach.call(... ?

Hi, I'm a big fan of using the forEach method on nodeLists like this: var nodes = document.querySelectorAll(".foo"); [].forEach.call(nodes, function (item) { //do stuff with item }); I was wondering though, does doing it that way take longer than the regular way? e.g. for(var i=0;i<nodes.length;i++){ //do stuff with nodes[i]...

php execute page

I want to call a page (click.php) on a click of a button, click.php executes a php-mysql command that inserts a value into a table. Is there a way to click the button and have the page execute without page load. An example: when you do +1 rep on this website to someones post, Im assuming its database driven and when you give them rep, it...

Block incoming calls

my VoiP-client would like to block all incoming calls to the phone while my own call is taking place. Is it possible to do this somehow? ...

Calling a function from a different view controller for iphone

Hi All, I have a problem where I want to call a function defined in one view controller from another controller. I'v try what seems llke a hundred different setups and nothing seems to work. I've posted the basic code and was hoping someone could tell me how they would do it. Basically all I want to do is call the MYBPress function defi...

How call c# method in javascript

Hi, I need call codeBehind method named RebinData() in a javaScript function How I do it ?? Regards ...

Cisco IP Phone Call Manager handle events

I 'm new on cisco IP Phones. I have a cisco call manager system also a 7970 Ip phone. The phone cominicates with Cisco Call Manager application. I want to listen events when user logon and send some commands to phone., Is there any idea about this task? Is there a way to got events from cisco call manager or i have to listen up the por...

Objective-C Class Question?

Hey, My head is about to explode with this logic, can anyone help? Class A #imports Class B. Class A calls Method A in Class B. This works great Class B wants to send a response back to Class A from another method that is called from Method A. If you #import Class A from Class B, it is in effect an infinite loop and the whole thing cr...

flickr API calls

Hi, im interested how many api calls per second or per minute i can do with my flickr API Key? is there a limit or is it unlimited? ...

Behaviour of openURL tel: on iPhone 3.0.1, is it asking for confirmation before dialing?

I know that on 3.0 there is a confirmation alert. I know that on 3.1 there is NOT a confirmation alert. How it is on 3.0.1? Is there some docs about it? Maybe someone can check on their iPhone? (On 3.0.1 of course) thanks ...

I'm having a hard time calling the variable from first frame.

here is how should my program be. In first frame, there is a textfield1 where a user input text and when he press a button, a new frame will be display with a textfield2 that displays the inputted text from the textfield1. please help me with the syntax. i'm still a beginner in java. much thanks guys. First Frame: textfield= new JTex...

Intent to be fired when a call ends?

Hi I have an already built application and I want to add a feature that has to be started when a call ends. How can I achieve that? I thought that declaring in my manifest something like this <activity android:name="Filter"> <intent-filter> <category android:name="android.intent.SOMETHING" /> </intent-filter> </a...