![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/170412/image.png)
Implement "browse button" for interface with Matlab? (gui)
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I want to make an interface of my project that i can browse the file from my interface with "browse button". Then when i click that button, the name of file i choose will appear in the "Edit" style, and also in the the file will be read and be processed by the system.
what i have to do? Thanks before :)
0 Kommentare
Antworten (3)
Image Analyst
am 25 Apr. 2012
You might try uipickfiles: http://blogs.mathworks.com/pick/2010/02/19/file-and-folder-selection-gui/ It was a " Pick of the Week."
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/170412/image.png)
1 Kommentar
Matt Kindig
am 25 Apr. 2012
For the browse feature:
doc uigetfile
Then set the 'String' property of the edit uicontrol to the filename returned from this command.
[filename, pathname] = uigetfile();
set( yourEditHandle, 'String', filename);
0 Kommentare
Ka Mirul
am 20 Nov. 2017
I found a video that help me, it is about creating GUI to browse an image and display the image and its name. It should help you : https://youtu.be/7EmFShs5y9I
0 Kommentare
Siehe auch
Kategorien
Mehr zu Migrate GUIDE Apps 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!