This tag is not recommended. It could be considered ambiguous, and has no real search value.

learn more… | top users | synonyms

0
votes
0answers
20 views

Calling C functions from fortran

I'm trying to call C functions using fortran (need this for a project). So first was trying to simply call a non parametrized, void function via fortran. Kindly help me resolve the following errors ...
0
votes
1answer
21 views

Calling pyqt windows

I created 2 windows on QT4. In Idle i managed to show Window 1 and adding a closing action once button is clicked. I would like to call and display window 2 by clicking this button. My code is: ...
0
votes
2answers
56 views

Why is my JavaScript code not calling my function?

I am fairly new to JavaScript and made a VERY basic choose your own adventure game with a switch statement. When I attempt to call my function using a button it is unsuccessful. My JavaScript alone is ...
0
votes
0answers
20 views

Put my activity in the foreground even someone is calling in Android

I want to develop an application in Android; something like current caller ID (http://www.androidcentral.com/current-caller-id) in which my application displays the Facebook picture and status when ...
0
votes
2answers
43 views

Activity stops when call comes

I am developing an application in which My idea is when someone installs the application the user will get a call from a number which is generated randomly, then the application will check if the user ...
1
vote
2answers
54 views

Calling javascript from page behind on page load event

I am trying to call the javascript "DisableAllPopUpTxt()" from the page behind with following code: ScriptManager.RegisterStartupScript(GetType(), "Javascript", "javascript:DisableAllPopUpTxt();", ...
0
votes
0answers
29 views

How can I check if somebody answers my call in Android

I can call some to with this code: private void makePhoneCall(String number) { try { Intent intent = new Intent(Intent.ACTION_CALL); intent.setData(Uri.parse("tel:" + ...
0
votes
0answers
46 views

calling a method which has parameters from another class when button is clicked

I am using Eclipse Juno and Android and Google plugins. I have created a button and when it is clicked I want the onClick button to call a method from another class. I thought I had the answer but it ...
0
votes
3answers
64 views

Python call a function using a string from users input

In this program I am using a a user input to select which alignment the user wnats to align some text, at present I'm usinf if statements like so... if alignment == "Left": line = ...
0
votes
1answer
36 views

How can I correctly call this function?

I'm having trouble calling this function. It's supposed to reformat a name from "First Mid Last" to "Last, First MidInitial" (If a middle name is available, else just "Last, First)). Though if I ...
0
votes
3answers
48 views

How can i call a class from a different jar file?

If I have a program with several jars, how can I call classes which are in another jar?
0
votes
2answers
59 views

Cant find Symbol error

The compiler gives me an error message saying it can't find movies[x].getTitle() and movies[x].getYear. I've been wondering if it's a problem with going through the interface to get to the classes ...
0
votes
2answers
33 views

revealing characters in a hangman game

so what i am supposed to be doing, is the user inputs a letter and the program checks to see if the letter is part of the word, from there i cant figure out what i code i need to use to make one of ...
0
votes
2answers
41 views

Changing characters of a word to asteriks

This is supposed to change randomWord to all asteriks WordHider secretWord = new WordHider(); secretWord.setSecretWord(randomWord); System.out.println(secretWord); and the ...
0
votes
3answers
35 views

calling a method not getting result

so im just trying to print a random word and thats it Dictionary secret = new Dictionary(); secret.getRandomWord(); System.out.println(secret); ^all that is in my main ...
1
vote
1answer
102 views

Calling a function from another class - XNA 4.0 - C#

Basically I am trying to implement a save function into my game. When you click save in the menu, the game writes to a .txt file. From the MenuManager class I want to call a function within Game1.cs ...
1
vote
1answer
79 views

Starting the broadcast reciver when ever new sms arrives

I have created a remote service which , is calling a broadcast reciver which in turn call the alarm manager for triggering the alarm , but i want to trigger the reciver through the rempte service when ...
0
votes
4answers
47 views

Java GUI Blank and nullpointerexception

I fixed that now when I click on my calculate button I get the following: This is working all except for the calculate button now, and that is the most important part. Thank You all in advance for ...
-2
votes
4answers
66 views

Trying to compare three numbers to a combination from another class [closed]

im trying to get my code to call another method from a given class and then individually compare numbers to a random lock combination public class Lab9 { public static void main(String[] args) { ...
0
votes
5answers
39 views

Calling a method not working

so ive got public static void main(String[] args) { System.out.println("Trying to open lock"); System.out.println("Trying "); ComboLock numbers = new ComboLock(); int number1 = ...
0
votes
0answers
49 views

How to check calling (carrier) signal IOS

I'm searching how to test the calling signal (if there phone is available to make a call or not. Not the internet or cellular connection, just the calling signal). Is it possible ? I found for ...
1
vote
4answers
64 views

Firebug is skipping lines after $(document).ready(function() while debugging

I just want to create a dynamic URL. I am calling the listServices method and it is working as expected where as the getPortNumber which i am calling from listService is not working. I added dubug ...
1
vote
2answers
137 views

VBA Excel Linking value from Main Sub to its Called Function

I am still very new to vba in excel and is facing difficulties solving this problem..I really really hope someone could enlighten me where did my code went wrong and provide me with a solution as ...
0
votes
2answers
52 views

Click to call application in iPhone

I am wondering to see a iPhone application called Call Recorder - IntCall: https://itunes.apple.com/in/app/call-recorder-intcall/id521680097?mt=8 Can anybody explain how a number can be dialed via an ...
1
vote
5answers
70 views

Trouble calling a function

This is my first time posting after looking through for a while and I am new to javascript, but I am having trouble figuring this out. I am trying to call a function I have created, and everytime I ...
0
votes
0answers
39 views

How to call object tree use string

Question about C#. I need to call object tree use string. How it look for PHP: $myVar="Hi my friend!"; $need="myVar"; echo($$need); // Hi my friend!
0
votes
5answers
45 views

Error in calling function

While compiling this code in the terminal, I am getting an error saying : newfile1.c:17: error: conflicting types for ‘average’ newfile1.c:2: note: previous declaration of ‘average’ was here I ...
1
vote
2answers
83 views

calling int function in main() to display current working day

I am very new to java and found the following code to get the number of working days excluding Saturdays and Sundays. I need to know how I can call this function in main() to display workDays for the ...
-2
votes
6answers
97 views

run php function on click of <a> tag

Ive got a php function that packages all files of a type in a directory into a zip file and downloads it. Ive set the index.php to shows me all the files in the directory so i can download ...
0
votes
4answers
138 views

How to call Java class in ActionListener in another class

So, I'm trying to finish a program that creates a GUI that can translate assembly language to machine code. There are 7 classes needed for this program but the part I'm having trouble with is getting ...
0
votes
2answers
141 views

How to impelment Phone call animation like iPhone's default Phone application does?

My application has VOIP calling. In that I want to implement animation like iPhone's default Phone application does when User Clicks on Call button on dial Pad and animation that is done on End call ...
0
votes
1answer
28 views

How to update another class's method?

There are two classes (class Home and class Away). Class Away has a method called update and update method has some arguments(speech,writing,reading) whose values are assigned in class Home. And ...
0
votes
2answers
60 views

Calling a function in C not producing a function

I am new to C and it is so far very, different. Nevertheless I am trying to call a function from the main function using scanf and a switch statement however I do not believe the function I call is ...
4
votes
3answers
173 views

Why are using colon while calling function in javascript

I see most of the times people call javascript function using colon (:). Like onclick="javascript:functionname();" The same function is working without javascript: and I'm curious to know when to ...
1
vote
2answers
46 views

Calling a method within an object from a different file? [solved]

Hello guys decide to refactor my javascript and try to seperate my onpage script to external js file. please correct me if I am wrong, am still new to javascript, but this is the current setup I ...
0
votes
1answer
96 views

calling command line arguments in python3

I am writing a program in Python 3 that will take data from a csv file, make adjustments to it and write the new data to a csv file that will be named by the user. I'm just trying to understand the ...
0
votes
2answers
126 views

Check if mobile network has disconnect a call

I wonder if it's possible to check if mobile network has disconnected a call, and thereby indicating the receiver is busy. I've googled around like crazy but has not found any thing on this, so any ...
1
vote
0answers
64 views

Aspectj access parameter of the calling method and the return value of a called method

I have to put some status data into the context object. This has to be done in lot of places so I thought it would be nice to solve this with AOP. The problem is that I don't know how to access the ...
-1
votes
1answer
205 views

Fixing 'Conversion from string to type double is not valid error in VB.NET'

When I call the function in the class file, I am getting an error: Conversion from string to type double is not valid error in VB.NET Here is the class file function and also the .aspx page ...
-1
votes
2answers
62 views

perl - calling to ref did not return anything

can somebody explain why calling ref did not return anything ? [pista@HP-PC ~]$ perl -wlae '$var=1; print ref($var)' [pista@HP-PC ~]$ perl -wlae '@var=1; print ref(@var)' [pista@HP-PC ~]$ perl -v ...
1
vote
4answers
216 views

c++ - calling function by address fails

I was reading up on various things on CodeProject and I found this article: http://www.codeproject.com/Articles/29527/Reverse-Engineering-and-Function-Calling-by-Addres So what I did was I created an ...
0
votes
2answers
43 views

Issues with Ajax and Php posting

Hi i have problem with my ajax and posting it to php. Basically when i click on a a:tag i want to delete that specific thing in the mysql database. This is how it is now: Javascript ...
0
votes
1answer
133 views

fluent nhibernate calling oracle function

`i try to call an oracle function inside a package function : FUNCTION test_func (I_PARAMS IN TPARAMS, O_RESPONSE_CODE OUT VARCHAR2, ...
1
vote
1answer
64 views

How do I call a method from another class?

I am having problems accessing a method that is in a separate class, when I try to call it from my main class. This is the method class RobotData { private int junctionRecorder(IRobot robot) ...
1
vote
1answer
412 views

Create an account by calling REST APIs

I logged on to a webste and it asked me this "Call our APIs and we'll call you back". The structure is "/users/:id/apply". I wonder how can I enter this type of site which may require me to check ...
0
votes
1answer
66 views

Can you dial Twilio toll-free numbers from numbers outside of the USA?

I've called from countries (mainly in asia) to 1-800 and 1-888 numbers where the call doesn't get connected due to 'the number not existing'. Similarly, I've tried calling from the US to Canada to a ...
2
votes
3answers
41 views

Calling an object dynamically in Matlab

Say I have the following variable myClassName = 'myClass'; And I want to call an instance of the myClass constructor function, ie. myObject = myClass(arg1, arg2, ..., argn); Let's say I want to ...
1
vote
2answers
118 views

How Can I Call PL/pgSQL Function From C++ Code

I am trying to call a function which is declared in PostgreSQL with PL/pgSQL. For that I write the code below. My function is working but after that I am taking a "PGRES_FATAL_ERROR". Also when I ...
3
votes
1answer
60 views

Adding an extra button in existing android calling application?

What i want that when a call will come on my android phone then a calling screen will come. I want to update that screen-like if there are to buttons like 1)attend call 2)end call. I want to add a ...
0
votes
1answer
135 views

Sending information to listbox from a class to a Form

I am trying to send information to a listbox to a Form from a class. Sounds simple enough. However it just won't show anything after the method has run. This is my Class and Method 'Testclass' that ...

1 2 3 4