How to use eval and disable the edit box or drop down?

1 次查看(过去 30 天)
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

采纳的回答

Stephen23
Stephen23 2019-5-21
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)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Whos 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by