Get value of a variable

4 visualizaciones (últimos 30 días)
Cristian Martin
Cristian Martin el 17 de Mayo de 2022
Comentada: Cristian Martin el 18 de Mayo de 2022
-file display.m-
TYPE1 = {'AUDI','MARIA OWN THIS GREAT CAR'};
selectedCar = handles.popupmenu1.Value;
switch selectedCar
case 2
owners = TYPE1;
end;
-file modify.m-
here i have a pop up and an edit text
How cand I call variable TYPE1 from file display.m, display it on edit text and after that re writing it back to same variable on display.m
Thank you!
  3 comentarios
Cristian Martin
Cristian Martin el 17 de Mayo de 2022
@Geoff Hayes those two.m files are script files made by automatically by GUI. I want to call the text generated in an edit text box by a function in a pop-up menu from first file in another edit text box file and modify and save in a first file. I hope I mede my self clear. If not please let me know. Thanks
Geoff Hayes
Geoff Hayes el 17 de Mayo de 2022
@Cristian Martin - can you show some of the code or post the two files? I'm just curious as to what data is being written to these files. It may be simpler to just keep the data (that is written to the file) as a variable/property of the handles struct so that you don't have to open the file to read the contents just to write to the edit text control. Unless you are allowing the user to write data to the file via the GUI

Iniciar sesión para comentar.

Respuesta aceptada

Mitch Lautigar
Mitch Lautigar el 17 de Mayo de 2022
When you call an edit text box, the user inputs some text which will then save. If it is a popup window you are using, you should be able to get the outputs from the user. If this is a popup window in the GUI itself, the value you are looking for will look like "handles.popup1.String"
  6 comentarios
Cristian Martin
Cristian Martin el 18 de Mayo de 2022
Thank you Mitch Lautigar
Cristian Martin
Cristian Martin el 18 de Mayo de 2022
Error using subsindex
Function 'subsindex' is not defined for values of class 'cell'.
Error in test>pushbutton6_Callback (line 784)
TIP1 = [handles.edit1.String(TIP1);intraretext];
Error in gui_mainfcn (line 95)
feval(varargin{:});
Error in test (line 42)
gui_mainfcn(gui_State, varargin{:});
Error in @(hObject,eventdata)test('pushbutton6_Callback',hObject,eventdata,guidata(hObject))
Error while evaluating UIControl Callback
?

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Migrate GUIDE Apps en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2015a

Community Treasure Hunt

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

Start Hunting!

Translated by