How to input two static text box independently?
이전 댓글 표시
How to input two static text box independently?
댓글 수: 5
Geoff Hayes
2020년 2월 26일
Lee - please provide some context. Are your static text boxes part of a GUI? Are they labels?
Lee Marc Caya
2020년 2월 27일
Geoff Hayes
2020년 2월 27일
Lee - how do you indicate that you are done inputting to the input1 static text? What code do you have to write to that field? I'm guessing that you push one of the buttons (in the GUI) and you expect to see the text from that button appear in input1 (or input2) via the button callback. Do you have code that does that? If so, what does it look like?
Lee Marc Caya
2020년 2월 27일
Geoff Hayes
2020년 2월 27일
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?
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
