App Designer "Too many outputs"

5 Ansichten (letzte 30 Tage)
Jonathan Moorman
Jonathan Moorman am 11 Jun. 2020
Beantwortet: Cris LaPierre am 11 Jun. 2020
I'm trying to use a check box to either have edit field editable or noneditable. I keep getting the errors "Too many output arguments." and "Error in Phase1App/ColdWorkedHoleCheckBoxValueChanged (line 63). value = app.ColdWorkedHoleCheckBoxValueChanged.Value; "
Heres my code:
function ColdWorkedHoleCheckBoxValueChanged(app, event)
value = app.ColdWorkedHoleCheckBoxValueChanged.value;
switch value
case 0
app.DiameterofHoleEditField.Editable = 'off';
case 1
app.DiameterofHoleEditField.Editable = 'on';
end

Akzeptierte Antwort

Cris LaPierre
Cris LaPierre am 11 Jun. 2020
The line of code you think is getting the value of the check box is actually calling the callback function. Try using the following code instead.
value = app.ColdWorkedHoleCheckBox.Value;

Weitere Antworten (0)

Kategorien

Mehr zu Develop Apps Using App Designer 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