How to create gui objects based on user input??(dynamically)
Show older comments
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...
Accepted Answer
More Answers (1)
Walter Roberson
on 7 Dec 2011
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
1 Comment
Vaidheeswara Sharma
on 7 Dec 2011
Categories
Find more on Variables 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!