Populate filenames into a GUI listbox..
1 view (last 30 days)
Show older comments
Edmund Paul Malinowski
on 19 Nov 2015
Commented: Edmund Paul Malinowski
on 19 Nov 2015
Hey all,
Although i managed to sort (via help from Star Strider) to get only wav files loaded into a listdlg, i now have a GUI (designed through GUIDE) and need to do the same with the listbox i created on there..
The code i have for the simple listdlg is:
d = dir('*.wav'); % Select Only ‘.wav’ Files
str = {d.name};
[s,v] = listdlg('PromptString','Select a wav file:',...
'SelectionMode','single',...
'ListSize', [160 160],...
'Name', 'Choose Audio File..',...
'ListString',str)
if v
wav_name = str{s}; % File Name Of Selected File
wav_path = which(wav_name); % Path Of Selected File
else
fprintf(1, '\tNo file was selected.\n')
end
Obviously this code won't work with the GUI listbox so could someone point me in the right direction to get this working please :)
I've read a few threads on here and on other websites but i can't get them to work correctly.
I presume the goes in the listbox1_CreateFcn section?
Thanks,
Paul..
0 Comments
Accepted Answer
Ilham Hardy
on 19 Nov 2015
Hi,
To populates the listbox you can use
set(handles.*yourlistboxTag*,'String',*yourarraystr*);
and put the code in the _OpeningFcn of the GUI (created by GUIDE)
2 Comments
More Answers (0)
See Also
Categories
Find more on Migrate GUIDE Apps in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!