Tagged Questions

0
votes
4answers
145 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 …
0
votes
4answers
65 views

What is pros and cons of calling procedures in VB.NET?

Hi All, I would like to know the pros and cons of calling procedures with Call Keyword and without Call in VB.NET? Private Sub ProOne() // Code Are Here End Sub Private Sub Calling() …
0
votes
1answer
39 views

What are best efficent ways to call WebService methods from JavaScript?

Hi, Actually I came up with this question, because of an example in one book I have tried and which did not work somehow. I am following "Professional JavaScriptâ„¢ for Web Developers Nicholas C. …
0
votes
2answers
99 views

what about calling aspx in php?

first of all thanks for those who replied with this question, now i am working on the vise versa of calling aspx in php i hope you can help me. this is my code <html> <body> …
2
votes
4answers
86 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 …
1
vote
4answers
97 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: …
0
votes
1answer
28 views

How to stay in same page when executing a Server request in a portlet

Hi, I am calling a webpage from a portlet. The webpage is a form for user to enter data and has a button which submits the user data into Database. But the Button also redirects the portlet site to …
0
votes
3answers
141 views

Calling unexported functions in Win32 C++

How would I go about calling an unexported function in Win32 C++?
0
votes
1answer
102 views

calling an animation?

I have placed the following code in my program CATransition *animation = [CATransition animation]; [animation setDuration:0.5]; [animation setType:kCATransitionFade]; [animation …
0
votes
4answers
318 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 () { …
2
votes
2answers
216 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 …
0
votes
4answers
118 views

How to call Value from web form?

I creat one WEB project, this project contain tow WEB FORM, In the first Web Form Design i have tow TextBox for Entring the date(All dataTable between this tow dates) and one Button, I want that when …
2
votes
5answers
182 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) { …
0
votes
3answers
33 views

Is it more efficient to include a “check location” function in a “move function” for a game, or outside as an external function?

I'm creating a game in C++ (speaking of which, does the code I use matter?), which coudl be loosely described as a board game, and I'm wondering which of these two "check if character is out of …
0
votes
2answers
577 views

content page class method calling from master page class

I have a public method in my content page class, I want to call this method from master page class Thanks

1 2 next
15 30 50 per page