Azzera filtri
Azzera filtri

How to delete hidden pop up menu in GUIDE GUI???

1 visualizzazione (ultimi 30 giorni)
Ian Flaherty
Ian Flaherty il 31 Lug 2012
Risposto: Image Analyst il 1 Feb 2021
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 Commenti
jumma almaghtuf
jumma almaghtuf il 1 Feb 2021
To delete it, just go to tools and navigate to Menu Editer, then delete it.
Adam Danz
Adam Danz il 1 Feb 2021
  1. What's feval? It's a Matlab function but it looks like you've name another funtion or file feval.
  2. 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.

Accedi per commentare.

Risposte (2)

Jan
Jan il 31 Lug 2012
Perhaps its 'Visible' property is set to 'off' or it has been moved outside the visible area? Then check the 'position'.

Image Analyst
Image Analyst il 1 Feb 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

Categorie

Scopri di più su Migrate GUIDE Apps in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by