can we use msgbox and inputdlg together to get input in app designer matlab
Show older comments
I have below code, I want to put msgbox and input from the user on the same dialog box, is there any way I can do it?
for d_i = 1:length(data_files_all)
msg_box_loop{d_i}=(sprintf([ '(%02d) %s \n'], d_i, data_files_all(d_i).name))
end
msgbox(msg_box_loop)
pat_idstr = input('Choose from above options: ', 's');
1 Comment
Les Beckham
on 19 Apr 2022
Accepted Answer
More Answers (0)
Categories
Find more on Naming Conventions in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!