how to manage radiobuttons?
Mostra commenti meno recenti
i have 2 radiobuttons, when i click on radio 1 and i then click on radio 2, radio 1 stays checked and thats not what i want, i want when one of the two radiobuttons are clicked the other should be unchecked immediately thanks
Risposta accettata
Più risposte (2)
Salaheddin Hosseinzadeh
il 30 Lug 2014
Hi Jihad,
You can disable the one radio button as you clicked the other one.
Hopefully, you remember my previous assumptions and example
so do it like this
function radio_button1_Callback(hObject,eventdata,handles)
if get(handles.radio_button1,'Value')
set(handles.radio_button2,'Value',0)
end
2 Commenti
Andrew Reibold
il 30 Lug 2014
I have used personally used the above method and it should work for you Jihad. Good luck.
Jihad Chamseddine
il 30 Lug 2014
Salaheddin Hosseinzadeh
il 30 Lug 2014
Hi Jihad!
Seems like we are just leading you to more problems!
There is a radio_bitton1_CreateFCN(hObject,eventdata,handles) function, which you can use to initialize your radio buttons. All you have to do is to go to this CreateFcn or CreateFCN function and type the as such
set(hObject,'Value',1); % if you want it to be seelcted initialy
set(hObject,'Value',0); % if you want it not be selected initially
regards.
1 Commento
Jihad Chamseddine
il 31 Lug 2014
Categorie
Scopri di più su Image Arithmetic in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!