Questions tagged [pass-data]
252 questions
0
votes
1 answer
pass data between controllers (service) angular
I'm creating a quiz and I want to add the answer the user gives to an array (myAnswers), when the quiz is finished, I redirect my user to the summary page, where he can see the correct answer and the answer he has given. Those are both different…

Warri
- 217
- 1
- 3
- 14
0
votes
1 answer
Pass data from class to Form through different class
Is there a better solution to send data from one class to another through different class? I have image in class ImageProccessing and I would like to send him to class MainForm.
MainForm.cs (GUI)
VideoProccessing.cs
ImageProccessing.cs
I have this…

Radicz
- 145
- 1
- 9
0
votes
2 answers
When transferring from activity 1-> 2 -> 3 ->2. Getting back at activity 1 rather than Activity 2
Suppose, I have three activities A,B,C.
The flow of the program is supposed to be A->B->C->B.
I have intents to stimulate an activity for picking color(C).
The problem that I am encountering is that the Activity C is being called…

vatsalya_mathur
- 325
- 1
- 3
- 11
0
votes
1 answer
Error while passing data from a tableview to a detail tableview
I'm going to become a little crazy for this solution..
I have a TableView with his list of item (an Array from csv Parsing), I need to pass some data from this Array to the list of a Detail TableView when I select a cell..
I reed a bit of…

Shafa95
- 201
- 2
- 14
0
votes
1 answer
Passing Data with IBAction
I'need to pass data from a UIviewController to another UIviewController with an IBAction because I want to implement a custom transition effect.
to show the next view I use this code, it work perfectly:
NSString * storyboardName =…

Totka
- 627
- 6
- 24
0
votes
3 answers
Passing Data from multiple Activities to a single activity
Hello Everybody,
    I have an app that a couple of classmates and I did for a class project. We are now continuing the app to improve and streamline it. Here is what I have so far:
SplashScreen
HomePage
Hole 1 -…

James Smith
- 3
- 2
0
votes
1 answer
pass form data to a new window
I'm trying to figure out how to pass form data collected from sql database to a new window. The idea is when the user click 'Rediger' (edit), that a new small window will open up with the current data and an input field for the user to change the…

M Nielsen
- 67
- 1
- 9
0
votes
1 answer
pass form data in a new window to edit and save
I'm trying to figure out how to pass form data collected from sql database to a new window.
The idea is when the user click 'Rediger' (edit), that a new small window will open up with the current data and an input field for the user to change the…

M Nielsen
- 67
- 1
- 9
0
votes
2 answers
Passing data from one fragment to next fragment in android
In one of my project I am using 2 fragments.One fragment is displaying a list of items.So I want when the topic will be selected in first fragment the details should be changed in another fragment.Data I am able to pass from one fragment to other…

android
- 33
- 3
- 12
0
votes
1 answer
Mono For Android: Sending data from clicked listview item to Alert dialog it initializes
Click:
lstText.ItemClick += (sender, args) =>
{
Logon(GetString(Resource.String.LogonMessage), sUUID, sUserId, sUserPIN);
};
Alert Dialog:
private void Logon(string message, string sUUID, string sUserId, string sUserPIN) //
{
…

Paradox Code
- 148
- 2
- 14
0
votes
6 answers
pass value from 1st to third activity in android
I have develop one android application.
Here i have to pass the value from 1st activity to third activity.
The value is passed from 1st to 2nd activity successfully developed.But i can't pass the value from 2nd to third activity.please help me how…

user1897014
- 143
- 4
- 14
0
votes
1 answer
How to pass data from modal view controller to parent view
i am severely struggling with what seems like such a very simple thing: passing data from modal view to its parent. I have tried countless ways and to my surprise there is not much online and nothing seems to match what i'm trying to do. I'm using…

mreynol
- 309
- 3
- 17
0
votes
2 answers
xCode: Passing a Label text into a custom added subview
I have rewritten this to try and make it more descriptive with more code hopefully:
I have set up a separate UIView class called: pageTitleView code below:
header file:
#import
@interface pageTitleView : UIView
@property…

Simon Davies
- 3,668
- 9
- 41
- 69
0
votes
4 answers
Error in passing data
I have a listview of names(imported from database).When a name on the list is clicked,I want to get the details of the name from the database so I have to pass the name to the next class where I am retrieving the details.I am trying to pass a name…

chitranna
- 1,579
- 6
- 25
- 42
0
votes
1 answer
How to pass data between AppDelegate and SecondViewController
I've got @property NSDate instance and it get time in method - (void)applicationWillResignActive:(UIApplication *)application
.
I've got ViewController and SecondController connected to Storyboard so in code in AppDelegate Implementation block i…

Tomasz Szulc
- 4,217
- 4
- 43
- 79