How to delete hidden pop up menu in GUIDE GUI???
Afficher commentaires plus anciens
I keep getting an error when I run my GUI that references a pop up menu that I cannot find on my GUI!!!
It keeps saying...
Error using feval Undefined function 'popupmenu44_CreateFcn' for input arguments of type 'double'.
When I go into my object browser on GUIDE it says that pop up menu 44 is there but it doesn't show up anywhere. I just want to be able to delete the object because there is no reference to it in my code...
Thanks,
-Ian
2 commentaires
jumma almaghtuf
le 1 Fév 2021
To delete it, just go to tools and navigate to Menu Editer, then delete it.
Adam Danz
le 1 Fév 2021
- What's feval? It's a Matlab function but it looks like you've name another funtion or file feval.
- Open that file (probably within a GUIDE gui) and search for the function named popupmenu44_CreateFcn; That's where your error is. I doubt it's creating the popup menu which is why you can't see it.
Réponses (2)
Jan
le 31 Juil 2012
0 votes
Perhaps its 'Visible' property is set to 'off' or it has been moved outside the visible area? Then check the 'position'.
Image Analyst
le 1 Fév 2021
I've seen this before (some sort of error on launching that mentioned a CreateFcn), just recently. Apparently I'd somehow deleted the CreateFcn accidentally. When I created a new one, the error went away. Add this to your m-file
%================================================================================================================================================================ ========================
% --- Executes during object creation, after setting all properties.
% EVEN THOUGH THIS FUNCTION IS EMPTY, DON'T DELETE IT OR ERRORS WILL OCCUR
function popupmenu44_CreateFcn(hObject, eventdata, handles)
% hObject handle to popupmenu44 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
Catégories
En savoir plus sur Modeling dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!