Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
2k views

How to pass parameters to anonymous class?

Is it possible to pass parameters, or access external parameters to an anonymous class? For example: int myVariable = 1; myButton.addActionListener(new ActionListener() { public void ...
6
votes
5answers
314 views

C#, fire event of container

I have a MyButton class that inherits from Button. On this class I have placed several other controls (Labels, Progessbar). The problem with this is that the controls on the Button make it impossible ...
4
votes
2answers
669 views

pass scroll event from uibutton to uiscrollview

i have horizontal scroll view which is extended from UIScrollView and i added uibuttons horizontally. i can only scroll out of the buttons area, but if i want to scroll over any buttons is fires ...
4
votes
5answers
207 views

Pass $this to function

How can I pass the $this (the self keyword) to a function in Jquery $(document).ready(function() { $('.nav a').click(function() { var direction = $(this).attr("name"); ...
4
votes
3answers
222 views

How do I pass a Range to a Sub in Word VBA?

I know this sounds simple, but seemingly it is not. If I write this in Word VBA, it always says "incompatible types" - why? And how do I make it work? Thank you very much for your help! Sub ...
4
votes
4answers
1k views

JQuery .click pass variables

propb. very simple, but not for me. Looking to pass a variable on a click function to show either div a or div b based on the a link clicked. My code is something like this ...
3
votes
1answer
556 views

How to pass a bash parameter to a python script in a cron job?

I have a python application that uses getopt() to parse the command line for parameters. It works fine in an interactive bash shell, or in a bash script that is called from the command line, bit it ...
3
votes
2answers
242 views

Boost python export singleton

I have a singleton (from boost::serialization): class LogManager : public boost::serialization::singleton<LogManager> { ... }; And wrapper for getting instance: inline LogManager ...
3
votes
0answers
72 views

Is it guaranteed to safe passing [c++] POD types to [c] or vise versa? [closed]

Possible Duplicate: C++ Class or Struct compatiblity with C struct I read this FAQ: What are Aggregates and POD's and how/why are they special? , and got a following question. Is it ...
3
votes
2answers
194 views

Passing a class object as an argument in C++

Suppose I had a class named foo containing mostly data and class bar that's used to display the data. So if I have object instance of foo named foobar, how would I pass it into bar::display()? ...
3
votes
4answers
847 views

Sending Delphi string as a parameter to DLL

I want to call a dll function in Delphi 2010. This function take a string and write it to a printer with USB interface. I do not know in which language the dll is developed with. According to the ...
3
votes
6answers
901 views

Is it a good practice to pass struct object as parameter to a function in c++?

I tried an example live below: typedef struct point { int x; int y; } point; void cp(point p) { cout<<p.x<<endl; cout<<p.y<<endl; } ...
3
votes
4answers
492 views

Passing by reference in Java?

In C++, if you need to have 2 objects modified, you can pass by reference. How do you accomplish this in java? Assume the 2 objects are primitive types such as int.
3
votes
5answers
896 views

Simple way to pass temporary struct by value in C++?

Suppose I want to pass a temporary object into a function. Is there a way to do that in 1 line of code vs. 2, with a struct? With a class, I can do: class_func(TestClass(5, 7)); given: class ...
3
votes
1answer
1k views

Passing command-line arguments to LaTeX document

I have a LaTeX file, 'myfile.tex' say, that sometime in the middle of the code an ASCII file with LaTeX macros has to be input, 'macrofile.tex, say, through an '\input{macrofile}' command. Actually, ...
3
votes
5answers
3k views

Pass a message to another exe from an exe C#

I have two exe running, c# console programs. From one, I need to tell the second exe to do something? How... ? I looked at ...
3
votes
4answers
2k views

C++ Passing a dynamicly allocated 2D array by reference

This question builds off of a previously asked question: Pass by reference multidimensional array with known size I have been trying to figure out how to get my functions to play nicely with 2d array ...
2
votes
5answers
74 views

android activity class constructor working

When considering the case with android activity, the first method to work is its onCreate method..right? Suppose i want to pass 2 parameters to android activity class say UserHome . For that am ...
2
votes
2answers
102 views

how can i unmask c# password textbox and mask it back to password

how can password textbox that set to : password_txtBox.PasswordChar ="*" to be unmasked ( from checkbox ) and then mask again without loosing the string inside the textbox
2
votes
1answer
523 views

Passing values between JFrames

I have two Jframes where frame1 has some text fields and when a button on frame1 is clicked, I open another JFrame which contains a search box and a JTable containing search results. When I click on ...
2
votes
1answer
88 views

Copy .html() of a div and pass it as the title attribute for an <a> tag via jQuery

So basically I have "Jack Shephard" under 'div.actor-name a' & I want that same value to be the title attribute for 'div.actor-image a'. Same thing for "John Lock" as well, so multiple cases. ...
2
votes
2answers
111 views

Get; Set; Variables

I'm setting up multiple methods and wondering how to continue to pass one variable (The "top" variable) to different methods. Main method: public static void Main(string[] args) { int[] ...
2
votes
1answer
61 views

Does it make sense to pass a dict together with a key to pass a storage location? Better way?

I would like to pass a storage container location to a class. Is there a better way to do it than by passing a dict and the key? Passing keys feels a little odd, though it seems to work. class ...
2
votes
4answers
141 views

Assign pass to a function in Python

I have a piece of code that defines a function that takes a function as an argument, like so: def stuff(n, f): f(n) Now, I want to provide some default value of f that does nothing. So I figured ...
2
votes
2answers
6k views

How to pass parameters on onChange of html select

I am a new bee at javascript and jquery. I want to show one combobox-A(Html select) with its selected id and contents at the other place on onChange(). How can i pass the complete combobox with its ...
2
votes
1answer
338 views

Is there a way to pass data between activities in an activity group?

I have all of my intents in activity groups so I can navigate easily using tabs. I've now encountered the problem where I need to pass information to another activity and I don't know how to approach ...
2
votes
3answers
68 views

Jquery - passing a duplicate of a <div> to another

When passing the contents of a <div> to another <div> with jquery as below, the original is removed. Is there a way to do this and still retain the original? Example Here - I want the ...
2
votes
2answers
252 views

Haskell IO Passes to Another Function

This question here is related to http://stackoverflow.com/questions/3066956/haskell-input-return-tuple I wonder how we can passes the input from monad IO to another function in order to do some ...
2
votes
2answers
208 views

Passing template into boost function

template <class EventType> class IEvent; class IEventable; typedef boost::function<void (IEventable&, IEvent&)> behaviorRef; What is the right way for passing template class ...
2
votes
2answers
1k views

jquery hover pass variable to callback function

I am trying to remove a title attribute for a link on hover and then add it back on mouse out. I would like to pass var hoverText to the hover out... Here is the code I have. Any ideas? $(".icon ...
2
votes
4answers
184 views

C++ is there a difference between assignment inside a pass by value and pass by reference function?

Is there a difference between foo and bar: class A { Object __o; void foo(Object& o) { __o = o; } void bar(Object o) { __o = o; } } As I understand it, foo performs ...
2
votes
1answer
280 views

very basic objective-c question

I wrote a simple program to understand how objective-c works. This program is the i-ching, an ancient divination based on six lines response, calculated after launching three coins for six times, and ...
2
votes
4answers
1k views

passing data from C++ to PHP

I need to pass a value from PHP to C++, this I think I can do with PHPs passthru(). Then I want C++ to do something to that value and return the result to PHP. This is the bit I can't work out, does ...
2
votes
5answers
1k views

Are arrays or lists passed by default by reference in c#?

Do they? Or to speed up my program should I pass them by reference?
2
votes
4answers
18k views

Load AS2 SWF Into AS3 SWF and pass vars in URL

I've got an AS3 SWF that I'm going to be loading other SWFs into. These child SWFs all take a single parameter on the URL. I can't seem to get it working when loading an AS2 child, and it needs to be ...
1
vote
2answers
70 views

How to Pass Multiple CheckBox values through AJAX and process them?|

Good evening guys, I'm trying to pass multiple checkbox values through AJAX and process them with a external .php script. Goal: delete multiple rows using checkboxes without refreshing the page. ...
1
vote
1answer
30 views

How to pass socket / file descriptor to other application in Android

Is it possible to pass Socket/FileDescriptor from one activity to other activity in other application? I tried using Intent but got java.lang.IllegalArgumentException: File descriptors passed in ...
1
vote
2answers
69 views

Passing array of objects from WCF to PHP - extracting the info

I have a method in a C# WCF service, which is responsible for extracting information from a database and then passing that information as an array of simple objects to a PHP site. public class Person ...
1
vote
3answers
68 views

Get a variable from url parameter using Javascript

I am trying to get a url value using javascript, so far I can only get pure numbers, not mixed numbers with letters or just letters. I can't find any working examples of a function that allows for ...
1
vote
2answers
61 views

Perl Script return value as input to second perl script

I need to write a script getPwd.pl($user) that parses a password file an returns the password for a particular user. file to parse (password.txt) DEFINE ALICE = 'alice#1'; DEFINE BENICE = ...
1
vote
2answers
74 views

asp.net mvc 3 pass parameters

I have controller which gets list of keys and i want to pass them to another controller action: public class DocumentController : Controller { private List<DocumentKey> _keys = ...
1
vote
1answer
90 views

Passing muliple string values to parent window using a form variable name

this might be the easiest problem to solve but I have searched through the internet with no luck. I have a Parent Window which creates a popup which retrieves possible addresses based on a partial ...
1
vote
2answers
33 views

Having IE Issues When Passing Object By Ref. and Dynamically Adding Properties

So, I've created a function to do some error checking on an XML file that I recieve from an AJAX call. Part of the validation is that the function then builds out an object for easy access while I ...
1
vote
1answer
44 views

script cgi: how to pass a number to the input field into that form? [closed]

Possible Duplicate: Post data and retrieve the response using PHP Curl? It's a tracking from a delivery carrier... The target url is the following: Link Is it possible to directly pass ...
1
vote
3answers
270 views

pass URL on to Contact form

Situation: A user is viewing a web-page using the contact option provided. Upon clicking 'Contact', I'd like to pass the URL of the currently viewed page as text into a field of that contact form. ...
1
vote
6answers
222 views

C++ how to pass values from one structure to another?

I have two different structures. The first, astm, which reads data from a .txt file, and the second, rebar, uses the values from structure one to read user input, and make calculations. Sturct astm ...
1
vote
3answers
354 views

MS Access: How to pass OpenArgs into a Subform?

EDIT: nevermind I just created a new form, it looks worse but it's much easier I have a form of orders and there are buttons and a subform on it. The form has a customer name that is given in the ...
1
vote
1answer
440 views

Pass parameters from C# .cs to .xslt

I'm trying to find an easy way to pass parameters from my C# class file (.cs) to my .xslt file. I'm not really working with a .xml file, so I don't know if something like this ...
1
vote
1answer
178 views

JSF:pass real locale parameter to resourceBundle call instead of default null

There is quit non-trivial menu on UI. Its items named in loop this way: loop start <li> <h:commandLink ...
1
vote
4answers
75 views

JavaScript passing argument problem

I have following code for (var i = 0; i < that.$el.mini.length; i++) { var pag = that.$el.mini[i].pagination; // Mini-Slider Pagination $('li', pag).each( ...

1 2 3 4