Opening an GUI real time

조회 수: 4 (최근 30일)
Thulasi Durai Durai Samy
Thulasi Durai Durai Samy 2012년 4월 30일
Hi
I would like to open a GUI from another GUI. The name of existing GUI is 'first.fig'. The GUI needs to call 'a.fig' with some datas passing to second GUI.

채택된 답변

Geoff
Geoff 2012년 4월 30일
You should also have an m-file associated with these figures. I will assume that you created these GUIs using GUIDE.
To invoke the figure called 'a', just use that exact name:
a
To pass data to it, just pass it like you would any function:
a( {'some', 'cell', 'data'}, 42, rand(3,3) );
If you open the file a.m, you'll see a function called a_OpeningFcn. The fourth parameter is varargin, which will contain the 3 values I just passed in my example above. You can store these in your GUI just as you would normally.
GUIDE will pass any supplied data into this opening function when the GUI is initialised. So all you need to do is write the code to handle it as you please.
So edit the code for first.m, and put the call to your 'a'-GUI in the desired place, along with the data you intend to pass.
  댓글 수: 2
Thulasi Durai Durai Samy
Thulasi Durai Durai Samy 2012년 4월 30일
Hello Thanks for your reply.
MATLAB shows warrning "Warning: The input to STR2FUNC "10" is not a valid function name. This will generate an error in a future release".
I am passing a value '10' by the following command which is typed in the edit2 box.
a(get(handles.edit2,'String'));
Geoff
Geoff 2012년 4월 30일
Is that the line of code that the warning is generated on? Put a breakpoint there and work out whether there is a variable called 'a' preventing your function called 'a' from being seen. Perhaps it's your 'get' call (something wrong with the handle?). When your program execution breaks, you can experiment in the command window to see what causes the error. You can also look at the workspace window to see what variables are in scope.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by