GUI problem with uitable and figure

1 次查看(过去 30 天)
I have a GUI with a uitable with tag uitable1 and I placed some code accessing the figure handle in the uitable1_createFcn
when I run the GUI, it shows me the following error, undefined function or variable figure1 / uitable1

采纳的回答

Walter Roberson
Walter Roberson 2018-6-24
CreateFcn of anything stored with the GUIDE .fig file, execute before the handles structure has been created.
If you want to use CreateFcn to access the handles structure, then you cannot create the object until at least the OpenFcn.
The order that the various CreateFcn execute when loading a .fig is not specified, so do not count on anything else having been created.
What you should probably do is put the relevant code into the OpenFcn, which will not execute until after the CreateFcn have all been executed and the handles structure has been created.
  6 个评论
Walter Roberson
Walter Roberson 2018-6-24
At the end of your .m, replace the lines
f = figure1
s = {'Name of Student','Subject','Credits','Mid-I','Mid-II','Mid-III','Best','Assign','Total (Max Marks-40)','Credits scored'}
t = uitable1(f,'ColumnName',s)
with
s = {'Name of Student','Subject','Credits','Mid-I','Mid-II','Mid-III','Best','Assign','Total (Max Marks-40)','Credits scored'}
set(hObject, 'ColumnName', s);
VBBV
VBBV 2018-6-24
Thank you ... it works fine now

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Migrate GUIDE Apps 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by