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

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)

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

What mistake I found is I am calling script from GUI function and that script is calling one other function (not in file of GUI), How to overcome this situation?? Should I write all functions in single file??
Thanks
It is not a mistake to call functions not included in the GUI-M-file. E.g. the most toolbox function of Matlab are M-functions also. Please explain much more details.
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?????
Well...found mistake.........I used cloase all statement someware in function with 100 lines plus.....it was. Thanks

Sign in to comment.

Categories

Products

Asked:

A
A
on 7 Feb 2011

Community Treasure Hunt

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

Start Hunting!