Questions tagged [pass-data]
252 questions
-1
votes
1 answer
Getting data from another UIView subclass?
I have 2 UIView subclasses which are added in a UIViewController. 1 of the subclasses sets an integer and when when an IBAction gets called the other one should use it.
View1 .h:
#import
@interface View1 :…

Arbitur
- 38,684
- 22
- 91
- 128
-1
votes
1 answer
how to pass data between forms without buttons, c#
I have a log in form, in which the admin first log in and add some passwords and save them in an array of string, then the users should be able to log in with those passwords, but I want to know how can I have access to those arrays in my log in…

esmaily
- 3
- 4
-1
votes
4 answers
passing string values from one activity to another in android development
hi im trying to pass string values that a user enters from one activity to another and have those values displayed in a table on the second activity, however when we move to the second activity the table is displayed but its empty, i was wondering…

jordan
- 305
- 1
- 7
- 17
-2
votes
2 answers
How to pass data from parent form to the child form in c# winform
I am trying to pass some strings(device info) from the parent form(the main form )in MDI to the child form
The child form displays
Device name
Device model number
Manufactured date,
All these features should be passed to the child form when the…

Lha
- 25
- 8
-2
votes
1 answer
Passing data to a State from his Statefulwidget
this is my code and i want to access to "initialValue" propierty from the StatefulWudget but for some reason marks a error in counter = widget.initialValue
the image with the error from vs code.
I'm following a course and i don't know if something…

hpinzon15
- 11
- 2
-2
votes
1 answer
How to pass data from an api in a tableViewCell, to another tableViewCell in swift 4?
I am working on a tv tracking app where you can search for tv shows and save them to see when a new episode comes out.
My question is, how would I get the movie data from the cell in the searchTableViewController and present the selected data into…
-2
votes
1 answer
Pass Form Input Values (in real time) to another form on same page (hidden)
I have two forms on the same page with a link via javascript that switches back and forth between the two.
The page loads with form1 (for interested members to sign up) but at the bottom it says, "Are you a business? Click here", which then hides…

minemindmedia
- 293
- 2
- 5
- 19
-2
votes
1 answer
How to pass jsonData to other ViewController in Swift?
I am trying to send the jsonData of the user as soon as he logged in to the next view controller and display some details in it. But I am unable to pass that jsonData. If I declare a global var in the firstViewController, I can pass it to…

AAA
- 1,957
- 4
- 23
- 42
-3
votes
1 answer
pass data from activity to fragment but always return null
I want to pass data from MainActivity to Fragment i'm using this for my action
switch (txt.getText().toString()){
case "Jumlah(Tinggi-Rendah)":
dialog.dismiss();
cond = "desc";
by = "jumlah";
Log.e("By1 :…

matin
- 11
- 2
-3
votes
1 answer
Individual Class For Sprite
I've been using objective-c and sprite kit for a while, but always used one enormous class for everything. For this app, I need to have multiple classes. How can I have a class, lets say named MySprite.m, which would have all the code for the…

TheCommonGiraffe
- 23
- 2
- 7
-4
votes
1 answer
How to pass data from a user activity to a recyclerview?
I want to make a interface which user can add its data to activity and after its must be show on in recyclerview, I used manual data adding in code it's working but I want to user must be able to store its data on application and can see &…

Azami
- 1
- 4
-4
votes
3 answers
How to pass data from activity to another activity without start this second activity?
I want to pass data from one activity to second but without start this second activity. Because with Intent we have to start the activity with an intent, but I want to not start this activity. How can I do that?

Radek
- 1
- 1