Generate User Request Editbox
조회 수: 1 (최근 30일)
이전 댓글 표시
Hi all, I was wondering if it was possible to dynamically generate editboxes in GUIDE.For example if a user requests 2 editboxes,2 editboxes will be given for data input,3 editboxes requested,3 shown,etc..Any ideas.?? Thank you all!!
댓글 수: 0
채택된 답변
Azzi Abdelmalek
2013년 7월 5일
you can create 5 editbox for example, make them invisible by
set(handles.editbox1,'visible','off')
When the user ask for an edit box, make one visible
set(handles.editbox1,'visible','on')
댓글 수: 0
추가 답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Data Type Identification에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!