Why do I get an error message when I questdlg function

조회 수: 9 (최근 30일)
Sara
Sara 2021년 6월 15일
댓글: Sara 2021년 6월 15일
Hi,
I got an error message in my code that occurs this morning.
I use questdlg in my code which was fine yesterday, but this morning I got an error message, as shown in the image below.
Does anyone know how to overcome this issue? Because yesterday was working fine but this morning is not working !!!
Thank you
  댓글 수: 4
KSSV
KSSV 2021년 6월 15일
Copy and paste code here.....attaching as image will not help us.
Sara
Sara 2021년 6월 15일
Okey
The erro in my code in this part
answer1 = questdlg('Strained Method?', ...
'Options',...
'Expanded strain at the facet','Compressed strain at the facet','');
This was fine yesterday, but today is changing, I do not know, is it MATLAB change the function or something
questdlg function debug is there
if ~DefaultValid
warnstate = warning('backtrace','off');
warning(message('MATLAB:questdlg:StringMismatch'));
warning(warnstate);
end

댓글을 달려면 로그인하십시오.

채택된 답변

Chunru
Chunru 2021년 6월 15일
Add the default button (last argument) to be one of the specified buttons:
answer1 = questdlg('Strained Method?', ...
'Options',...
'Expanded strain at the facet','Compressed strain at the facet','Expanded strain at the facet');
  댓글 수: 1
Sara
Sara 2021년 6월 15일
Thank you for yoyr answer.
The issue was resolved
:)

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Dialog Boxes에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by