Still have .m file, but lost all UI elements in GUIDE

1 view (last 30 days)
Hey all,
I was designing a GUI, with a large number of UI elements. It was completed, but was too large, so I attempted to change the size. However, matlab gave me a warning that I couldn't do it, because the window style was docked.
I closed, having last saved after modifying my last UI element (but not resizing) and when I ran the attached .m script with all the callbacks, a blank GUI popped up. I reopened the .fig in GUIDE, but it was totally blank too, even though all the elements still exist in the .m file.
In addition, when I try to replace the elements and use the same callback, it says another GUI component is also using that callback. So are they there, just invisible? I certainly can't find them.
WTF? Is this a known bug? Is there a way to recover?
Thanks so much for any help

Answers (2)

Sean de Wolski
Sean de Wolski on 8 Dec 2011
To test your invisibility theory:
h = findall(gcf,'visible','off')
while the GUI is the current figure. Hopefully, for your sake, h will not be empty.
  5 Comments
Sean de Wolski
Sean de Wolski on 9 Dec 2011
At this point, I would recommend contacting us at tech support.
Walter Roberson
Walter Roberson on 9 Dec 2011
Look to see if backup files were created along the way.

Sign in to comment.


Ingrid
Ingrid on 13 Sep 2013
Nobody that knows what was going on here? I am encountering the same problem, all my uicontrols disappear when I make adjustments to the *.fig file in guide. Luckily I have made a back-up so I still have it, but it is very annoying that I cannot make any adjustments to the fig-file...
  1 Comment
Ingrid
Ingrid on 13 Sep 2013
to clarify and narrow down possible causes: I have determined that the problem occurs when I define createFcns for my uipanels (to link them to an uitabgroup that can also be reloaded so putting it in the opening function did not work for me)
So I guess I cannot put a createFcn when using guide? it seems that it is trying to create the panel when saving the fig that is modified in guide?
Anyone that can shed some light on this on how to approach this?

Sign in to comment.

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!