How to use eval and disable the edit box or drop down?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
raghavendra kandukuri
am 21 Mai 2019
Kommentiert: raghavendra kandukuri
am 21 Mai 2019
HI,
can we use eval, and disable the dropdown or edit box? for example:
the below code can visit 16 fields(editboxes) and set the value coming frim G_PB, similarly i would like to do for disableing
Thanks in Advance
for i=1:16
eval(['set(handles.PwrBlg' num2str(i) ',''String'',G_PB)']);
end
0 Kommentare
Akzeptierte Antwort
Stephen23
am 21 Mai 2019
Do NOT use eval for trivial code like this!
Much better is to read the documentation on dynamic fieldnames:
For your code, something like this:
fld = sprintf('PwrBlg%d',i);
set(handles.(fld),'String',G_PB)
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Environment and Settings finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!