WICHTIG: Der Betrieb von goMatlab.de wird privat finanziert fortgesetzt. - Mehr Infos...

Mein MATLAB Forum - goMatlab.de

Mein MATLAB Forum

 
Gast > Registrieren       Autologin?   

Partner:




Forum
      Option
[Erweitert]
  • Diese Seite per Mail weiterempfehlen
     


Gehe zu:  
Neues Thema eröffnen Neue Antwort erstellen

CreateFcn-Funktionen werden nicht abgerufen

 

kesijing
Forum-Newbie

Forum-Newbie


Beiträge: 2
Anmeldedatum: 21.06.16
Wohnort: ---
Version: ---
     Beitrag Verfasst am: 21.06.2016, 15:21     Titel: CreateFcn-Funktionen werden nicht abgerufen
  Antworten mit Zitat      
Hallo,

ich bin neu hier und habe heute meine erste GUI programmiert, von daher mag meine Frage vielleicht trivial sein.

Ausgehend von bereits bestehenden (und funktionierenden) Dateien myGUI1.fig und myGUI1.m habe ich zunächst mittels guide eine neue myGUI2.fig erstellt, in die ich die Objekte aus der myGUI1.fig (drei pushbutton, ein slide bar und ein uipanel) herüberkopiert habe. Den Quellcode für die myGUI2.m habe ich ebenfalls übernommen.

Beim Ausführen hat sich nun das Problem ergeben, dass offenbar sämtliche vorhandene CreateFcn-Funktionen nicht ausgeführt wurden. Die GUI wird zwar aufgerufen und wenn ich z.B. auf pushbutton1 klicke, wird die Funktion pushbutton1_Callback ausgeführt, hier ergibt sich aber sofort ein Fehler, weil (unter Anderem) pushbutton1_CreateFcn anscheinend nicht abgerufen wurde und dort wichtige Parameter festgelegt wurden.

Was mich an dieser Stelle noch mehr verwundert hat: Von ca. 30 Versuchen, die GUI zu starten (im Wechsel mit der Ausführung von bereits vorhandenen GUIs), ist dieses Problem in 1-2 Fällen nicht aufgetreten.

Ich frage mich ob ich bei der Erstellung einer GUI irgendetwas beachten muss, damit die CreateFcn-Funktionen abgerufen werden können, oder ob ich vielleicht anderweitig etwas falsch mache.

Vielen Dank schonmal!

Code:

function varargout = myGUI2(varargin)
% myGUI2 MATLAB code for myGUI2.fig
%      myGUI2, by itself, creates a new myGUI2 or raises the existing singleton*.
%
%      H = myGUI2 returns the handle to a new myGUI2 or the handle to the existing singleton*.
%
%      myGUI2('CALLBACK',hObject,eventData,handles,...) calls the local
%      function named CALLBACK in myGUI2.M with the given input arguments.
%
%      myGUI2('Property','Value',...) creates a new myGUI2 or raises the
%      existing singleton*.  Starting from the left, property value pairs are
%      applied to the GUI before myGUI2_OpeningFcn gets called.  An
%      unrecognized property name or invalid value makes property application
%      stop.  All inputs are passed to myGUI2_OpeningFcn via varargin.
%
%      *See GUI Options on GUIDE's Tools menu.  Choose "GUI allows only one
%      instance to run (singleton)".
%
% See also: GUIDE, GUIDATA, GUIHANDLES

% Edit the above text to modify the response to help myGUI2

% Last Modified by GUIDE v2.5 21-Jun-2016 12:37:48

% Begin initialization code - DO NOT EDIT


gui_Singleton = 1;
gui_State = struct('gui_Name',       mfilename, ...
                   'gui_Singleton',  gui_Singleton, ...
                   'gui_OpeningFcn', @myGUI2_OpeningFcn, ...
                   'gui_OutputFcn',  @myGUI2_OutputFcn, ...
                   'gui_LayoutFcn',  [] , ...
                   'gui_Callback',   []);
if nargin && ischar(varargin{1})
    gui_State.gui_Callback = str2func(varargin{1});
end

if nargout
    [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
else
    gui_mainfcn(gui_State, varargin{:});
end
% End initialization code - DO NOT EDIT


% --- Executes just before myGUI2 is made visible.
function myGUI2_OpeningFcn(hObject, eventdata, handles, varargin)
% This function has no output args, see OutputFcn.
% hObject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
% varargin   command line arguments to myGUI2 (see VARARGIN)

% Choose default command line output for myGUI2
handles.output = hObject;

% Update handles structure
guidata(hObject, handles);

% UIWAIT makes myGUI2 wait for user response (see UIRESUME)
% uiwait(handles.figure1);


% --- Outputs from this function are returned to the command line.
function varargout = myGUI2_OutputFcn(hObject, eventdata, handles)
% varargout  cell array for returning output args (see VARARGOUT);
% hObject    handle to figure
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)
% Get default command line output from handles structure
varargout{1} = handles.output;


% --- 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)


% --- Executes on button press in pushbutton2.
function pushbutton2_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton2 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes on button press in pushbutton3.
function pushbutton3_Callback(hObject, eventdata, handles)
% hObject    handle to pushbutton3 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


% --- Executes during object creation, after setting all properties.
function pushbutton1_CreateFcn(hObject, eventdata, handles)
% hObject    handle to pushbutton1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called


% --- Executes during object deletion, before destroying properties.
function pushbutton1_DeleteFcn(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)


% --- Executes during object creation, after setting all properties.
function pushbutton2_CreateFcn(hObject, eventdata, handles)
% hObject    handle to pushbutton2 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called


% --- Executes during object creation, after setting all properties.
function pushbutton3_CreateFcn(hObject, eventdata, handles)
% hObject    handle to pushbutton3 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called


% --- Executes on slider movement.
function slider1_Callback(hObject, eventdata, handles)
% hObject    handle to slider1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

% Hints: get(hObject,'Value') returns position of slider
%        get(hObject,'Min') and get(hObject,'Max') to determine range of slider


% --- Executes during object creation, after setting all properties.
function slider1_CreateFcn(hObject, eventdata, handles)
% hObject    handle to slider1 (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    empty - handles not created until after all CreateFcns called

% Hint: slider controls usually have a light gray background.
if isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
    set(hObject,'BackgroundColor',[.9 .9 .9]);
end


% --- Executes when selected object is changed in uipanel1.
function uipanel1_SelectionChangeFcn(hObject, eventdata, handles)
% hObject    handle to the selected object in uipanel2
% eventdata  structure with the following fields (see UIBUTTONGROUP)
%   EventName: string 'SelectionChanged' (read only)
%   OldValue: handle of the previously selected object or empty if none was selected
%   NewValue: handle of the currently selected object
% handles    structure with handles and user data (see GUIDATA)


 
Private Nachricht senden Benutzer-Profile anzeigen


Jan S
Moderator

Moderator


Beiträge: 11.057
Anmeldedatum: 08.07.10
Wohnort: Heidelberg
Version: 2009a, 2016b
     Beitrag Verfasst am: 21.06.2016, 16:40     Titel: Re: CreateFcn-Funktionen werden nicht abgerufen
  Antworten mit Zitat      
Hallo kesijing,

Zitat:
Ausgehend von bereits bestehenden (und funktionierenden) Dateien myGUI1.fig und myGUI1.m habe ich zunächst mittels guide eine neue myGUI2.fig erstellt, in die ich die Objekte aus der myGUI1.fig (drei pushbutton, ein slide bar und ein uipanel) herüberkopiert habe. Den Quellcode für die myGUI2.m habe ich ebenfalls übernommen.

Das Rüberkopieren könnte bedeuten, dass die CreateFcnund Callbacks mit kopiert werden. Dann liegen sie aber im flaschen M-File. Erstelle die Objekte lieber neu.

Zitat:
Beim Ausführen hat sich nun das Problem ergeben, dass offenbar sämtliche vorhandene CreateFcn-Funktionen nicht ausgeführt wurden.

Die geposteten CreateFcn's sind alle leer. Es sieht nicht so aus, als würden dort "wichtige Parameter festgelegt", oder?!

Gruß, Jan
Private Nachricht senden Benutzer-Profile anzeigen
 
kesijing
Themenstarter

Forum-Newbie

Forum-Newbie


Beiträge: 2
Anmeldedatum: 21.06.16
Wohnort: ---
Version: ---
     Beitrag Verfasst am: 22.06.2016, 04:23     Titel:
  Antworten mit Zitat      
Hallo Jan,

vielen Dank. Das Problem war tatsächlich, dass die Referenzen der CreateFcn-Funktionen in den Einstellungen nicht stimmten.

Viele Grüße!
Private Nachricht senden Benutzer-Profile anzeigen
 
Neues Thema eröffnen Neue Antwort erstellen



Einstellungen und Berechtigungen
Beiträge der letzten Zeit anzeigen:

Du kannst Beiträge in dieses Forum schreiben.
Du kannst auf Beiträge in diesem Forum antworten.
Du kannst deine Beiträge in diesem Forum nicht bearbeiten.
Du kannst deine Beiträge in diesem Forum nicht löschen.
Du kannst an Umfragen in diesem Forum nicht mitmachen.
Du kannst Dateien in diesem Forum posten
Du kannst Dateien in diesem Forum herunterladen
.





 Impressum  | Nutzungsbedingungen  | Datenschutz | FAQ | goMatlab RSS Button RSS

Hosted by:


Copyright © 2007 - 2024 goMatlab.de | Dies ist keine offizielle Website der Firma The Mathworks

MATLAB, Simulink, Stateflow, Handle Graphics, Real-Time Workshop, SimBiology, SimHydraulics, SimEvents, and xPC TargetBox are registered trademarks and The MathWorks, the L-shaped membrane logo, and Embedded MATLAB are trademarks of The MathWorks, Inc.