How to input two static text box independently?

2 views (last 30 days)
How to input two static text box independently?
  5 Comments
Lee Marc Caya
Lee Marc Caya on 27 Feb 2020
lud = get(handles.input1,'value');
if lud==1
set(handles.input4,'String');
else
set(handles.input1,'String');
end
i try this logically and it didn't work. (i try to use toggle button for this)
Geoff Hayes
Geoff Hayes on 27 Feb 2020
why
lud = get(handles.input1,'value');
? What are you expecting lud to be here? input1 is a static text control so how will the value (which isn't the string) relevant?
Also,
set(handles.input4,'String');
you aren't passing a string (array of characters) so nothing will happen here. What are you intending with this (and the other) line of code?
Is there a toggle button? Or is there something else that should indicate which line to use? What does input1 represent? What does input2 represent?

Sign in to comment.

Answers (0)

Categories

Find more on Characters and Strings in Help Center and File Exchange

Products


Release

R2018a

Community Treasure Hunt

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

Start Hunting!