Verfasst am: 07.04.2016, 13:44
Titel: Rückgabe von "String/Wert"
Guten Tag,
Ich bin der absolute Neuling also bitte entschuldigt meine kommenden Fragen.
Ich habe schon versucht meine Frage hier zu finden, wurde jedoch nicht fündig.
Nun ist sie hier also:
Ich möchte das der Nutzer einen Dateipfad(String) über ein GUI angibt "blabla\blabla...\..."und dieser Dateipfad dann wieder als Variable, zb. "n" in meinem Workspace auftaucht.
Wie ist das möglich? Bestimmt gaaanz einfach
Hier noch mein Code, das statische Textfeld war nur zum überprüfen für mich.
Code:
functionvarargout = Pfadwaehlen(varargin)
%PFADWAEHLEN M-file for Pfadwaehlen.fig % PFADWAEHLEN, by itself, creates a new PFADWAEHLEN or raises the existing % singleton*.
%
% H = PFADWAEHLEN returns the handle to a new PFADWAEHLEN or the handle to % the existing singleton*.
%
% PFADWAEHLEN('Property','Value',...) creates a new PFADWAEHLEN using the % given property value pairs. Unrecognized properties are passed via % varargin to Pfadwaehlen_OpeningFcn. This calling syntax produces a % warning when there is an existing singleton*.
%
% PFADWAEHLEN('CALLBACK') and PFADWAEHLEN('CALLBACK',hObject,...) call the % local function named CALLBACK in PFADWAEHLEN.M with the given input % arguments.
%
% *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 Pfadwaehlen
% Last Modified by GUIDE v2.5 07-Apr-2016 13:59:10
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @Pfadwaehlen_OpeningFcn, ...
'gui_OutputFcn', @Pfadwaehlen_OutputFcn, ...
'gui_LayoutFcn', [], ...
'gui_Callback', []);
ifnargin && ischar(varargin{1})
gui_State.gui_Callback = str2func(varargin{1});
end
% --- Executes just before Pfadwaehlen is made visible. function Pfadwaehlen_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 unrecognized PropertyName/PropertyValue pairs from the % command line (see VARARGIN)
% Choose default command line output for Pfadwaehlen
handles.output = hObject;
% UIWAIT makes Pfadwaehlen wait for user response (see UIRESUME) % uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line. functionvarargout = Pfadwaehlen_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;
function pfad_Callback(hObject, eventdata, handles) % hObject handle to pfad (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,'String') returns contents of pfad as text % str2double(get(hObject,'String')) returns contents of pfad as a double
handles = 25;
% --- Executes during object creation, after setting all properties. function pfad_CreateFcn(hObject, eventdata, handles) % hObject handle to pfad (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles empty - handles not created until after all CreateFcns called
% Hint: edit controls usually have a white background on Windows. % See ISPC and COMPUTER. ifispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor')) set(hObject,'BackgroundColor','white');
end
% --- Executes on button press in senden. function[n] = senden_Callback(hObject, eventdata, handles) % hObject handle to senden (see GCBO) % eventdata reserved - to be defined in a future version of MATLAB % handles structure with handles and user data (see GUIDATA)
n = get(handles.pfad, 'string');
set(handles.ausgabe, 'string', n);
natürlich, so etwas habe ich ja schon 100 Jahre gesucht... Vielen Dank
Gibt es auch eine Funktion, mit der ich direkt diese Datei auswählen kann und nicht nur den Ordner in der diese liegt?
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
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.