can we use msgbox and inputdlg together to get input in app designer matlab
조회 수: 1 (최근 30일)
이전 댓글 표시
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');
채택된 답변
chrisw23
2022년 4월 20일
You can build your custom dialog as an appdesigner app and call it from your main app. You will have full access to any uicontrol data of your custom dialog.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Naming Conventions에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!