Search All of the Math Forum:
Views expressed in these public forums are not endorsed by
Drexel University or The Math Forum.
|
|
Alex
Posts:
16
Registered:
2/11/11
|
|
Re: pass variables between GUI's
Posted:
Apr 11, 2012 8:45 PM
|
|
"sneal " <sneal.gomes@yahoo.com> wrote in message <ji2csg$itu$1@newscl01ah.mathworks.com>... > i have created a matlab GUi using GUIDE for user registration.There are 2 GUI's , 1st asks for user details(namw, pwd, etc.) and on clicking the Done pushbutton the Re-enter ur pwd GUI opens. > My doubt is how do i pass the pwd from 1st GUI to 2nd GUI for String comparision. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
setappdata(0, 'pwd', pwd); % put this in the gui where the password is entered
pwd = getappdata(0, 'pwd'); % put this in the gui you want to send pwd to.
there is a lot on newsgroups about this if you search too.
|
|
|
Date
|
Subject
|
Author
|
|
2/22/12
|
|
sneal
|
|
4/11/12
|
|
Alex
|
|
|