How to create gui objects based on user input??(dynamically)

3 visualizaciones (últimos 30 días)
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...

Respuesta aceptada

Sean de Wolski
Sean de Wolski el 7 de Dic. de 2011
How about using a uitable instead?
doc uitable
Else use a for-loop to build n edit boxes where n is constrained to be below some large number.
  3 comentarios
Sean de Wolski
Sean de Wolski el 7 de Dic. de 2011
Then change their 'visible' property 'on'/'off'. But let me reirterate - I think a uitable or perhaps an input dialog (doc inputdlg) are a better approach.
Vaidheeswara Sharma
Vaidheeswara Sharma el 7 de Dic. de 2011
Thanks dude... i'll work on it!!

Iniciar sesión para comentar.

Más respuestas (1)

Walter Roberson
Walter Roberson el 7 de Dic. de 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

Categorías

Más información sobre Variables en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by