Questions tagged [pass-data]
252 questions
0
votes
2 answers
Open activity displaying the detail of each row in listview
I want to open a list view of objects and clicking on a list row, it will open up another activity displaying the news detail of that rows. So far i am able to open a new activity that displays name of row when row in list is clicked.
But i dont…

Mesh
- 19
- 1
- 8
0
votes
2 answers
is it possible pass data between two different browsers?
I have to pass data between two different browser windows ( Eg: Chrome , Firefox ).
But the two browser windows does not have any parent window.
Assumption: Suppose if I know one browser window name , is it possible to get the data from other…

Human Being
- 8,269
- 28
- 93
- 136
0
votes
0 answers
Variable lossing data when pass paramter to overriden draw method
The view controller's class:
namespace DrawOverride
{
public partial class DrawOverrideViewController : UIViewController
{
float W, H;
CGPoint initialPoint;
Drawer dr;
public…

Teask Nick
- 69
- 7
0
votes
0 answers
C# passing data to another project
I want to pass the UserID from my project to another project exe.
I call second project with these codes.
using System.Diagnostics;
private void MenuItemClickHandler(object sender, EventArgs e)
{
ProcessStartInfo startInfo = new…

Mina Msr
- 1
- 1
0
votes
3 answers
startActivityForResult for three activities
I have three activities : A , B, C. My application flow is : A -> B & B->A or A -> B & B ->C & C->A.
So i used startActivityForResult to pass data from A to another activities and in A i also have onActivityResult to handle received data.
In B, I…

ducanhZ5Z
- 83
- 3
- 10
0
votes
1 answer
pass data from parent page to popup
I have an asp.net page which launches a child page in another browser window to look like a popup.
I want to pass 2 pieces of data to it from the parent page.
I know ots possible with javascript, but is there a way to do it using C#?
thanks again

DarkW1nter
- 2,933
- 11
- 67
- 120
0
votes
2 answers
Xcode 5 : passing data between UITableViewController and UICollectionViewController without Segue
I'm french, so sorry for my bad English...
I want to pass data NSString *cellSelected.
Here is my code, thanks to say what is wrong :)
#import "PhotoViewController.h"
@interface PhotoCategoryViewController : UITableViewController
@property…

Vjardel
- 1,065
- 1
- 13
- 28
0
votes
1 answer
data not getting passed with prepareForSegue or pushViewController
I have tried all the ways to pass this data between the view Controllers, both of which are modally represented as page sheet.
in ViewController 1 .h
——————————
@property (strong, nonatomic) NSMutableDictionary * updatableProduct ;
//@property…
0
votes
2 answers
pass selected tableview row data from one window to next window in titanium
I have developing the titanium tableview. here if i have select any row , need to pass the row values from one window to next window.
But From my code .,
Am getting the list of table rows successfully. the row data also passed.
But i have facing a…

user2218667
- 607
- 6
- 25
- 46
0
votes
3 answers
pass data between UIViewControllers
Leveraging RESideMenu https://github.com/romaonthego/RESideMenu in my app, now has an issue of passing some urlString related to lists in sideMenuViewControll to show its web page in right UIWebView.
Original codes like below:
case 2: {
…

S1U
- 825
- 2
- 14
- 26
0
votes
1 answer
codeigniter passing data from model to controller or any alternative
1.hi guys i'm new to codeigniter please help i want to pass data from id to controller to model
public function itemdetails(){
$id = $_REQUEST['id'];
$this->db->WHERE('assetTag', $id);
$query =…
0
votes
2 answers
Close popover by clicking UIButton in popover that created from program
I have a UIButton in tableViewCell that perform
-(IBAction)buttonClicked:(id)sender{
UIStoryboard *SB = [UIStoryboard storyboardWithName:@"ABC" bundle:nil];
UIViewController *VC = [SB…

user3322987
- 63
- 8
0
votes
1 answer
Pass number of clicks to another activity
Here is the case: I have 3 activities, first one contains a button and a TextView which displays a number of this button clicks. Second activity looks the same and it has to receive the number of clicks from the first one and increase it +1 if it is…

user3158610
- 37
- 7
0
votes
3 answers
iOS7 segue without using Storyboards
I have a app with UITableView (in PatientViewController) and every click on different cells should send different values to the ArticleViewController. I made every transition between ViewControllers with this code:
UIStoryboard *mainStoryboard =…

Arda Oğul Üçpınar
- 881
- 1
- 14
- 38
0
votes
3 answers
pass variables from php file to html file
so i have code php like this:
$fname="dor";
$fname=$_POST["fname"];
and i want to pass the $fname from the php file to an html file
in my html file i want to print on the screen "dor"
how to do it?
but when i run it i get this error:
Undefined…

Dor Cohen
- 117
- 1
- 4
- 10