Write and retrieve text box values to/from excel file
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
ahmed obaid
am 14 Mär. 2016
Kommentiert: Geoff Hayes
am 3 Nov. 2020
Dear users ,
i would like to store the values of two text box in GUI the first text box1 values are number ( i.e. 1 , 2 , 3 , 4 , ..etc) and the second text box2 values are string like ( i.e. wilyam staling , john park , ..etc ) the value of number 1 of text box 1 correspond to text values name of wilyam staling and so on ..
my question .. i need when i inter number 1 in first text box for example and press (botton) then name wilyam staling will appear in second text box .. thanks for help
2 Kommentare
Geoff Hayes
am 14 Mär. 2016
ahdmed - how are you managing the list of names? Do you have a cell array that you populate when the GUI launches?
Akzeptierte Antwort
Geoff Hayes
am 14 Mär. 2016
Ahmed - can you post some of your code? It seems as if you are using your GUI to write and read from an Excel spreadsheet. If that is the case and you know how to write to the file, then is it the reading from file that is causing a problem? Suppose the user has entered a number into the edit1 text control and pressed a button whose callback is
function pushbutton1_Callback(hObject, eventdata, handles)
% read from the Excel file
[~,~,rawData] = xlsread(handles.excelFileName);
% get the value from edit1
id = str2num(char(get(handles.edit1,'String')));
% get the index of id in the first column of rawData
rowIndex = find(rawData(:,1) == id);
if ~isempty(rowIndex)
% get the name
userName = rawData(rowIndex,2);
% set the name
set(handles.edit2,'String',userName);
end
The above is untested, but I think that you can use it for your purposes. I've made some assumptions concerning the names of your controls, the name of the Excel file (presumably stored as a string within the handles structure), and the fact that the data is stored as two columns.
0 Kommentare
Weitere Antworten (1)
Md Iqbal
am 30 Okt. 2020
Errer using ==>fecal Error<a Error in ==>guidefunc at 15
1 Kommentar
Geoff Hayes
am 3 Nov. 2020
Please remove this as an "answer" and post as either a comment (to the above) or as a new question.
Siehe auch
Kategorien
Mehr zu Environment and Settings finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!