Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
6answers
17k views

Android: How do i pass an object from one activity to another?

I need to be able to use one object in multiple activities within my app, and it needs to be the SAME object. What is the best way to do this? I have tried making the object "public static" so it ...
6
votes
5answers
9k views

PHP Pass variable to next page

it seems pretty simple but I can't find a good way to do it. Say in the first page I create a variable $myVariable = "Some text"; And the form's action for that page is "Page2.php". So in ...
5
votes
3answers
80 views

Submitting From jQuery to PHP

Hello everyone so I have an issue. I have sent data to my jquery file and i tested the data string adn everything is stored where it should be but when i post it to my php file all the variables are ...
5
votes
5answers
104 views

Is it possible, and what is the best strategy, to pass objects by reference from one Activity to the next?

I have a simple Android application that uses an instance of a class, let's call it DataManager, to manage access to the domain classes in a Façade-like way. I initially designed it as a singleton ...
5
votes
6answers
342 views

Java String variable setting - reference or value?

The following Java code segment is from an AP Computer Science practice exam. String s1 = "ab"; String s2 = s1; s1 = s1 + "c"; System.out.println(s1 + " " + s2); The output of this code is "abc ab" ...
4
votes
2answers
85 views

Passing ArrayLists in Android

Im trying to pass array lists between activities in Android. The lists are strings. I've read alot about parcables. Would I need to create a parcable to pass a String array list? As of now im using ...
4
votes
2answers
80 views

Python argument passing in object oriented programming

I apologize if this was asked somewhere else, but I do not know how else to formulate this question. I am a physicist and Python is my first object-oriented language. I love this language for its ...
4
votes
6answers
458 views

Sending data with an event listener

I have a predicament: I want to send some data with an event listener but also be able to remove the listener. Here's the standard closure approach... var fn = function(e){method(e,data)}; ...
4
votes
2answers
236 views

C# late binding to com/activeX server, trouble with one method

I am fairly new to Interop/Com/ActiveX etc, so bear with me. I am late binding into a com/activex (not sure which one) server (basically an exe not a dll). I am successfully using all the methods in ...
4
votes
4answers
411 views

Is multiple-producer, single-consumer possible in a lockfree setting?

I have a bunch of threads that are doing lots of communication with each other. I would prefer this be lock free. For each thread, I want to have a mailbox, where other threads can send it messages, ...
4
votes
8answers
3k views

Multiple models sent to a single view instance

My terminology is probably way off here but basically I'm trying to learn the ropes of ASP.NET MVC and so far so good (largely thanks to Phil Haack and Scott Hanselman's tutorials). One thing which I ...
3
votes
2answers
76 views

Python referring to an item in a list from another list

I have a list of variables (listA) from from another list (listB). The problem I am having is that the items from listB are being passed by value to listA rather than by reference. Is there anyway I ...
3
votes
1answer
61 views

Passing custom objects from VBA to VBScript

I have a function in an Excel file that returns a custom class, when i try to call this function from VBScript i get an "Unknown runtime error" Sample VBA Code: Function myVBAFunc() As Variant ...
3
votes
1answer
152 views

Passing one object to many classes using Java

I need to pass an object from one class to many different classes. The aim of this is to create one method that broadcasts the object to any other classes that are listening. This is so that more ...
3
votes
3answers
532 views

Delphi - OLE variant passing problem (RsLinx OPC, Group Adding working with only from constants)

We got OPC job. I cannot installed RsLinx to my Win7 (and XP mode too) because of errors, so I send my test app to the real place, and somebody testing it. Because I don't have DLL, I cannot make ...
3
votes
5answers
243 views

C++ pointer question

still working at C++, but this came up in my book and I don't understand what it's for: MyClass * FunctionTwo (MyClass *testClass) { return 0; } My question is what is the signifigance of the ...
3
votes
4answers
466 views

C# out parameter value passing

I am using contactsreader.dll to import my gmail contacts... One of my method has out parameter... I am doing this, Gmail gm = new Gmail(); DataTable dt = new DataTable(); string strerr; ...
3
votes
1answer
739 views

multi-page forms and SESSIONS vs HIDDEN form data

I'm working on a 2 page form that POSTs a query to a database. Read-only, no writing. None of the information is confidential, nor will it every be. The site must be 100% non-JS compliant, so Ajax ...
2
votes
1answer
69 views

PHP Session Variable Passing

I can't seem to see why the $_SESSION['email'] isn't being passed Page 1 Segment <?php if (isset($finalusername, $finalpass, $finalemail)) { $myFile = "users/$finalusername.txt"; $fh = ...
2
votes
5answers
51 views

how do you pass arrays?

I have 2 classes. 1 class passes an ImageIcon[], and the other class takes the array and saves it. These are the cut down versions of each class: Class 1: monsterLabel[] is an ImageIcon[] saveLoad ...
2
votes
2answers
69 views

Passing spinner values

I'm trying to code a way to pass the values from two spinners into another activity. I found examples using the putExtra method online but I'm having trouble implementing it myself (I think I'm just ...
2
votes
1answer
479 views

ios storyboard passing data navigationViewController

I am new to obj-c and ios. I have problem with proper passing data between view's but not in standard way. Picture describing my problem: I performSegueWithIdentifier with one of two segue ...
2
votes
3answers
82 views

Passing a function as an argument in Javascript

I'm really struggling with this one - sure I'm missing something simple. Here's the code :- function webcamupdate(webcamurl) { alert("I am a function to update the webcam with the url ...
2
votes
3answers
83 views

PHP Variable not passing to function

I have the following setup: class.staff.php This defines many variables, the one I'm working with right now is $thisuser->getStaffLang(); class.language.php (Only a function, not a class) This ...
2
votes
1answer
153 views

Pass a simple variable using jQ & Ajax to Ruby

I'm new to Ruby overall (and to jQ and Ajax as well) but I always try to read before posting. I have not been able to send a simple variable of jqury to a Ruby Controller using Ajax (for a smooth ...
2
votes
2answers
99 views

Python passing dictionary to process in multiprocessing

I have a class that contains a (large) number of different properties, including a few dictionaries. When I pass an instance of the class through to a new process, all of the numeric values seem to ...
2
votes
1answer
110 views

C++: function with vector of any derived class on input

Let's have the following simple function (the body of my function is more complicated but for the sake of simplicity): unsigned VctSize(const vector< Base_class > vct) { return vct.size() } ...
2
votes
1answer
182 views

Is is possible to pass a QString to a QMessageBox?

I'm working on QT application where the user will enter their information into several QLineEdits. They then will click son a Submit button. I would like a QMessageBox to appear asking if they would ...
2
votes
1answer
667 views

refreshing a div tag after form submission - ajax (jquery)

I have a bizzare issue that I haven't been able to resolve no matter what I try. One section of ajax code refreshes the div tag successfully after form submission - exibit no.1, while another ...
2
votes
4answers
205 views

passing scalar reference in perl

I know that pass a scalar to a sub is actually passing the reference, but since I am new to perl I still did the following test: #!/usr/bin/perl $i=2; subr(\$i); sub subr{ print $_[0]."\n"; ...
2
votes
1answer
189 views

pass few properties to a custom action

What is a standart way of passing properties to a custom action without parsing them? I mean if I write "X1=X1value X2=X2value", then in my custom action X1 will be equal to "X1value X2=X2value", and ...
2
votes
6answers
122 views

PHP VS. HTML. Passing a value from html to php

I have a action.php which does some processing involving a MySQL-Database. In action.php I generate a variable $author with a string in it. When the script terminates it calls test.php by ...
2
votes
4answers
763 views

ASP.NET Passing Data Between Multiple Pages Session Question

So there seems not be any pretty answer to the question of how pass data between multiple pages. After having done a little homework here's why (or at least what I've gleaned): ViewState variables ...
2
votes
3answers
370 views

Creating Intents with putExtra

I have been creating Intents using putExtra() for quite a while now and just read in the Android documentation that I should be prefixing the 'name' with the package name. So, instead of 'putExtra( ...
2
votes
3answers
141 views

OOP: Passing an object vs. passing attributes into a method

In terms of a clean design, which is preferable? 1) Passing an object, say yourself, to another class method which will manipulate the attributes of the passed object directly. Inside Class A... ...
2
votes
1answer
581 views

Passing value from PHP script to Python script

I looked at the other questions similar to this one, but can't figure this out still. I have a basic php file that does this: ?php $item='example'; $tmp = exec("python testscriptphp.py .$item"); ...
2
votes
1answer
220 views

How to pass sting array in voldemort

Hi I am using Voldemort to store my data. My key is a word and values are number of occurrence of the word and the URL. For example: key :question value: 10, www.stackoverflow.com I am using ...
2
votes
2answers
160 views

Doubts about passing by reference

i'm studying C++ and, in particular,i have stopped on references. I apologize if my question will be trivial to most of you,but i would like to understand the output of this program: #include ...
2
votes
3answers
559 views

Passing javascript variable into php code without using GET parameters?

is there any way to get js variable in php, i try something funny like this: <script> var x = "random text"; alert("aaa<?php echo md5(;?>"+x+"<?php); ?>"); </script> Of ...
2
votes
2answers
260 views

codeigniter display warning error if argument in URL not provided

If I don't provide the value in the URL for Codeigniter, it'll display a PHP Error was encountered saying it's missing argument for a function call. I do NOT want it displayed at all. If there's no ...
2
votes
4answers
1k views

passing values between 2 different c++ files in same project

noob question right here. How do you pass values between 2 different cpp files in the same project? Do you make objects? if yes, how does the other cpp file see it? some enlightment pls.. EDIT: some ...
2
votes
2answers
342 views

PHP: passing GET between multiple pages

I'm building a set of pages where I have a number of GET variables and it is often valuable to keep passing it along to the next page. This leads to ugly code where I have to have "if this $_GET ...
2
votes
4answers
605 views

Passing a DefaultHttpClient between activites

I am trying to maintain my session variables that I get back in a cookie from my website in my DefaultHttpClient by passing the client between activities. Simply put how can I pass this object ...
2
votes
3answers
474 views

2 quick questions about passing by const pointer/const reference

1) Can someone explain the following? void OnCreate(HWND hWnd, const LPCREATESTRUCT lpCreateStruct) { lpCreateStruct->x = 2; // this compiles } void OnCreate(HWND hWnd, const CREATESTRUCT * ...
2
votes
9answers
297 views

Pass functions to a class

PHP mysql database I have created a follow on question to this one here that is specifically about pagination I need to call a method from one class in another, and be able to change the method that ...
1
vote
1answer
51 views

JavaScript getting variable from one function to another

I am having issues passing two coordinates from one function to another. I don't really know JavaScript, but it seems to be somewhat correct. Could you please let me know where is my error? ...
1
vote
1answer
80 views

How to pass additional variables to jqGrid formatter?

I'm trying to create some kind of reusable formatter for jqGrid column, I would like to create custom formatter where I'm able to pass additional data , something similar to this code: function ...
1
vote
2answers
43 views

how do I pass a variable from a class that uses Scanner to the main class?

how do I get the read txt file into the main class? //main class public class mainClass { public static void main(String[]args) { load method = new load("Monster"); } } //scanner class ...
1
vote
3answers
94 views

Can I pass all form data to a new popup window easily with javascript?

I have a form that I would like to make printer friendly in a new popup window. To do this, I would need to pass all form data to the popup. Is there an easy way to do this, like passing the form ...
1
vote
4answers
92 views

Another issue: Passing argument by reference

So i thought i had the idea of passing by reference down, but it seems i'm still struggling with it a bit. Here's my issue, i've been debugging my game for awhile, and i left the enemies section of ...

1 2 3 4 5