File handling code for popup menu in gui
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I want to know the coding which is used to transfer the details in a popupmenu to a text file?
1 Kommentar
Antworten (1)
Kevin Claytor
am 20 Sep. 2012
You can use the get command;
get(handles.mypopup)
Or for specific cases;
get(handles.mypopup,'string'); % returns all strings in the popup
get(handles.mypopup,'value'); % returns the current popup selection 1,2,3,...
0 Kommentare
Siehe auch
Kategorien
Mehr zu Environment and Settings finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!