automatically change the string of a uicontrol (a popupmenu)

1 vue (au cours des 30 derniers jours)
Sébastien Malengé
Sébastien Malengé le 29 Avr 2011
This is my question :
I have a variable (call Scenario) where I have a struct, and more specific a struct of name (come from an folder, anyway).
My question is : Can I automatically put this struct of name in the string of my popupmenu when I create the uicontrol ?
Thanks.

Réponse acceptée

Walter Roberson
Walter Roberson le 29 Avr 2011
set(HandleOfControl, 'String', {StructureName.FieldName})
For example,
fileinfo = dir('*.jpg');
set(H, 'String', {fileinfo.name});

Plus de réponses (0)

Catégories

En savoir plus sur App Building dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by