Call to Main GUi

3 views (last 30 days)
Elysi Cochin
Elysi Cochin on 4 Mar 2013
i have 3 gui in my project named "MainGUI" and "Sub1GUi" and "Sub2GUi".... in SubGUi i have a button.... on click of that button i want one output to get displayed in the MainGUI axes2... how to call MainGUI and display image in MainGUI's axes2... is this possible... please do reply....

Accepted Answer

Jan
Jan on 4 Mar 2013
This is an evergreen question. Please search for "sharing GUI" in this forum to find a bunch of solutions.
The object you have to share is the handle of the AXES object you want to plot in. So get the MainGUI's handle from the SubGUI, use it to obtain the handles struct by GUIDATA, and plot from the code of the SubGUI using the AXES' handle as 'Parent' property.
  4 Comments
Elysi Cochin
Elysi Cochin on 5 Mar 2013
sir i tried many ways....but not getting it.... please do reply....
Jan
Jan on 5 Mar 2013
What could I reply? "Nothing is displayed" does not contain enough information to suggest an improvement. I do not expect than "guihandles(MainFile)" does, what you want, but as long as I do not know the contents of MainFile, this is a pure guessing. In addition you obtain h, but use handles afterwards. You need the handle of the MainGUI. I do not know, if you provide it, when the subGUI is created or if you can identify the mainGUI by its tag. But if you have the handle:
mainHandles = guidata(MainGUIH);
axes(mainHandles.axes1);
imshow(I);

Sign in to comment.

More Answers (0)

Categories

Find more on Just for fun in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!