Filter löschen
Filter löschen

How to make a button visible in GUIDE?

3 Ansichten (letzte 30 Tage)
TheBeginner
TheBeginner am 10 Jan. 2013
Hi,
I am using Matlab 2012a and I've been trying to make an edit box visible/invisible in GUIDE.
I've tried the following sentence but it doesn't work : set(hObjet,'Visibility','off')
Thank you!
  1 Kommentar
Jan
Jan am 10 Jan. 2013
Bearbeitet: Jan am 10 Jan. 2013
Please explain, what "it doesn't work" explicitly means: do you get an error message, does nothing get invisible, or the worng object? Perhaps you only forgot a "c" in the fieldname?
The error message should enlight you.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Azzi Abdelmalek
Azzi Abdelmalek am 10 Jan. 2013
Set(hObject, 'visible','off')

Weitere Antworten (1)

Sean de Wolski
Sean de Wolski am 10 Jan. 2013
set(hObject, 'visible','off');
Will only work if you are int he callback from that pushbutton. Otherwise hObject will be a handle to the caller object. It is safer and a better practice to use:
set(handles.pushbuttonx,'visible','off');
Where 'pushbuttonx' is the 'Tag' of the oushbutton you wish to make invisble.
  1 Kommentar
TheBeginner
TheBeginner am 10 Jan. 2013
Ok, thank you, I didn't really understand what was in hObject. Thank you!

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by