Why does my Guide GUI exit unexpectedly after pushing a button?

2 views (last 30 days)
I am running my GUI from tools->run. After executing one push button, it exits. The rest of the push buttons on the GUI don't exit.
There is no exit command in first push button. It is displaying one figure and some info on the command line.

Answers (1)

Jan
Jan on 7 Feb 2011
Use the debugger to step line by line through the callback function of the push button. Then you will find the line, which causes the exit (I assume you mean a "delete" of the figure?). If you found the specific line and do not understand the behaviour, please post the concerning lines.
Using the debugger is always more direct and efficient than hoping that another user can guess what's going on without seeing the code.
  4 Comments
A
A on 7 Feb 2011
Thanks...
I am calling one script from push button. The script is calling one function. There is no exit or quit has been used. But after executing this push button, program exit. If I comment script.....it works fine?????
A
A on 7 Feb 2011
Well...found mistake.........I used cloase all statement someware in function with 100 lines plus.....it was. Thanks

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!