How to create gui objects based on user input??(dynamically)
이전 댓글 표시
for example if user inputs 5 in a edit text box then it must display 5 edit text boxes from which i can collect data...
채택된 답변
추가 답변 (1개)
Walter Roberson
2011년 12월 7일
edit_handles = zeros(n,1);
for K = 1 : n
edit_handles(K) = uitable('Style','edit','Units','normalized', [(K-1)/n, 0, 1/n, 1]);
end
카테고리
도움말 센터 및 File Exchange에서 Variables에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!