how can I see what has been entered in the GUI1 and / or when I get back from the selected GUI2
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Hello, I have the following problem: I created two GUI (GUI1 and GUI2). In the first (GUI1) I have two edit text in which I insert numerical values and two pop-up menus, and a callback function "forward" that brings me to the next GUI (GUI2) that contains two radio buttons, two list-box and two functions callback: a GUI allows you to go to the next (GUI3) the other to return to the previous GUI (GUI1). But when I select the pushbutton 'Back' to return to the gui1, the values in the edit text are not saved as well as the selections made in the pop-up menu. I wanted to know, kindly, how can I see what has been entered in the GUI1 and / or when I get back from the selected GUI2.
I saved the strings in the workspace. How do I set the value stored in the workspace in the function _OpeningFcn? I do not want that when the gui1 is started for the first time creates an error because it does not know the value saved in the workspace. If you start for the first time gui1 creates error?
Thank you for your cooperation.
0 Commenti
Risposte (1)
Henric Rydén
il 19 Mag 2014
Hi,
If I understand this correctly, in some callback in GUI1, you are calling GUI2 and closing GUI1? You want to pass on parameters from GUI1 to GUI2.
You can transfer the parameters when you call GUI2 (that is, GUI2(x,y,z) ) This will be picked up in the opening function of GUI2 and you can store the values there however you want, i usually put them in the handles structure. Set a debug point in the OpeningFcn of GUI2. To solve the problem when you go back, use nargin or something similar to check if you're going back or starting the first time.
9 Commenti
Vedere anche
Categorie
Scopri di più su Environment and Settings in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!