Slider to Edit in call back does not work
Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
Ältere Kommentare anzeigen
I do have a slider in my GUI . The value in the edit textbox doesn't work when the slider is moved but the slider updates its position according to the textbox value.. can anyone suggest a solution for this?
// Edit box to slider works in edit call back
textValue = str2double( get(hObject,'String') );
set(handles.Iapp,'Value',textValue);
//slider to editbox in slider call back -does not work
iext = num2str(get(hObject,'Value'));
set(handles.edit1,'String',iext);
Antworten (0)
Diese Frage ist geschlossen.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!