You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to mitappinv...@googlegroups.com
I was wondering how to use Global Variables or something else to transfer information across multiple screens. For instance could I have a textbox on screen1 and then tie the textbox.text to a variable That I can then access from screen2 or screen 3?
SteveJG
unread,
Feb 7, 2015, 3:25:04 PM2/7/15
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to mitappinv...@googlegroups.com
Global variables are NOT 'global.' Variables only work on the screen they are defined on. If you have lots of variables to pass, the best way is to use a TinyDB on each screen you require the variable. Create a Tag for your variable. The TinyDB on the other screens can use the same Tag. When on the other screen on its Screen2.Initialize, retrieve the Tag and assign it to a variable on that screen. Yes, you have to have a variable there and it can have the same name as the variable on your original screen.