Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

31
votes
3answers
25k views

How can I pass a reference to a function, with parameters?

I need to able to pass a reference to a function with a given set of parameters. Here is an example of passing a reference without parameters: var f = function () { //Some logic here... }; var ...
3
votes
6answers
128 views

Java: Calling self-invoking method without freezing?

So this is really complicated, it took me a while to realize what's actually happening. Hopefully you understand it better than me though. I have a Swing class that displays the GUI. In the GUI i ...
2
votes
4answers
86 views

Why is it possible to access a field without a getter?

I have the following example: package cage; import java.util.HashSet; import java.util.Set; import animals.Animal; public class Cage<T extends Animal> { //A cage for some types of animals ...
1
vote
0answers
50 views

Invoking a Web Service using Curl Script

How to invoke a Web Service using Curl Script but web service in turn should not return value. Curl Script should only invoke the Web Service?
1
vote
1answer
352 views

javascript new self invoking function

Hey, I've got a question about self invoking functions in javascript. What I'm doing is something similar to the following myNamespace = {}; //namespace for holding any objects/functions ...
1
vote
1answer
800 views

invoking a webbrowser to the second tab page visual c#

hey i am trying to create two webbrowsers on a sperate thread from the rest of the form. one goes to tabpage1 and the other is added to tabpage2. the first browser creates fine to page1 however the ...
0
votes
3answers
46 views

“Ambigous Match Found”

I've been trying to re-create BitConverter.GetBytes. However, every value type should be allowed to be passed. The method should then detect its type (Int32, Int16, Byte etc.) and dynamically call the ...
0
votes
1answer
35 views

WCF Invoking From .Net 2.0 Applications

if there are more than one bindings ( ie in Web.config) in WCF Services, how to differentiate and consume Basic HTTP bindings from .net 2.0 Framework.
0
votes
3answers
127 views

Getting info about invoking class

Is it possible to get information about class that invoking the other one? class Bar{ public Bar{} public String getInvokingClassInfo(){ return "..."; } } class Foo{ public ...
0
votes
3answers
770 views

Execve problem with invoking

Why it doesn't work :( I want to simply invoke a shell in C program by execve: #include <stdio.h> #include <stdlib.h> #include <errno.h> main() { char* path = "/bin/sh"; ...