Hello,
I have two forms (Main, Login) when the user logs in and has the right email / password..
I would like it so I can display the username on the main screen..
I have a class and I'm setting the values inside the class however when I try to access the method it doesn't show up.. For example
(in the login form)
Account account = new Account();
account.setName("Phillip");
It would display Phillip in this form.. But when I try and do it in the main form..
(in the main form)
Account account = new Account();
account.getName();
It just displays as blank..
Can anyone help me please? :)