필터 지우기
필터 지우기

multiple instances of gui open at once

조회 수: 6 (최근 30일)
MCM
MCM 2015년 10월 26일
댓글: Jan 2015년 10월 26일
Hello,
I created a GUI that asks the user for several parameters before running a model. I give the user the option to save a specific run to use later. I use the hgsave(filename) function. But when the user opens the saved run, 3 instances of the GUI appear.
I can just close 2 of them and the 1 works fine, but I'd really like to stop 3 from appearing before giving the model to my users. Anyone have any ideas? I don't even know where to start debugging this problem. I never had this problem in R2014a but since graphics handles were changed to objects (R2014b or higher), I have duplicates
Thanks
  댓글 수: 5
MCM
MCM 2015년 10월 26일
"save a specific run" just means save the current GUI. Aka save all the parameters that the user has entered. Which literally means just save the GUI as it is right now.
The only command that opens the figure is the Opening Fcn function which is standard.
Basically my question is: why when I open something saved using hgsave does it open 3 instances? I never had this problem in R2014a but since graphics handles were changed to objects, I have duplicates
Jan
Jan 2015년 10월 26일
Why do you save the complete GUI? It sound like you want to save the value of the UICONTROLs only. You observe the side-effects and they disturb you. So avoid the side effects by choosing a method, which does not have it: Save the user-defined values of the uicontrols only.

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

답변 (2개)

Jan
Jan 2015년 10월 26일
Bold guessing: The problem is inside the code, which is processed for "user opens the saved run". So set a breakpoint there and stept throught your code line by line. You will see, which lines open the unwanted figures.
  댓글 수: 1
MCM
MCM 2015년 10월 26일
My first instinct was to set breakpoints to locate an error inside the code too. So I set a break point in the very first line of the code. The duplicates were created before the break point was initiated. So I set a break point in EVERY subfunction of my code, same thing.

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


MCM
MCM 2015년 10월 26일
When I use the Import Data button or double clicked on file (equivalent to load(filename)) the duplicates appear seemingly before my GUI code initiated (see comment about break points).
But when I use hgload(filename) everything opens properly aka only one instance. I have absolutely no idea why. But it works :)

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by