Effacer les filtres
Effacer les filtres

Error while evaluating uicontrol Callback

2 vues (au cours des 30 derniers jours)
sermet
sermet le 21 Mai 2015
Commenté : Walter Roberson le 20 Sep 2015
I created pushbutton in GUI;
% --- Executes on button press in pushbutton1.
function pushbutton1_Callback(hObject, eventdata, handles)
% hObject handle to pushbutton1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
[FileName1,PathName] = uigetfile('*.xlsx','Select the excel file');
[num,txt1,raw] = xlsread(FileName1);
%when user click pushbutton then click close the "select the excel file" window following errors occur;
Error using xlsread
Filename must be a string.
Error in helmert_fig>pushbutton1_Callback (line 84)
[num,txt1,raw] = xlsread(FileName1);
Error in gui_mainfcn (line 96)
feval(varargin{:});
Error in helmert_fig (line 42)
gui_mainfcn(gui_State, varargin{:});
Error in @(hObject,eventdata)helmert_fig('pushbutton1_Callback',hObject,eventdata,guidata(hObject))
Error while evaluating uicontrol Callback
%how I can modify the xlsread function to supress these errors when user close the window without select any file to read?

Réponse acceptée

Adam
Adam le 21 Mai 2015
Modifié(e) : Adam le 21 Mai 2015
if FileName1 ~= 0
[num,txt1,raw] = xlsread(FileName1);
end
Obviously you will have to also include any further code that uses those created variables inside the if statement also.
  1 commentaire
Walter Roberson
Walter Roberson le 20 Sep 2015
selahattin sert comments
Thank you for this answer.It is work with.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Migrate GUIDE Apps dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by